summaryrefslogtreecommitdiffstats
path: root/include/network.h
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2008-12-13 17:24:27 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2008-12-13 17:24:27 +0100
commit74455dae1d095178b09ea3f1b1e8b005076e7a94 (patch)
treec1d559d89e972ee6e115c333093ca8a961cce1e6 /include/network.h
parent3de8d91c1fa7cadf68108c0c9c03193ac5e82a73 (diff)
network: do more strict message type checking
This patch adds more strict checking in the message type. We add a new message type NET_T_CTL for control messages. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include/network.h')
-rw-r--r--include/network.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/include/network.h b/include/network.h
index b6722bd..f9756db 100644
--- a/include/network.h
+++ b/include/network.h
@@ -22,6 +22,7 @@ enum nethdr_type {
NET_T_STATE_UPD,
NET_T_STATE_DEL,
NET_T_STATE_MAX = NET_T_STATE_DEL,
+ NET_T_CTL = 10,
};
int nethdr_align(int len);
@@ -95,11 +96,12 @@ void mcast_buffered_destroy(void);
int mcast_buffered_send_netmsg(struct mcast_sock *m, const struct nethdr *net);
ssize_t mcast_buffered_pending_netmsg(struct mcast_sock *m);
-#define IS_DATA(x) ((x->flags & ~(NET_F_HELLO | NET_F_HELLO_BACK)) == 0)
-#define IS_ACK(x) (x->flags & NET_F_ACK)
-#define IS_NACK(x) (x->flags & NET_F_NACK)
-#define IS_RESYNC(x) (x->flags & NET_F_RESYNC)
-#define IS_ALIVE(x) (x->flags & NET_F_ALIVE)
+#define IS_DATA(x) (x->type <= NET_T_STATE_MAX && \
+ (x->flags & ~(NET_F_HELLO | NET_F_HELLO_BACK)) == 0)
+#define IS_ACK(x) (x->type == NET_T_CTL && x->flags & NET_F_ACK)
+#define IS_NACK(x) (x->type == NET_T_CTL && x->flags & NET_F_NACK)
+#define IS_RESYNC(x) (x->type == NET_T_CTL && x->flags & NET_F_RESYNC)
+#define IS_ALIVE(x) (x->type == NET_T_CTL && x->flags & NET_F_ALIVE)
#define IS_CTL(x) IS_ACK(x) || IS_NACK(x) || IS_RESYNC(x) || IS_ALIVE(x)
#define IS_HELLO(x) (x->flags & NET_F_HELLO)
#define IS_HELLO_BACK(x)(x->flags & NET_F_HELLO_BACK)