mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Chris Wright <chrisw@sous-sol.org>
To: linux-kernel@vger.kernel.org, stable@kernel.org
Cc: Justin Forbes <jmforbes@linuxtx.org>,
	Zwane Mwaikambo <zwane@arm.linux.org.uk>,
	"Theodore Ts'o" <tytso@mit.edu>,
	Randy Dunlap <rdunlap@xenotime.net>,
	Dave Jones <davej@redhat.com>,
	Chuck Wolber <chuckw@quantumlinux.com>,
	Chris Wedgwood <reviews@ml.cw.f00f.org>,
	Michael Krufky <mkrufky@linuxtv.org>,
	Chuck Ebbert <cebbert@redhat.com>,
	torvalds@linux-foundation.org, akpm@linux-foundation.org,
	alan@lxorguk.ukuu.org.uk, Patrick McHardy <kaber@trash.net>,
	"David S. Miller" <davem@davemloft.net>,
	Adrian Bunk <bunk@stusta.de>, Jorge Boncompte <jorge@dti2.net>
Subject: [patch 11/69] NETFILTER: {ip,nf}_nat_proto_gre: do not modify/corrupt GREv0 packets through NAT
Date: Mon, 21 May 2007 12:16:23 -0700	[thread overview]
Message-ID: <20070521191705.575086000@sous-sol.org> (raw)
In-Reply-To: <20070521191612.800400000@sous-sol.org>

