summaryrefslogtreecommitdiffstats
path: root/net/tipc/port.h
diff options
context:
space:
mode:
authorErik Hugne <erik.hugne@ericsson.com>2014-08-15 16:44:35 +0200
committerDavid S. Miller <davem@davemloft.net>2014-08-16 20:17:34 -0700
commitac32c7f705692b92fe12dcbe88fe87136fdfff6f (patch)
tree9338c8e950a138f41d5bc1c2fa9f5a669e88050f /net/tipc/port.h
parent21009686662fd21412ca35def7cb3cc8346e1c3d (diff)
downloadlinux-ac32c7f705692b92fe12dcbe88fe87136fdfff6f.tar.bz2
tipc: fix message importance range check
Commit 3b4f302d8578 ("tipc: eliminate redundant locking") introduced a bug by removing the sanity check for message importance, allowing programs to assign any value to the msg_user field. This will mess up the packet reception logic and may cause random link resets. Signed-off-by: Erik Hugne <erik.hugne@ericsson.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/port.h')
-rw-r--r--net/tipc/port.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/tipc/port.h b/net/tipc/port.h
index 3f93454592b6..a69118ff018b 100644
--- a/net/tipc/port.h
+++ b/net/tipc/port.h
@@ -179,8 +179,10 @@ static inline int tipc_port_importance(struct tipc_port *port)
return msg_importance(&port->phdr);
}
-static inline void tipc_port_set_importance(struct tipc_port *port, int imp)
+static inline int tipc_port_set_importance(struct tipc_port *port, int imp)
{
+ if (imp > TIPC_CRITICAL_IMPORTANCE)
+ return -EINVAL
msg_set_importance(&port->phdr, (u32)imp);
}