[PATCH] net, llc: Avoid undefined behaviour inllc_conn_ac_inc_vr_by_1()

From: Jesper Juhl
Date: Sat Jun 25 2011 - 18:20:37 EST


Introduce a sequence point (;) between two writes to llc_sk(sk)->vR in
net/llc/llc_c_ac.c:llc_conn_ac_inc_vr_by_1() so that the order in
which the writes happen become well defined.

While the code may work fine now it may break at any time with a
different compiler, a new version of current compiler or even just a
different optimization level of the current compiler. Much better to
clearly express what's intended in a way that guarantees the result.

Signed-off-by: Jesper Juhl <jj@xxxxxxxxxxxxx>
---
net/llc/llc_c_ac.c | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/net/llc/llc_c_ac.c b/net/llc/llc_c_ac.c
index ea225bd..e535ca4 100644
--- a/net/llc/llc_c_ac.c
+++ b/net/llc/llc_c_ac.c
@@ -1296,7 +1296,14 @@ int llc_conn_ac_set_vr_0(struct sock *sk, struct sk_buff *skb)

int llc_conn_ac_inc_vr_by_1(struct sock *sk, struct sk_buff *skb)
{
- llc_sk(sk)->vR = PDU_GET_NEXT_Vr(llc_sk(sk)->vR);
+ /* Do not consolidate this on one line. Since the PDU_GET_NEXT_Vr
+ macro increments its argument which is the same as what we are
+ writing to, then we'll have two writes to the same variable
+ without an intervening sequence point, which leads to the
+ situation where we can't really know what gets stored as the
+ result since the compiler is free to do those in any order. */
+ const u8 new_vr = PDU_GET_NEXT_Vr(llc_sk(sk)->vR);
+ llc_sk(sk)->vR = new_vr;
return 0;
}

--
1.7.5.2


--
Jesper Juhl <jj@xxxxxxxxxxxxx> http://www.chaosbits.net/
Don't top-post http://www.catb.org/jargon/html/T/top-post.html
Plain text mails only, please.

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/