[NETFILTER]: SIP conntrack: fix skipping over user info in SIP headers
authorLars Immisch <lars@ibp.de>
Tue, 30 Jan 2007 22:24:57 +0000 (14:24 -0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 30 Jan 2007 22:24:57 +0000 (14:24 -0800)
When trying to skip over the username in the Contact header, stop at the
end of the line if no @ is found to avoid mangling following headers.
We don't need to worry about continuation lines because we search inside
a SIP URI.

Fixes Netfilter Bugzilla #532.

Signed-off-by: Lars Immisch <lars@ibp.de>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/netfilter/ip_conntrack_sip.c
net/netfilter/nf_conntrack_sip.c

index 3a26d63eed88926b81baf934a002314c823217b9..571d27e2091028fff2f167290afe6dbc83249f45 100644 (file)
@@ -283,8 +283,14 @@ static int skp_epaddr_len(const char *dptr, const char *limit, int *shift)
 {
        int s = *shift;
 
-       for (; dptr <= limit && *dptr != '@'; dptr++)
+       /* Search for @, but stop at the end of the line.
+        * We are inside a sip: URI, so we don't need to worry about
+        * continuation lines. */
+       while (dptr <= limit &&
+              *dptr != '@' && *dptr != '\r' && *dptr != '\n') {
                (*shift)++;
+               dptr++;
+       }
 
        if (*dptr == '@') {
                dptr++;
index eb2a2411f97b9863a1fe7ebb42e43bf4e2897bd3..c93fb37a54fc8dde78ab161b52d5df73662b960a 100644 (file)
@@ -303,8 +303,14 @@ static int skp_epaddr_len(struct nf_conn *ct, const char *dptr,
 {
        int s = *shift;
 
-       for (; dptr <= limit && *dptr != '@'; dptr++)
+       /* Search for @, but stop at the end of the line.
+        * We are inside a sip: URI, so we don't need to worry about
+        * continuation lines. */
+       while (dptr <= limit &&
+              *dptr != '@' && *dptr != '\r' && *dptr != '\n') {
                (*shift)++;
+               dptr++;
+       }
 
        if (*dptr == '@') {
                dptr++;