ngmsg flags

nlmsg_flags:消息标记,它们用以表示消息的类型,同样定义在include/uapi/linux/netlink.h中;

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37

#define NLM_F_REQUEST 1 /* It is request message. */
#define NLM_F_MULTI 2 /* Multipart message, terminated by NLMSG_DONE */
#define NLM_F_ACK 4 /* Reply with ack, with zero or error code */
#define NLM_F_ECHO 8 /* Echo this request */
#define NLM_F_DUMP_INTR 16 /* Dump was inconsistent due to sequence change */

/* Modifiers to GET request */
#define NLM_F_ROOT 0x100 /* specify tree root */
#define NLM_F_MATCH 0x200 /* return all matching */
#define NLM_F_ATOMIC 0x400 /* atomic GET */
#define NLM_F_DUMP (NLM_F_ROOT|NLM_F_MATCH)

/* Modifiers to NEW request */
#define NLM_F_REPLACE 0x100 /* Override existing */
#define NLM_F_EXCL 0x200 /* Do not touch, if it exists */
#define NLM_F_CREATE 0x400 /* Create, if it does not exist */

nlmsg_flags 的标准标志位
NLM_F_REQUEST 设置全部请求消息
NLM_F_MULTI 此消息是多数据包消息之一,通过标志
NLMSG_DONE 结束。
NLM_F_ACK 数据成功接收返回确认消息
NLM_F_ECHO 要求响应请求信息

为 GET 请求设立的附加标志位
NLM_F_ROOT 返回对象表而不是单个数据项
NLM_F_MATCH 尚未实现
NLM_F_ATOMIC 返回对象表的原子快照(atomic snapshot)
NLM_F_DUMP 尚未列入文档

对新建 NEW 请求设立的附加标志位
NLM_F_REPLACE 替换现有的对象
NLM_F_EXCL 如对象已存在,不作替换
NLM_F_CREATE 创建对象,如果对象不存在
NLM_F_APPEND 对象表添加对象项