]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Don't recreate peer, when responding to a repeated deregistration attempt.
authorTilghman Lesher <tilghman@meg.abyt.es>
Thu, 15 Apr 2010 20:24:50 +0000 (20:24 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Thu, 15 Apr 2010 20:24:50 +0000 (20:24 +0000)
When a reply to a deregistration is lost in transmit, the client retries the
deregistration.  Previously, this would cause a realtime/autocreate peer to be
loaded back into memory, after it had already been correctly purged.  Instead,
we just want to resend the reply without loading the peer.

(closes issue #16908)
 Reported by: kkm
 Patches:
       20100412__issue16908.diff.txt uploaded by tilghman (license 14)
 Tested by: kkm

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@257467 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_sip.c

index 831f433a3636765cbcb69bfc0c894ce8f3171712..fdb4c98e30a2bff7ed05de2e004534672ab68a94 100644 (file)
@@ -9352,6 +9352,21 @@ static enum check_auth_result register_verify(struct sip_pvt *p, struct sockaddr
 
        ast_string_field_set(p, exten, name);
        build_contact(p);
+       if (ast_test_flag(req, SIP_PKT_IGNORE)) {
+               /* Expires is a special case, where we only want to load the peer if this isn't a deregistration attempt */
+               const char *expires = get_header(req, "Expires");
+               int expire = atoi(expires);
+
+               if (ast_strlen_zero(expires)) { /* No expires header; look in Contact */
+                       if ((expires = strcasestr(get_header(req, "Contact"), ";expires="))) {
+                               expire = atoi(expires + 9);
+                       }
+               }
+               if (!ast_strlen_zero(expires) && expire == 0) {
+                       transmit_response_with_date(p, "200 OK", req);
+                       return 0;
+               }
+       }
        peer = find_peer(name, NULL, 1, 0);
        if (!(peer && ast_apply_ha(peer->ha, sin))) {
                /* Peer fails ACL check */