diff options
author | Cyrill Gorcunov <gorcunov@openvz.org> | 2009-10-29 05:59:18 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-10-29 06:00:06 -0400 |
commit | 38bfd8f5bec496e8e0db8849e01c99a33479418a (patch) | |
tree | 1db96f539d28c5d4fb2f062b522f91f2f2212c2a /include/linux/net.h | |
parent | ed3f2e40f3d438f4a1ec0a898173116cb26f106a (diff) |
net,socket: introduce DECLARE_SOCKADDR helper to catch overflow at build time
proto_ops->getname implies copying protocol specific data
into storage unit (particulary to __kernel_sockaddr_storage).
So when we implement new protocol support we should keep such
a detail in mind (which is easy to forget about).
Lets introduce DECLARE_SOCKADDR helper which check if
storage unit is not overfowed at build time.
Eventually inet_getname is switched to use DECLARE_SOCKADDR
(to show example of usage).
Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/net.h')
-rw-r--r-- | include/linux/net.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/net.h b/include/linux/net.h index b42bb60fe92f..4da9d571b053 100644 --- a/include/linux/net.h +++ b/include/linux/net.h | |||
@@ -199,6 +199,9 @@ struct proto_ops { | |||
199 | struct pipe_inode_info *pipe, size_t len, unsigned int flags); | 199 | struct pipe_inode_info *pipe, size_t len, unsigned int flags); |
200 | }; | 200 | }; |
201 | 201 | ||
202 | #define DECLARE_SOCKADDR(type, dst, src) \ | ||
203 | type dst = ({ __sockaddr_check_size(sizeof(*dst)); (type) src; }) | ||
204 | |||
202 | struct net_proto_family { | 205 | struct net_proto_family { |
203 | int family; | 206 | int family; |
204 | int (*create)(struct net *net, struct socket *sock, int protocol); | 207 | int (*create)(struct net *net, struct socket *sock, int protocol); |