-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathgnUser.c
223 lines (183 loc) · 5.93 KB
/
gnUser.c
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
#include <poll.h>
#include <string.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <signal.h>
#include <linux/genetlink.h>
/*
* Generic macros for dealing with netlink sockets. Might be duplicated
* elsewhere. It is recommended that commercial grade applications use
* libnl or libnetlink and use the interfaces provided by the library
*/
#define GENLMSG_DATA(glh) ((void *)(NLMSG_DATA(glh) + GENL_HDRLEN))
#define GENLMSG_PAYLOAD(glh) (NLMSG_PAYLOAD(glh, 0) - GENL_HDRLEN)
#define NLA_DATA(na) ((void *)((char*)(na) + NLA_HDRLEN))
//#define NLA_PAYLOAD(len) (len - NLA_HDRLEN)
int done = 0;
int nl_sd; /*the socket*/
/*
* Create a raw netlink socket and bind
*/
static int create_nl_socket(int protocol, int groups)
{
socklen_t addr_len;
int fd;
struct sockaddr_nl local;
fd = socket(AF_NETLINK, SOCK_RAW, protocol);
if (fd < 0){
perror("socket");
return -1;
}
memset(&local, 0, sizeof(local));
local.nl_family = AF_NETLINK;
local.nl_groups = groups;
if (bind(fd, (struct sockaddr *) &local, sizeof(local)) < 0)
goto error;
return fd;
error:
close(fd);
return -1;
}
/*
* Send netlink message to kernel
*/
int sendto_fd(int s, const char *buf, int bufLen)
{
struct sockaddr_nl nladdr;
int r;
memset(&nladdr, 0, sizeof(nladdr));
nladdr.nl_family = AF_NETLINK;
while ((r = sendto(s, buf, bufLen, 0, (struct sockaddr *) &nladdr,
sizeof(nladdr))) < bufLen) {
if (r > 0) {
buf += r;
bufLen -= r;
} else if (errno != EAGAIN)
return -1;
}
return 0;
}
/*
* Probe the controller in genetlink to find the family id
* for the CONTROL_EXMPL family
*/
int get_family_id(int sd)
{
struct {
struct nlmsghdr n;
struct genlmsghdr g;
char buf[256];
} family_req;
struct {
struct nlmsghdr n;
struct genlmsghdr g;
char buf[256];
} ans;
int id;
struct nlattr *na;
int rep_len;
/* Get family name */
family_req.n.nlmsg_type = GENL_ID_CTRL;
family_req.n.nlmsg_flags = NLM_F_REQUEST;
family_req.n.nlmsg_seq = 0;
family_req.n.nlmsg_pid = getpid();
family_req.n.nlmsg_len = NLMSG_LENGTH(GENL_HDRLEN);
family_req.g.cmd = CTRL_CMD_GETFAMILY;
family_req.g.version = 0x1;
na = (struct nlattr *) GENLMSG_DATA(&family_req);
na->nla_type = CTRL_ATTR_FAMILY_NAME;
/*------change here--------*/
na->nla_len = strlen("CONTROL_EXMPL") + 1 + NLA_HDRLEN;
strcpy(NLA_DATA(na), "CONTROL_EXMPL");
family_req.n.nlmsg_len += NLMSG_ALIGN(na->nla_len);
if (sendto_fd(sd, (char *) &family_req, family_req.n.nlmsg_len) < 0)
return -1;
rep_len = recv(sd, &ans, sizeof(ans), 0);
if (rep_len < 0){
perror("recv");
return -1;
}
/* Validate response message */
if (!NLMSG_OK((&ans.n), rep_len)){
fprintf(stderr, "invalid reply message\n");
return -1;
}
if (ans.n.nlmsg_type == NLMSG_ERROR) { /* error */
fprintf(stderr, "received error\n");
return -1;
}
na = (struct nlattr *) GENLMSG_DATA(&ans);
na = (struct nlattr *) ((char *) na + NLA_ALIGN(na->nla_len));
if (na->nla_type == CTRL_ATTR_FAMILY_ID) {
id = *(__u16 *) NLA_DATA(na);
}
return id;
}
int main(){
nl_sd = create_nl_socket(NETLINK_GENERIC,0);
if(nl_sd < 0){
printf("create failure\n");
return 0;
}
int id = get_family_id(nl_sd);
struct {
struct nlmsghdr n;
struct genlmsghdr g;
char buf[256];
} ans;
struct {
struct nlmsghdr n;
struct genlmsghdr g;
char buf[256];
} req;
struct nlattr *na;
/* Send command needed */
req.n.nlmsg_len = NLMSG_LENGTH(GENL_HDRLEN);
req.n.nlmsg_type = id;
req.n.nlmsg_flags = NLM_F_REQUEST;
req.n.nlmsg_seq = 60;
req.n.nlmsg_pid = getpid();
req.g.cmd = 1;//DOC_EXMPL_C_ECHO;
/*compose message*/
na = (struct nlattr *) GENLMSG_DATA(&req);
na->nla_type = 1; //DOC_EXMPL_A_MSG
char * message = "hello world!"; //message
int mlength = 14;
na->nla_len = mlength+NLA_HDRLEN; //message length
memcpy(NLA_DATA(na), message, mlength);
req.n.nlmsg_len += NLMSG_ALIGN(na->nla_len);
/*send message*/
struct sockaddr_nl nladdr;
int r;
memset(&nladdr, 0, sizeof(nladdr));
nladdr.nl_family = AF_NETLINK;
r = sendto(nl_sd, (char *)&req, req.n.nlmsg_len, 0,
(struct sockaddr *) &nladdr, sizeof(nladdr));
int rep_len = recv(nl_sd, &ans, sizeof(ans), 0);
/* Validate response message */
if (ans.n.nlmsg_type == NLMSG_ERROR) { /* error */
printf("error received NACK - leaving \n");
return -1;
}
if (rep_len < 0) {
printf("error receiving reply message via Netlink \n");
return -1;
}
if (!NLMSG_OK((&ans.n), rep_len)) {
printf("invalid reply message received via Netlink\n");
return -1;
}
rep_len = GENLMSG_PAYLOAD(&ans.n);
/*parse reply message*/
na = (struct nlattr *) GENLMSG_DATA(&ans);
char * result = (char *)NLA_DATA(na);
printf("kernel says: %s\n",result);
close(nl_sd);
}