pull request: batman-adv 2013-01-27
Message ID | 1359315839-24136-1-git-send-email-ordex@autistici.org (mailing list archive) |
---|---|
State | Not Applicable, archived |
Headers |
Return-Path: <ordex@autistici.org> Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=178.255.144.35; helo=contumacia.investici.org; envelope-from=ordex@autistici.org; receiver=b.a.t.m.a.n@lists.open-mesh.org Received: from contumacia.investici.org (contumacia.investici.org [178.255.144.35]) by open-mesh.org (Postfix) with ESMTPS id CC5C0601B13 for <b.a.t.m.a.n@lists.open-mesh.org>; Sun, 27 Jan 2013 20:44:52 +0100 (CET) Received: from [178.255.144.35] (contumacia [178.255.144.35]) (Authenticated sender: ordex@autistici.org) by localhost (Postfix) with ESMTPSA id C7429E8A23; Sun, 27 Jan 2013 19:44:49 +0000 (UTC) X-DKIM: Sendmail DKIM Filter v2.8.2 contumacia.investici.org C7429E8A23 From: Antonio Quartulli <ordex@autistici.org> To: davem@davemloft.net Date: Sun, 27 Jan 2013 20:43:56 +0100 Message-Id: <1359315839-24136-1-git-send-email-ordex@autistici.org> X-Mailer: git-send-email 1.8.1.1 Cc: netdev@vger.kernel.org, b.a.t.m.a.n@lists.open-mesh.org Subject: [B.A.T.M.A.N.] pull request: batman-adv 2013-01-27 X-BeenThere: b.a.t.m.a.n@lists.open-mesh.org X-Mailman-Version: 2.1.15 Precedence: list Reply-To: The list for a Better Approach To Mobile Ad-hoc Networking <b.a.t.m.a.n@lists.open-mesh.org> List-Id: The list for a Better Approach To Mobile Ad-hoc Networking <b.a.t.m.a.n.lists.open-mesh.org> List-Unsubscribe: <https://lists.open-mesh.org/mm/options/b.a.t.m.a.n>, <mailto:b.a.t.m.a.n-request@lists.open-mesh.org?subject=unsubscribe> List-Archive: <http://lists.open-mesh.org/pipermail/b.a.t.m.a.n/> List-Post: <mailto:b.a.t.m.a.n@lists.open-mesh.org> List-Help: <mailto:b.a.t.m.a.n-request@lists.open-mesh.org?subject=help> List-Subscribe: <https://lists.open-mesh.org/mm/listinfo/b.a.t.m.a.n>, <mailto:b.a.t.m.a.n-request@lists.open-mesh.org?subject=subscribe> X-List-Received-Date: Sun, 27 Jan 2013 19:44:54 -0000 |
Pull-request
git://git.open-mesh.org/linux-merge.git tags/batman-adv-fix-for-davemMessage
Antonio Quartulli
Jan. 27, 2013, 7:43 p.m. UTC
This is a small patchset intended for net/linux-3.8. Here there are three small patches from Matthias Schiffer aimed to fix some memory problems in the recently introduced D.A.T. component. One of them is fixing an skb memleak, one is fixing the ARP filter routine by preventing DAT to parse not useful messages (so reducing the amount of memory used by the local cache) and one fixing again the ARP filter routine by preventing DAT to overwrite correct entries with bogus ones in the local cache. Please pull or let me know if there is any problem. Thanks a lot, Antonio The following changes since commit 1591ab6740326aaf41e194c43bdf8ece6e2e4835: Merge branch 'for-davem' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless (2013-01-27 01:37:22 -0500) are available in the git repository at: git://git.open-mesh.org/linux-merge.git tags/batman-adv-fix-for-davem for you to fetch changes up to b618ad1103c9ea0c4a69b44f42fc3c7b4e231e22: batman-adv: filter ARP packets with invalid MAC addresses in DAT (2013-01-27 14:02:39 +0100) ---------------------------------------------------------------- Included changes ares: - fix an skb memleak in DAT - fix the ARP filtering routine in DAT by preventing bogus entries to overwrite already existing ones in the local cache. - fix the ARP filtering routine in DAT by preventing it to parse and add to the cache bogus entries ---------------------------------------------------------------- Matthias Schiffer (3): batman-adv: fix skb leak in batadv_dat_snoop_incoming_arp_reply() batman-adv: check for more types of invalid IP addresses in DAT batman-adv: filter ARP packets with invalid MAC addresses in DAT net/batman-adv/distributed-arp-table.c | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-)
Comments
From: Antonio Quartulli <ordex@autistici.org> Date: Sun, 27 Jan 2013 20:43:56 +0100 > This is a small patchset intended for net/linux-3.8. > Here there are three small patches from Matthias Schiffer aimed to fix some > memory problems in the recently introduced D.A.T. component. One of them is > fixing an skb memleak, one is fixing the ARP filter routine by preventing DAT to > parse not useful messages (so reducing the amount of memory used by the local > cache) and one fixing again the ARP filter routine by preventing DAT to > overwrite correct entries with bogus ones in the local cache. > > Please pull or let me know if there is any problem. Pulled, thanks Antonio.