[-- Attachment #1: ip-nf-_nat_proto_gre-do-not-modify-corrupt-grev0-packets-through-nat.patch --]
[-- Type: text/plain, Size: 5311 bytes --]

-stable review patch.  If anyone has any objections, please let us know.
---------------------

From: Jorge Boncompte <jorge@dti2.net>

While porting some changes of the 2.6.21-rc7 pptp/proto_gre conntrack
and nat modules to a 2.4.32 kernel I noticed that the gre_key function
returns a wrong pointer to the GRE key of a version 0 packet thus
corrupting the packet payload.
    
The intended behaviour for GREv0 packets is to act like
nf_conntrack_proto_generic/nf_nat_proto_unknown so I have ripped the
offending functions (not used anymore) and modified the
nf_nat_proto_gre modules to not touch version 0 (non PPTP) packets.
    
Signed-off-by: Jorge Boncompte <jorge@dti2.net>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: Chris Wright <chrisw@sous-sol.org>

---
commit 244c67aee5750eb3a79c727d09c01a500e68bbbe
tree 29bbce944bba681886a6d58c0c6b7bca3858c0e1
parent 8d8b10482fffcb72b15515231bb942e2ad6395c9
author Jorge Boncompte <jorge@dti2.net> Thu, 03 May 2007 02:50:51 +0200
committer Patrick McHardy <kaber@trash.net> Thu, 03 May 2007 02:50:51 +0200

 include/linux/netfilter/nf_conntrack_proto_gre.h      |   18 ----------------
 include/linux/netfilter_ipv4/ip_conntrack_proto_gre.h |   19 -----------------
 net/ipv4/netfilter/ip_nat_proto_gre.c                 |   20 +++++++-----------
 net/ipv4/netfilter/nf_nat_proto_gre.c                 |   20 +++++++-----------
 4 files changed, 16 insertions(+), 61 deletions(-)

--- linux-2.6.21.1.orig/include/linux/netfilter/nf_conntrack_proto_gre.h
+++ linux-2.6.21.1/include/linux/netfilter/nf_conntrack_proto_gre.h
@@ -87,24 +87,6 @@ int nf_ct_gre_keymap_add(struct nf_conn 
 /* delete keymap entries */
 void nf_ct_gre_keymap_destroy(struct nf_conn *ct);
 
-/* get pointer to gre key, if present */
-static inline __be32 *gre_key(struct gre_hdr *greh)
-{
-	if (!greh->key)
-		return NULL;
-	if (greh->csum || greh->routing)
-		return (__be32 *)(greh+sizeof(*greh)+4);
-	return (__be32 *)(greh+sizeof(*greh));
-}
-
-/* get pointer ot gre csum, if present */
-static inline __sum16 *gre_csum(struct gre_hdr *greh)
-{
-	if (!greh->csum)
-		return NULL;
-	return (__sum16 *)(greh+sizeof(*greh));
-}
-
 extern void nf_ct_gre_keymap_flush(void);
 extern void nf_nat_need_gre(void);
 
--- linux-2.6.21.1.orig/include/linux/netfilter_ipv4/ip_conntrack_proto_gre.h
+++ linux-2.6.21.1/include/linux/netfilter_ipv4/ip_conntrack_proto_gre.h
@@ -90,25 +90,6 @@ int ip_ct_gre_keymap_add(struct ip_connt
 /* delete keymap entries */
 void ip_ct_gre_keymap_destroy(struct ip_conntrack *ct);
 
-
-/* get pointer to gre key, if present */
-static inline __be32 *gre_key(struct gre_hdr *greh)
-{
-	if (!greh->key)
-		return NULL;
-	if (greh->csum || greh->routing)
-		return (__be32 *) (greh+sizeof(*greh)+4);
-	return (__be32 *) (greh+sizeof(*greh));
-}
-
-/* get pointer ot gre csum, if present */
-static inline __sum16 *gre_csum(struct gre_hdr *greh)
-{
-	if (!greh->csum)
-		return NULL;
-	return (__sum16 *) (greh+sizeof(*greh));
-}
-
 #endif /* __KERNEL__ */
 
 #endif /* _CONNTRACK_PROTO_GRE_H */
--- linux-2.6.21.1.orig/net/ipv4/netfilter/ip_nat_proto_gre.c
+++ linux-2.6.21.1/net/ipv4/netfilter/ip_nat_proto_gre.c
@@ -70,6 +70,11 @@ gre_unique_tuple(struct ip_conntrack_tup
 	__be16 *keyptr;
 	unsigned int min, i, range_size;
 
+	/* If there is no master conntrack we are not PPTP,
+	   do not change tuples */
+	if (!conntrack->master)
+		return 0;
+		
 	if (maniptype == IP_NAT_MANIP_SRC)
 		keyptr = &tuple->src.u.gre.key;
 	else
@@ -122,18 +127,9 @@ gre_manip_pkt(struct sk_buff **pskb,
 	if (maniptype == IP_NAT_MANIP_DST) {
 		/* key manipulation is always dest */
 		switch (greh->version) {
-		case 0:
-			if (!greh->key) {
-				DEBUGP("can't nat GRE w/o key\n");
-				break;
-			}
-			if (greh->csum) {
-				/* FIXME: Never tested this code... */
-				nf_proto_csum_replace4(gre_csum(greh), *pskb,
-							*(gre_key(greh)),
-							tuple->dst.u.gre.key, 0);
-			}
-			*(gre_key(greh)) = tuple->dst.u.gre.key;
+		case GRE_VERSION_1701:
+			/* We do not currently NAT any GREv0 packets.
+			 * Try to behave like "ip_nat_proto_unknown" */
 			break;
 		case GRE_VERSION_PPTP:
 			DEBUGP("call_id -> 0x%04x\n",
--- linux-2.6.21.1.orig/net/ipv4/netfilter/nf_nat_proto_gre.c
+++ linux-2.6.21.1/net/ipv4/netfilter/nf_nat_proto_gre.c
@@ -72,6 +72,11 @@ gre_unique_tuple(struct nf_conntrack_tup
 	__be16 *keyptr;
 	unsigned int min, i, range_size;
 
+	/* If there is no master conntrack we are not PPTP,
+	   do not change tuples */
+	if (!conntrack->master)
+		return 0;
+		
 	if (maniptype == IP_NAT_MANIP_SRC)
 		keyptr = &tuple->src.u.gre.key;
 	else
@@ -122,18 +127,9 @@ gre_manip_pkt(struct sk_buff **pskb, uns
 	if (maniptype != IP_NAT_MANIP_DST)
 		return 1;
 	switch (greh->version) {
-	case 0:
-		if (!greh->key) {
-			DEBUGP("can't nat GRE w/o key\n");
-			break;
-		}
-		if (greh->csum) {
-			/* FIXME: Never tested this code... */
-			nf_proto_csum_replace4(gre_csum(greh), *pskb,
-					       *(gre_key(greh)),
-					       tuple->dst.u.gre.key, 0);
-		}
-		*(gre_key(greh)) = tuple->dst.u.gre.key;
+	case GRE_VERSION_1701:
+		/* We do not currently NAT any GREv0 packets.
+		 * Try to behave like "nf_nat_proto_unknown" */
 		break;
 	case GRE_VERSION_PPTP:
 		DEBUGP("call_id -> 0x%04x\n", ntohs(tuple->dst.u.gre.key));

-- 

  parent reply	other threads:[~2007-05-21 19:42 UTC|newest]

Thread overview: 196+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-05-21 19:16 [patch 00/69] -stable review Chris Wright
2007-05-21 19:16 ` [patch 01/69] ipv6: track device renames in snmp6 Chris Wright
2007-05-21 19:16 ` [patch 02/69] sis900: Allocate rx replacement buffer before rx operation Chris Wright
2007-05-21 19:16 ` [patch 03/69] smc911x: fix compilation breakage wjen debug is on Chris Wright
2007-05-21 19:16 ` [patch 04/69] ACPI: Fix 2.6.21 boot regression on P4/HT Chris Wright
2007-05-21 19:16 ` [patch 05/69] cxacru: Fix infinite loop when trying to cancel polling task Chris Wright
2007-05-21 19:16 ` [patch 06/69] reiserfs: suppress lockdep warning Chris Wright
2007-05-21 19:16 ` [patch 07/69] libata-sff: Undo bug introduced with pci_iomap changes Chris Wright
2007-05-21 23:18   ` Linus Torvalds
2007-05-21 23:33     ` Jeff Garzik
2007-05-21 23:38       ` Linus Torvalds
2007-05-21 23:38     ` [stable] " Chris Wright
2007-05-22  0:36       ` Alan Cox
2007-05-22  1:09         ` Chris Wright
2007-05-22  1:46           ` Chris Wright
2007-05-22  0:34     ` Alan Cox
2007-05-21 19:16 ` [patch 08/69] iop: fix iop_getttimeoffset Chris Wright
2007-05-21 19:16 ` [patch 09/69] iop13xx: fix i/o address translation Chris Wright
2007-05-21 19:16 ` [patch 10/69] kbuild: fixdep segfault on pathological string-o-death Chris Wright
2007-05-21 19:16 ` Chris Wright [this message]
2007-05-21 19:16 ` [patch 12/69] sata_via: add missing PM hooks Chris Wright
2007-05-21 19:16 ` [patch 13/69] arm: fix handling of svc mode undefined instructions Chris Wright
2007-05-21 19:16 ` [patch 14/69] oom: fix constraint deadlock Chris Wright
2007-05-21 19:16 ` [patch 15/69] slob: fix page order calculation on not 4KB page Chris Wright
2007-05-21 19:16 ` [patch 16/69] ppp: Fix ppp_deflate issues with recent zlib_inflate changes Chris Wright
2007-05-21 19:16 ` [patch 17/69] knfsd: Avoid use of unitialised variables on error path when nfs exports Chris Wright
2007-05-21 19:16 ` [patch 18/69] knfsd: rpc: fix server-side wrapping of krb5i replies Chris Wright
2007-05-21 19:16 ` [patch 19/69] skge: default WOL should be magic only (rev2) Chris Wright
2007-05-21 19:16 ` [patch 20/69] skge: allow WOL except for known broken chips Chris Wright
2007-05-21 19:16 ` [patch 21/69] TG3: Fix TSO bugs Chris Wright
2007-05-21 19:16 ` [patch 22/69] TG3: Remove reset during MAC address changes Chris Wright
2007-05-21 19:16 ` [patch 23/69] TG3: Update version and reldate Chris Wright
2007-05-21 19:16 ` [patch 24/69] BNX2: Fix TSO problem with small MSS Chris Wright
2007-05-21 19:16 ` [patch 25/69] BNX2: Block MII access when ifdown Chris Wright
2007-05-21 19:16 ` [patch 26/69] BNX2: Save PCI state during suspend Chris Wright
2007-05-21 19:16 ` [patch 27/69] BNX2: Update version and reldate Chris Wright
2007-05-21 19:16 ` [patch 28/69] highres/dyntick: prevent xtime lock contention Chris Wright
2007-05-21 19:16 ` [patch 29/69] fat: fix VFAT compat ioctls on 64-bit systems Chris Wright
2007-05-21 19:16 ` [patch 30/69] udf: decrement correct link count in udf_rmdir Chris Wright
2007-05-21 19:16 ` [patch 31/69] IPV6: Fix slab corruption running ip6sic Chris Wright
2007-05-21 19:16 ` [patch 32/69] NETPOLL: Fix TX queue overflow in trapped mode Chris Wright
2007-05-21 19:16 ` [patch 33/69] NETPOLL: Remove CONFIG_NETPOLL_RX Chris Wright
2007-05-21 19:16 ` [patch 34/69] SCTP: Fix sctp_getsockopt_local_addrs_old() to use local storage Chris Wright
2007-05-21 19:16 ` [patch 35/69] SCTP: Correctly copy addresses in sctp_copy_laddrs Chris Wright
2007-05-21 19:16 ` [patch 36/69] TCP: zero out rx_opt in tcp_disconnect() Chris Wright
2007-05-21 19:16 ` [patch 37/69] fix leaky resv_huge_pages when cpuset is in use Chris Wright
2007-05-21 19:16 ` [patch 38/69] clocksource: fix resume logic Chris Wright
2007-05-21 19:16 ` [patch 39/69] md: Avoid a possibility that a read error can wrongly propagate through md/raid1 to a filesystem Chris Wright
2007-05-21 19:16 ` [patch 40/69] driver-core: dont free devt_attr till the device is released Chris Wright
2007-05-21 19:16 ` [patch 41/69] pci-quirks: disable MSI on RS400-200 and RS480 Chris Wright
2007-05-21 19:16 ` [patch 42/69] fix for bugzilla 8426: massive slowdown on SCSI CD/DVD drive connected to mptspi driver Chris Wright
2007-05-21 19:16 ` [patch 43/69] i386: HPET, check if the counter works Chris Wright
2007-05-21 19:58   ` Thomas Gleixner
2007-05-21 20:25     ` Thomas Gleixner
2007-05-21 20:33       ` Chris Wright
2007-05-21 20:36         ` Thomas Gleixner
2007-05-21 21:57     ` Andrew Morton
2007-05-21 22:12       ` Thomas Gleixner
2007-06-05 16:52   ` dean gaudet
2007-06-05 16:56     ` dean gaudet
2007-06-05 16:58     ` Linus Torvalds
2007-05-21 19:16 ` [patch 44/69] ALSA: hda-codec - Fix resume of STAC92xx codecs Chris Wright
2007-05-21 19:16 ` [patch 45/69] IPMI: fix SI address space settings Chris Wright
2007-05-21 19:16 ` [patch 46/69] [PATCH] x86_64 : Fix vgettimeofday() Chris Wright
2007-05-21 19:16 ` [patch 47/69] IPV6: Send ICMPv6 error on scope violations Chris Wright
2007-05-21 19:17 ` [patch 48/69] IPV6: Do no rely on skb->dst before it is assigned Chris Wright
2007-05-21 19:17 ` [patch 49/69] IPV6 ROUTE: Assign rt6i_idev for ip6_{prohibit,blk_hole}_entry Chris Wright
2007-05-21 19:17 ` [patch 50/69] IPV6: Reverse sense of promisc tests in ip6_mc_input Chris Wright
2007-05-21 19:17 ` [patch 51/69] NET_SCHED: prio qdisc boundary condition Chris Wright
2007-05-21 19:17 ` [patch 52/69] SCTP: Prevent OOPS if hmac modules didnt load Chris Wright
2007-05-21 19:17 ` [patch 53/69] IPSEC: Check validity of direction in xfrm_policy_byid Chris Wright
2007-05-21 19:17 ` [patch 54/69] SPARC64: Add missing cpus_empty() check in hypervisor xcall handling Chris Wright
2007-05-21 19:17 ` [patch 55/69] SPARC64: Fix recursion in PROM tree building Chris Wright
2007-05-21 19:17 ` [patch 56/69] SERIAL SUNHV: Add an ID string Chris Wright
2007-05-21 19:17 ` [patch 57/69] SPARC64: Bump PROMINTR_MAX to 32 Chris Wright
2007-05-21 19:17 ` [patch 58/69] SPARC64: Be more resiliant with PCI I/O space regs Chris Wright
2007-05-21 19:17 ` [patch 59/69] sky2: allow 88E8056 Chris Wright
2007-05-21 19:17 ` [patch 60/69] sky2: 88e8071 support not ready Chris Wright
2007-05-21 19:17 ` [patch 61/69] skge: crash on shutdown/suspend Chris Wright
2007-05-21 19:17 ` [patch 62/69] sky2: fix oops on shutdown Chris Wright
2007-05-21 19:17 ` [patch 63/69] USB HID: hiddev - fix race between hiddev_send_event() and hiddev_release() Chris Wright
2007-05-21 19:17 ` [patch 64/69] JFS: Fix race waking up jfsIO kernel thread Chris Wright
2007-05-21 19:17 ` [patch 65/69] NETFILTER: {ip,nf}_conntrack: fix use-after-free in helper destroy callback invocation Chris Wright
2007-05-21 19:17 ` [patch 66/69] CPUFREQ: Support rev H AMD64s in powernow-k8 Chris Wright
2007-05-21 19:17 ` [patch 67/69] CPUFREQ: Correct revision mask for powernow-k8 Chris Wright
2007-05-21 19:17 ` [patch 68/69] CPUFREQ: powernow-k7: fix MHz rounding issue with perflib Chris Wright
2007-05-21 19:17 ` [patch 69/69] CRYPTO: api: Read module pointer before freeing algorithm Chris Wright
2007-05-21 19:31 ` [patch 00/69] -stable review Andrew Morton
2007-05-21 20:31   ` [stable] " Chris Wright
2007-05-21 21:38     ` Eric Dumazet
2007-05-21 22:13       ` Chris Wright
2007-05-21 22:20   ` Adrian Bunk
2007-05-21 22:23     ` Chuck Ebbert
2007-05-21 22:35       ` [stable] " Chris Wright
2007-05-23  1:28       ` Fortier,Vincent [Montreal]
2007-05-23  3:36         ` [stable] " Greg KH
2007-05-23 11:02           ` Fortier,Vincent [Montreal]
2007-05-23 15:12             ` Greg KH
2007-05-21 20:54 ` Chuck Ebbert
2007-05-21 21:07   ` Linus Torvalds
2007-05-21 21:25     ` Chris Wright
     [not found]       ` <1179870110.16656.2.camel@localhost>
2007-05-22 22:07         ` Linus Torvalds
2007-05-23  7:09           ` Romano Giannetti
2007-05-23  7:19             ` Paolo Ornati
2007-05-23  7:38               ` Romano Giannetti
2007-05-24 12:06           ` Romano Giannetti
2007-05-24 15:06             ` Long delay in resume from RAM (Was Re: [patch 00/69] -stablereview) Romano Giannetti
2007-05-24 15:28               ` Linus Torvalds
2007-05-24 15:52                 ` Linus Torvalds
2007-05-24 20:21                   ` Romano Giannetti
2007-05-24 20:33                     ` Linus Torvalds
2007-05-24 20:35                       ` Linus Torvalds
2007-05-24 21:36                         ` Romano Giannetti
2007-05-24 20:14                 ` Romano Giannetti
2007-05-24 21:01                   ` Andrew Morton
2007-05-24 21:12                     ` Sam Ravnborg
2007-05-24 21:21                       ` Andrew Morton
2007-05-25  5:12                         ` Sam Ravnborg
2007-05-24 21:51                       ` Romano Giannetti
2007-05-24 22:30                         ` Johannes Stezenbach
2007-05-24 21:28                     ` Romano Giannetti
     [not found]                 ` <alpine.LFD.0.98.0705240815530.26602@woody.linux-foundation.org >
2007-05-24 22:14                   ` Long delay in resume from RAM (Was Re: [patch 00/69]-stablereview) Romano Giannetti
2007-05-24 22:49                     ` Linus Torvalds
     [not found]                       ` <alpine.LFD.0.98.0705241549130.26602@woody.linux-foundation.org >
2007-05-25  8:52                         ` Romano Giannetti
2007-05-25  9:22                         ` Romano Giannetti
2007-05-25 16:19                           ` Linus Torvalds
2007-05-24 16:16             ` [patch 00/69] -stable review Linus Torvalds
2007-05-24 20:04               ` pcmcia resume 60 second hang. " Pavel Machek
2007-05-24 20:27                 ` Linus Torvalds
2007-05-24 21:03                   ` Rafael J. Wysocki
2007-05-24 22:00                   ` Pavel Machek
2007-05-24 22:10                     ` Linus Torvalds
2007-05-24 22:17                       ` Pavel Machek
2007-05-24 22:53                         ` Linus Torvalds
2007-05-24 23:18                           ` Pavel Machek
2007-05-25  0:37                             ` Linus Torvalds
2007-05-25  1:55                               ` Nigel Cunningham
2007-05-25  2:10                                 ` Linus Torvalds
2007-05-25  2:20                                   ` Nigel Cunningham
2007-05-25  2:41                                     ` Linus Torvalds
2007-05-25  3:00                                       ` Nigel Cunningham
2007-05-25  3:31                                         ` Linus Torvalds
2007-05-25  4:33                                           ` Nigel Cunningham
2007-05-25  4:49                                             ` Linus Torvalds
2007-05-25  5:18                                               ` Nigel Cunningham
2007-05-29 14:16                                               ` Mark Lord
2007-05-29 14:19                                             ` Mark Lord
2007-05-29 21:22                                               ` Nigel Cunningham
2007-05-29 21:33                                                 ` Linus Torvalds
2007-05-29 22:10                                                   ` Nigel Cunningham
2007-05-30 11:49                                                   ` Pavel Machek
2007-05-30 12:40                                                     ` Matthew Garrett
2007-05-30 13:17                                                       ` Nigel Cunningham
2007-05-30 13:29                                                         ` Matthew Garrett
2007-05-30 14:08                                                           ` Rafael J. Wysocki
2007-05-30 16:00                                                             ` Linus Torvalds
2007-05-30 14:04                                                         ` Rafael J. Wysocki
2007-05-30 14:07                                                           ` Matthew Garrett
2007-05-30 22:21                                                           ` Nigel Cunningham
2007-05-30 15:43                                                       ` Pavel Machek
2007-05-25  9:40                                       ` Need suspend-to-ram maintainer " Pavel Machek
2007-05-25  9:19                               ` Pavel Machek
2007-05-29  6:55                               ` Kay Sievers
2007-05-29 12:00                                 ` Rafael J. Wysocki
2007-05-29 12:00                                   ` Michael-Luke Jones
2007-05-29 12:16                                     ` Rafael J. Wysocki
2007-05-29 13:15                                     ` Kay Sievers
2007-05-27 15:57                           ` Matthew Garrett
2007-05-27 16:26                             ` Linus Torvalds
2007-05-27 16:43                               ` Matthew Garrett
2007-05-27 18:32                                 ` Rafael J. Wysocki
2007-05-27 18:44                                   ` Matthew Garrett
2007-05-27 19:09                                     ` Rafael J. Wysocki
2007-05-28  1:05                                     ` Matthew Garrett
2007-05-28  8:11                                       ` Rafael J. Wysocki
2007-05-28 12:10                                         ` Matthew Garrett
2007-05-28 12:55                                           ` Pavel Machek
2007-05-28 13:03                                             ` Matthew Garrett
2007-05-28 13:06                                               ` Pavel Machek
2007-05-28 22:53                                               ` Nigel Cunningham
2007-05-29  8:31                                     ` Romano Giannetti
2007-05-29 14:55                                       ` Linus Torvalds
2007-05-30 10:26                                         ` Romano Giannetti
2007-05-30 15:43                                           ` Randy Dunlap
2007-05-28 10:04                               ` Pavel Machek
2007-05-28 16:53                                 ` Linus Torvalds
2007-05-29  5:23                                   ` [stable] " Greg KH
2007-05-29 13:04                                   ` Pavel Machek
2007-05-24 22:23                       ` Linus Torvalds
2007-05-24 22:39                         ` Pavel Machek
2007-05-24 22:32                       ` Pavel Machek
2007-05-24 23:16                         ` Henrique de Moraes Holschuh
2007-05-24 23:19                           ` Pavel Machek
2007-05-25 11:44                             ` Rafael J. Wysocki
2007-05-23  7:15       ` Romano Giannetti
2007-05-21 21:40 ` Chris Wright

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20070521191705.575086000@sous-sol.org \
    --to=chrisw@sous-sol.org \
    --cc=akpm@linux-foundation.org \
    --cc=alan@lxorguk.ukuu.org.uk \
    --cc=bunk@stusta.de \
    --cc=cebbert@redhat.com \
    --cc=chuckw@quantumlinux.com \
    --cc=davej@redhat.com \
    --cc=davem@davemloft.net \
    --cc=jmforbes@linuxtx.org \
    --cc=jorge@dti2.net \
    --cc=kaber@trash.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mkrufky@linuxtv.org \
    --cc=rdunlap@xenotime.net \
    --cc=reviews@ml.cw.f00f.org \
    --cc=stable@kernel.org \
    --cc=torvalds@linux-foundation.org \
    --cc=tytso@mit.edu \
    --cc=zwane@arm.linux.org.uk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome