mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-25 07:01:09 +00:00
Make all address comparisons explicit
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@789 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
5
acl.c
5
acl.c
@@ -116,3 +116,8 @@ int ast_get_ip(struct sockaddr_in *sin, char *value)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int inaddrcmp(struct sockaddr_in *sin1, struct sockaddr_in *sin2)
|
||||||
|
{
|
||||||
|
return ((sin1->sin_addr.s_addr == sin2->sin_addr.s_addr )
|
||||||
|
&& (sin1->sin_port == sin2->sin_port));
|
||||||
|
}
|
||||||
|
@@ -3110,7 +3110,7 @@ static int iax2_ack_registry(struct iax_ies *ies, struct sockaddr_in *sin, int c
|
|||||||
}
|
}
|
||||||
memcpy(&oldus, ®->us, sizeof(oldus));
|
memcpy(&oldus, ®->us, sizeof(oldus));
|
||||||
oldmsgs = reg->messages;
|
oldmsgs = reg->messages;
|
||||||
if (memcmp(®->addr, sin, sizeof(®->addr))) {
|
if (inaddrcmp(®->addr, sin)) {
|
||||||
ast_log(LOG_WARNING, "Received unsolicited registry ack from '%s'\n", inet_ntoa(sin->sin_addr));
|
ast_log(LOG_WARNING, "Received unsolicited registry ack from '%s'\n", inet_ntoa(sin->sin_addr));
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
@@ -3123,7 +3123,7 @@ static int iax2_ack_registry(struct iax_ies *ies, struct sockaddr_in *sin, int c
|
|||||||
ast_sched_del(sched, reg->expire);
|
ast_sched_del(sched, reg->expire);
|
||||||
reg->expire = ast_sched_add(sched, (5 * reg->refresh / 6) * 1000, iax2_do_register_s, reg);
|
reg->expire = ast_sched_add(sched, (5 * reg->refresh / 6) * 1000, iax2_do_register_s, reg);
|
||||||
}
|
}
|
||||||
if ((memcmp(&oldus, ®->us, sizeof(oldus)) || (reg->messages != oldmsgs)) && (option_verbose > 2)) {
|
if ((inaddrcmp(&oldus, ®->us) || (reg->messages != oldmsgs)) && (option_verbose > 2)) {
|
||||||
if (reg->messages > 65534)
|
if (reg->messages > 65534)
|
||||||
snprintf(msgstatus, sizeof(msgstatus), " with message(s) waiting\n");
|
snprintf(msgstatus, sizeof(msgstatus), " with message(s) waiting\n");
|
||||||
else if (reg->messages > 1)
|
else if (reg->messages > 1)
|
||||||
@@ -3222,7 +3222,7 @@ static int update_registry(char *name, struct sockaddr_in *sin, int callno)
|
|||||||
memset(&ied, 0, sizeof(ied));
|
memset(&ied, 0, sizeof(ied));
|
||||||
for (p = peerl.peers;p;p = p->next) {
|
for (p = peerl.peers;p;p = p->next) {
|
||||||
if (!strcasecmp(name, p->name)) {
|
if (!strcasecmp(name, p->name)) {
|
||||||
if (memcmp(&p->addr, sin, sizeof(p->addr))) {
|
if (inaddrcmp(&p->addr, sin)) {
|
||||||
if (regfunk)
|
if (regfunk)
|
||||||
regfunk(p->name, 1);
|
regfunk(p->name, 1);
|
||||||
if (option_verbose > 2)
|
if (option_verbose > 2)
|
||||||
@@ -3292,7 +3292,7 @@ static int registry_rerequest(struct iax_ies *ies, int callno, struct sockaddr_i
|
|||||||
strncpy(challenge, ies->challenge, sizeof(challenge) - 1);
|
strncpy(challenge, ies->challenge, sizeof(challenge) - 1);
|
||||||
memset(&ied, 0, sizeof(ied));
|
memset(&ied, 0, sizeof(ied));
|
||||||
reg = iaxs[callno]->reg;
|
reg = iaxs[callno]->reg;
|
||||||
if (memcmp(®->addr, sin, sizeof(®->addr))) {
|
if (inaddrcmp(®->addr, sin)) {
|
||||||
ast_log(LOG_WARNING, "Received unsolicited registry authenticate request from '%s'\n", inet_ntoa(sin->sin_addr));
|
ast_log(LOG_WARNING, "Received unsolicited registry authenticate request from '%s'\n", inet_ntoa(sin->sin_addr));
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
@@ -3423,7 +3423,7 @@ static int send_trunk(struct iax2_peer *peer)
|
|||||||
if (iaxtrunkdebug)
|
if (iaxtrunkdebug)
|
||||||
ast_verbose("Call %d is at %s:%d (%d)\n", x, inet_ntoa(iaxs[x]->addr.sin_addr), ntohs(iaxs[x]->addr.sin_port), iaxs[x]->addr.sin_family);
|
ast_verbose("Call %d is at %s:%d (%d)\n", x, inet_ntoa(iaxs[x]->addr.sin_addr), ntohs(iaxs[x]->addr.sin_port), iaxs[x]->addr.sin_family);
|
||||||
#endif
|
#endif
|
||||||
if (iaxs[x] && iaxs[x]->trunk && iaxs[x]->trunkdatalen && !memcmp(&iaxs[x]->addr, &peer->addr, sizeof(iaxs[x]->addr))) {
|
if (iaxs[x] && iaxs[x]->trunk && iaxs[x]->trunkdatalen && !inaddrcmp(&iaxs[x]->addr, &peer->addr)) {
|
||||||
if (iaxtrunkdebug)
|
if (iaxtrunkdebug)
|
||||||
ast_verbose(" -- Sending call %d via trunk to %s:%d\n", x, inet_ntoa(iaxs[x]->addr.sin_addr), ntohs(iaxs[x]->addr.sin_port));
|
ast_verbose(" -- Sending call %d via trunk to %s:%d\n", x, inet_ntoa(iaxs[x]->addr.sin_addr), ntohs(iaxs[x]->addr.sin_port));
|
||||||
if (len >= iaxs[x]->trunkdatalen + sizeof(struct ast_iax2_meta_trunk_entry)) {
|
if (len >= iaxs[x]->trunkdatalen + sizeof(struct ast_iax2_meta_trunk_entry)) {
|
||||||
@@ -3574,7 +3574,7 @@ static int socket_read(int *id, int fd, short events, void *cbdata)
|
|||||||
ast_pthread_mutex_lock(&peerl.lock);
|
ast_pthread_mutex_lock(&peerl.lock);
|
||||||
peer = peerl.peers;
|
peer = peerl.peers;
|
||||||
while(peer) {
|
while(peer) {
|
||||||
if (!memcmp(&peer->addr, &sin, sizeof(peer->addr)))
|
if (!inaddrcmp(&peer->addr, &sin))
|
||||||
break;
|
break;
|
||||||
peer = peer->next;
|
peer = peer->next;
|
||||||
}
|
}
|
||||||
@@ -3693,7 +3693,7 @@ static int socket_read(int *id, int fd, short events, void *cbdata)
|
|||||||
ast_pthread_mutex_unlock(&iaxsl[fr.callno]);
|
ast_pthread_mutex_unlock(&iaxsl[fr.callno]);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
if (!memcmp(&sin, &iaxs[fr.callno]->addr, sizeof(sin)))
|
if (!inaddrcmp(&sin, &iaxs[fr.callno]->addr))
|
||||||
iaxs[fr.callno]->peercallno = (unsigned short)(ntohs(mh->callno) & ~IAX_FLAG_FULL);
|
iaxs[fr.callno]->peercallno = (unsigned short)(ntohs(mh->callno) & ~IAX_FLAG_FULL);
|
||||||
if (ntohs(mh->callno) & IAX_FLAG_FULL) {
|
if (ntohs(mh->callno) & IAX_FLAG_FULL) {
|
||||||
if (option_debug)
|
if (option_debug)
|
||||||
@@ -3757,7 +3757,7 @@ static int socket_read(int *id, int fd, short events, void *cbdata)
|
|||||||
|
|
||||||
/* Handle implicit ACKing unless this is an INVAL, and only if this is
|
/* Handle implicit ACKing unless this is an INVAL, and only if this is
|
||||||
from the real peer, not the transfer peer */
|
from the real peer, not the transfer peer */
|
||||||
if (!memcmp(&sin, &iaxs[fr.callno]->addr, sizeof(sin)) &&
|
if (!inaddrcmp(&sin, &iaxs[fr.callno]->addr) &&
|
||||||
(((f.subclass != IAX_COMMAND_INVAL)) ||
|
(((f.subclass != IAX_COMMAND_INVAL)) ||
|
||||||
(f.frametype != AST_FRAME_IAX))) {
|
(f.frametype != AST_FRAME_IAX))) {
|
||||||
unsigned char x;
|
unsigned char x;
|
||||||
@@ -3800,7 +3800,7 @@ static int socket_read(int *id, int fd, short events, void *cbdata)
|
|||||||
} else
|
} else
|
||||||
ast_log(LOG_DEBUG, "Received iseqno %d not within window %d->%d\n", fr.iseqno, iaxs[fr.callno]->rseqno, iaxs[fr.callno]->oseqno);
|
ast_log(LOG_DEBUG, "Received iseqno %d not within window %d->%d\n", fr.iseqno, iaxs[fr.callno]->rseqno, iaxs[fr.callno]->oseqno);
|
||||||
}
|
}
|
||||||
if (memcmp(&sin, &iaxs[fr.callno]->addr, sizeof(sin)) &&
|
if (inaddrcmp(&sin, &iaxs[fr.callno]->addr) &&
|
||||||
((f.frametype != AST_FRAME_IAX) ||
|
((f.frametype != AST_FRAME_IAX) ||
|
||||||
((f.subclass != IAX_COMMAND_TXACC) &&
|
((f.subclass != IAX_COMMAND_TXACC) &&
|
||||||
(f.subclass != IAX_COMMAND_TXCNT)))) {
|
(f.subclass != IAX_COMMAND_TXCNT)))) {
|
||||||
|
@@ -2662,7 +2662,7 @@ static int parse_contact(struct sip_pvt *pvt, struct sip_peer *p, struct sip_req
|
|||||||
expiry = max_expiry;
|
expiry = max_expiry;
|
||||||
p->expire = ast_sched_add(sched, (expiry + 10) * 1000, expire_register, p);
|
p->expire = ast_sched_add(sched, (expiry + 10) * 1000, expire_register, p);
|
||||||
pvt->expiry = expiry;
|
pvt->expiry = expiry;
|
||||||
if (memcmp(&p->addr, &oldsin, sizeof(oldsin))) {
|
if (inaddrcmp(&p->addr, &oldsin)) {
|
||||||
sip_poke_peer(p);
|
sip_poke_peer(p);
|
||||||
if (option_verbose > 2)
|
if (option_verbose > 2)
|
||||||
ast_verbose(VERBOSE_PREFIX_3 "Registered SIP '%s' at %s port %d expires %d\n", p->username, inet_ntoa(p->addr.sin_addr), ntohs(p->addr.sin_port), expiry);
|
ast_verbose(VERBOSE_PREFIX_3 "Registered SIP '%s' at %s port %d expires %d\n", p->username, inet_ntoa(p->addr.sin_addr), ntohs(p->addr.sin_port), expiry);
|
||||||
@@ -3203,7 +3203,7 @@ static int check_user(struct sip_pvt *p, struct sip_request *req, char *cmd, cha
|
|||||||
ast_pthread_mutex_lock(&peerl.lock);
|
ast_pthread_mutex_lock(&peerl.lock);
|
||||||
peer = peerl.peers;
|
peer = peerl.peers;
|
||||||
while(peer) {
|
while(peer) {
|
||||||
if (!memcmp(&peer->addr, &p->recv, sizeof(peer->addr))) {
|
if (!inaddrcmp(&peer->addr, &p->recv)) {
|
||||||
/* Take the peer */
|
/* Take the peer */
|
||||||
p->nat = peer->nat;
|
p->nat = peer->nat;
|
||||||
if (p->rtp) {
|
if (p->rtp) {
|
||||||
|
@@ -28,6 +28,7 @@ extern void ast_free_ha(struct ast_ha *ha);
|
|||||||
extern struct ast_ha *ast_append_ha(char *sense, char *stuff, struct ast_ha *path);
|
extern struct ast_ha *ast_append_ha(char *sense, char *stuff, struct ast_ha *path);
|
||||||
extern int ast_apply_ha(struct ast_ha *ha, struct sockaddr_in *sin);
|
extern int ast_apply_ha(struct ast_ha *ha, struct sockaddr_in *sin);
|
||||||
extern int ast_get_ip(struct sockaddr_in *sin, char *value);
|
extern int ast_get_ip(struct sockaddr_in *sin, char *value);
|
||||||
|
extern int inaddrcmp(struct sockaddr_in *sin1, struct sockaddr_in *sin2);
|
||||||
|
|
||||||
#if defined(__cplusplus) || defined(c_plusplus)
|
#if defined(__cplusplus) || defined(c_plusplus)
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user