From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932533Ab0KOQqy (ORCPT ); Mon, 15 Nov 2010 11:46:54 -0500 Received: from mail-fx0-f46.google.com ([209.85.161.46]:52221 "EHLO mail-fx0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932132Ab0KOQqw (ORCPT ); Mon, 15 Nov 2010 11:46:52 -0500 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=LIqaouiofFLjxp6HNZNidmnu0J/vJ/sBt5arY5Y9HROKK6JfJzYpDQgJ1wsSfVqrfl Y+GDjoApg6QXvsevETYk6TQoiTu+dX5JEub8l0ZPxN/TQNa62VnW39CinfD61+eTsgW9 vFs0TgjY3FBcHAuNJK8faK6W8VeliZXRWCD9s= MIME-Version: 1.0 In-Reply-To: <4CE1084A.3070100@trash.net> References: <28d666269c390965f1a4edca42f93c12@localhost> <1289725175.2743.65.camel@edumazet-laptop> <1289764664.2743.110.camel@edumazet-laptop> <4CE1084A.3070100@trash.net> Date: Mon, 15 Nov 2010 08:46:50 -0800 Message-ID: Subject: Re: [PATCH/RFC] netfilter: nf_conntrack_sip: Handle quirky Cisco phones From: Kevin Cernekee To: Patrick McHardy Cc: Eric Dumazet , "David S. Miller" , Alexey Kuznetsov , "Pekka Savola (ipv6)" , James Morris , Hideaki YOSHIFUJI , netfilter-devel@vger.kernel.org, netfilter@vger.kernel.org, coreteam@netfilter.org, linux-kernel@vger.kernel.org, netdev@vger.kernel.org Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Nov 15, 2010 at 2:15 AM, Patrick McHardy wrote: > The problem in doing this is that further packets from port 49xxx > wouldn't be recognized as belonging to the same connection. OK, makes sense. > The same problem exists with your current patch, packets from port > 5060 to the same destination won't be recognized as belonging to the > connection that sent the REGISTER and thus won't be able to modify the > timeout or unregister. > > Basically we would need three-legged connections to handle this > situation correctly. Just to clarify: the actual source port on a given device will be EITHER a high-numbered port (Cisco) or 5060 (others). I have not come across any devices that send from a "mix" of source ports, e.g. 49xxx for REGISTER and then 5060 for INVITE. >>From what I have seen, subsequent SIP requests from the Cisco phone are indeed getting associated with the original connection. My phone is logging into two different SIP accounts, and each account seems to use its own unique UDP source port for all control traffic (both expecting replies on 5060). If Netfilter adds support for three-legged connections, will the third leg show up in the tuplehash so I don't have to track it in the "help" structure?