-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproc.c
More file actions
208 lines (191 loc) · 6.35 KB
/
proc.c
File metadata and controls
208 lines (191 loc) · 6.35 KB
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
/* exec-notify, so you can watch your acrobat reader or vim executing "bash -c"
* commands ;-)
* Requires some 2.6.x Linux kernel with proc connector enabled.
*
* $ cc -Wall -ansi -pedantic -std=c99 exec-notify.c
*
* (C) 2007-2010 Sebastian Krahmer <krahmer@suse.de> original netlink handling
* stolen from an proc-connector example, copyright folows:
*/
/*
*
* Copyright (C) Matt Helsley, IBM Corp. 2005
* Derived from fcctl.c by Guillaume Thouvenin
* Original copyright notice follows:
*
* Copyright (C) 2005 BULL SA.
* Written by Guillaume Thouvenin <guillaume.thouvenin@bull.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "proc.h"
#include <stdio.h>
void handle_msg(struct cn_msg *cn_hdr, struct Config *c) {
char cmdline[1024], fname1[1024], ids[1024], fname2[1024], buf[1024];
int r = 0, fd, i;
FILE *f = NULL;
struct proc_event *ev = (struct proc_event *)cn_hdr->data;
snprintf(fname1, sizeof(fname1), "/proc/%d/status",
ev->event_data.exec.process_pid);
snprintf(fname2, sizeof(fname2), "/proc/%d/cmdline",
ev->event_data.exec.process_pid);
f = fopen(fname1, "r");
fd = open(fname2, O_RDONLY);
memset(&cmdline, 0, sizeof(cmdline));
memset(&ids, 0, sizeof(ids));
while (f && fgets(buf, sizeof(buf), f) != NULL) {
if (strstr(buf, "Uid")) {
strtok(buf, "\n");
snprintf(ids, sizeof(ids), "%s", buf);
}
}
if (f)
fclose(f);
if (fd > 0) {
r = read(fd, cmdline, sizeof(cmdline));
close(fd);
for (i = 0; r > 0 && i < r; ++i) {
if (cmdline[i] == 0)
cmdline[i] = ' ';
}
}
if (ev->what == PROC_EVENT_EXEC) {
// printf("%d : %s\n", ev->event_data.exec.process_pid, cmdline);
if (is_in_blocklist(cmdline, c)) {
lock_app(ev->event_data.exec.process_pid, c->password_hash);
}
}
// switch(ev->what){
// case PROC_EVENT_FORK:
// printf("FORK:parent(pid,tgid)=%d,%d\tchild(pid,tgid)=%d,%d\t[%s]\n",
// ev->event_data.fork.parent_pid,
// ev->event_data.fork.parent_tgid,
// ev->event_data.fork.child_pid,
// ev->event_data.fork.child_tgid, cmdline);
// break;
// case PROC_EVENT_EXEC:
// printf("EXEC:pid=%d,tgid=%d\t[%s]\t[%s]\n",
// ev->event_data.exec.process_pid,
// ev->event_data.exec.process_tgid, ids, cmdline);
// break;
// case PROC_EVENT_EXIT:
// printf("EXIT:pid=%d,%d\texit code=%d\n",
// ev->event_data.exit.process_pid,
// ev->event_data.exit.process_tgid,
// ev->event_data.exit.exit_code);
// break;
// case PROC_EVENT_UID:
// printf("UID:pid=%d,%d ruid=%d,euid=%d\n",
// ev->event_data.id.process_pid, ev->event_data.id.process_tgid,
// ev->event_data.id.r.ruid, ev->event_data.id.e.euid);
// break;
// default:
// break;
// }
}
int setup_proc_events(struct Config *c) {
int sk_nl;
int err;
struct sockaddr_nl my_nla, kern_nla, from_nla;
socklen_t from_nla_len;
char buff[BUFF_SIZE];
int rc = -1;
struct nlmsghdr *nl_hdr;
struct cn_msg *cn_hdr;
enum proc_cn_mcast_op *mcop_msg;
size_t recv_len = 0;
if (getuid() != 0) {
printf("Only root can start/stop the fork connector\n");
return 0;
}
setvbuf(stdout, NULL, _IONBF, 0);
/*
* Create an endpoint for communication. Use the kernel user
* interface device (PF_NETLINK) which is a datagram oriented
* service (SOCK_DGRAM). The protocol used is the connector
* protocol (NETLINK_CONNECTOR)
*/
sk_nl = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_CONNECTOR);
if (sk_nl == -1) {
printf("socket sk_nl error");
return rc;
}
my_nla.nl_family = AF_NETLINK;
my_nla.nl_groups = CN_IDX_PROC;
my_nla.nl_pid = getpid();
kern_nla.nl_family = AF_NETLINK;
kern_nla.nl_groups = CN_IDX_PROC;
kern_nla.nl_pid = 1;
err = bind(sk_nl, (struct sockaddr *)&my_nla, sizeof(my_nla));
if (err == -1) {
printf("binding sk_nl error");
goto close_and_exit;
}
nl_hdr = (struct nlmsghdr *)buff;
cn_hdr = (struct cn_msg *)NLMSG_DATA(nl_hdr);
mcop_msg = (enum proc_cn_mcast_op *)&cn_hdr->data[0];
// printf("sending proc connector: PROC_CN_MCAST_LISTEN... ");
memset(buff, 0, sizeof(buff));
*mcop_msg = PROC_CN_MCAST_LISTEN;
/* fill the netlink header */
nl_hdr->nlmsg_len = SEND_MESSAGE_LEN;
nl_hdr->nlmsg_type = NLMSG_DONE;
nl_hdr->nlmsg_flags = 0;
nl_hdr->nlmsg_seq = 0;
nl_hdr->nlmsg_pid = getpid();
/* fill the connector header */
cn_hdr->id.idx = CN_IDX_PROC;
cn_hdr->id.val = CN_VAL_PROC;
cn_hdr->seq = 0;
cn_hdr->ack = 0;
cn_hdr->len = sizeof(enum proc_cn_mcast_op);
if (send(sk_nl, nl_hdr, nl_hdr->nlmsg_len, 0) != nl_hdr->nlmsg_len) {
printf("failed to send proc connector mcast ctl op!\n");
goto close_and_exit;
}
// printf("sent\n");
if (*mcop_msg == PROC_CN_MCAST_IGNORE) {
rc = 0;
goto close_and_exit;
}
// printf("Reading process events from proc connector.\n"
// "Hit Ctrl-C to exit\n");
for (memset(buff, 0, sizeof(buff)), from_nla_len = sizeof(from_nla);;
memset(buff, 0, sizeof(buff)), from_nla_len = sizeof(from_nla)) {
struct nlmsghdr *nlh = (struct nlmsghdr *)buff;
memcpy(&from_nla, &kern_nla, sizeof(from_nla));
recv_len = recvfrom(sk_nl, buff, BUFF_SIZE, 0, (struct sockaddr *)&from_nla,
&from_nla_len);
if (from_nla.nl_pid != 0)
continue;
if (recv_len < 1)
continue;
while (NLMSG_OK(nlh, recv_len)) {
cn_hdr = NLMSG_DATA(nlh);
if (nlh->nlmsg_type == NLMSG_NOOP)
continue;
if ((nlh->nlmsg_type == NLMSG_ERROR) ||
(nlh->nlmsg_type == NLMSG_OVERRUN))
break;
handle_msg(cn_hdr, c);
if (nlh->nlmsg_type == NLMSG_DONE)
break;
nlh = NLMSG_NEXT(nlh, recv_len);
}
}
close_and_exit:
close(sk_nl);
exit(rc);
}