-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFanotify.xs
714 lines (608 loc) · 12.2 KB
/
Fanotify.xs
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
/*
* Copyright (C) 2014 Bastian Friedrich
* <[email protected]> / <[email protected]>
*/
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#include <pwd.h>
#include <unistd.h>
#include <sys/fanotify.h>
#include "const-c.inc"
/*
*******************************************************************************
* Code documentation for perl methods and functions can be found in the
* module's pod
*******************************************************************************
*/
#define PERLCLASS_NOTGRP "Linux::Fanotify::FanotifyGroup"
#define PERLCLASS_EVENT "Linux::Fanotify::Event"
/*
* We don't want to expose functionality to write one event's fd to a
* notification group where it did not originate. fanotify_bundle
* is the event metadata, plus its originating notification group
*/
struct fanotify_bundle {
struct fanotify_event_metadata metadata;
int fd; /* Notification group fd */
unsigned short int needs_response;
};
/*
* Convert a perl SV for a notification group to a file descriptor
*/
int
notgrp2fd(SV *notgrp, int *dst) {
SV *sv;
if (!SvROK(notgrp)) {
/* No RV */
return 0;
}
if (!sv_isobject(notgrp) || !sv_isa(notgrp, PERLCLASS_NOTGRP)) {
/* No notification group obj */
return 0;
}
sv = SvRV(notgrp);
if (!SvIOK(sv)) {
/* No int */
return 0;
}
*dst = SvIV(sv);
return 1;
}
/*
* Convert a perl SV for a fanotify_bundle (metadata plus fanotify group fd) to
* a fanotify_bundle structure
*/
struct fanotify_bundle *
event2bundle(SV *event) {
SV *deref;
if (!SvROK(event)) {
/* No RV */
return NULL;
}
if (!sv_isobject(event) || !sv_isa(event, PERLCLASS_EVENT)) {
/* No notification group obj */
return NULL;
}
deref = SvRV(event);
if (!deref) {
return NULL;
}
return (struct fanotify_bundle *)SvPV_nolen(deref);
}
/*
* Convert a notification event bundle to a string.
* Intended for debugging purposes only.
*/
char *
event2str(const struct fanotify_bundle *bundle, char *buf, int len) {
const struct fanotify_event_metadata *event = &(bundle->metadata);
char *fmt = "event at %p is: event_len = %d, vers = %d, reserved = %d, meta_len = %d, mask = %lld, fd = %d, pid = %d (fanotify group fd %d)";
if (snprintf(buf, len, fmt,
event, event->event_len, event->vers, event->reserved, event->metadata_len, event->mask, event->fd, event->pid, bundle->fd) >= len) {
buf[len-1] = 0;
}
return buf;
}
/*
* Print an event's contents on the screen
*/
void
dumpEvent(const struct fanotify_bundle *bundle) {
char buf[256];
event2str(bundle, buf, sizeof(buf));
printf("%s\n", buf);
}
int
_event_write_response(SV *event, int response) {
struct fanotify_bundle *bundle;
struct fanotify_response rsp;
int fd;
int ret;
if (!(bundle = event2bundle(event))) {
Perl_croak(aTHX_ "Invalid event object");
}
if (!bundle->needs_response) {
Perl_croak(aTHX_ "Event already responded to or non-respondable event");
}
/* only ALLOW and DENY are available/sensible responses */
if ((response != FAN_ALLOW) && (response != FAN_DENY)) {
Perl_croak(aTHX_ "Response is neither FAN_ALLOW nor FAN_DENY; refusing to write invalid response");
}
fd = bundle->fd;
rsp.fd = bundle->metadata.fd;
rsp.response = response;
ret = write(fd, &rsp, sizeof(struct fanotify_response));
if (ret >= 0) {
bundle->needs_response = 0;
}
return ret;
}
int
_event_close(SV *self) {
struct fanotify_bundle *bundle;
int ret;
SV *sv_default_response;
int default_response = FAN_DENY;
if (!(bundle = event2bundle(self))) {
Perl_croak(aTHX_ "Invalid event object");
}
if ((sv_default_response = get_sv("Linux::Fanotify::default_response", 0))) {
default_response = SvIV(sv_default_response);
if (default_response == -1) {
default_response = FAN_DENY;
}
}
if (bundle->needs_response) {
if (default_response) {
_event_write_response(self, default_response);
}
}
if (bundle->metadata.fd > 0) {
ret = close(bundle->metadata.fd);
if (ret == 0) {
bundle->metadata.fd = -1;
}
} else {
errno = EBADF;
ret = -1;
}
return ret;
}
/*
*******************************************************************************
* Main package: Linux::Fanotify
*/
MODULE = Linux::Fanotify PACKAGE = Linux::Fanotify
PROTOTYPES: ENABLE
INCLUDE: const-xs.inc
#
#
#
SV *
fanotify_init(flags, event_f_flags)
unsigned int flags
unsigned int event_f_flags
INIT:
int fd;
SV *notgrp;
CODE:
fd = fanotify_init(flags, event_f_flags);
if (fd == -1) {
XSRETURN_UNDEF;
}
notgrp = newSV(0);
sv_setref_iv(notgrp, PERLCLASS_NOTGRP, fd);
SvREADONLY_on(SvRV(notgrp));
RETVAL = notgrp;
OUTPUT:
RETVAL
#
#
#
int
fanotify_mark(notgrp, flags, mask = 0, dirfd = 0, pathname = NULL)
SV *notgrp
unsigned int flags
uint64_t mask
int dirfd
const char *pathname
INIT:
int ret;
int fd = -1;
CODE:
if (!notgrp2fd(notgrp, &fd)) {
Perl_croak(aTHX_ "Invalid fanotify_fd");
} else {
ret = fanotify_mark(fd, flags, mask, dirfd, pathname);
if (ret == -1) {
XSRETURN_UNDEF;
}
}
RETVAL = 1;
OUTPUT:
RETVAL
#
#
#
void
fanotify_read(notgrp, max = 0)
SV *notgrp
int max
INIT:
struct fanotify_event_metadata *buf;
const struct fanotify_event_metadata *metadata;
struct fanotify_bundle *bundle;
ssize_t len;
int size;
int fd;
SV *event;
SV *eventref;
PPCODE:
/*
* Check arguments and allocate read buffer
*/
if (max < 1) {
max = 170; // Results in a buffer slightly smaller than 4k
}
if (max > 4096) { // 4096 results in an almost 100k buffer. Don't allow more.
Perl_croak(aTHX_ "Maximum buffer size exceeded (max = 4096)");
}
if (!notgrp2fd(notgrp, &fd)) {
Perl_croak(aTHX_ "Invalid notification group object");
}
size = max * sizeof(struct fanotify_event_metadata);
buf = (struct fanotify_event_metadata *)malloc(size + (sizeof(struct fanotify_bundle) - sizeof(struct fanotify_event_metadata)));
if (!buf) {
Perl_croak(aTHX_ "Could not allocate memory");
}
/*
* Read from fanotify queue
*/
len = read(fd, (void *)buf, size);
if (len == -1) {
/* Read error. errno is already set, we simply return an empty list and expect the user to check errno */
free(buf);
XSRETURN_EMPTY;
}
// printf("Number of event structures: %d\n",
// len/sizeof(struct fanotify_event_metadata));
metadata = buf;
while (FAN_EVENT_OK(metadata, len)) {
if (metadata->vers != FANOTIFY_METADATA_VERSION) {
Perl_croak(aTHX_ "Mismatch of fanotify metadata version.");
}
event = newSVpvn((const char *)metadata, sizeof(struct fanotify_bundle));
sv_2mortal(event);
bundle = (struct fanotify_bundle *)SvPV_nolen(event);
bundle->fd = fd;
if (metadata->mask & (FAN_ACCESS_PERM | FAN_OPEN_PERM)) {
bundle->needs_response = 1;
} else {
bundle->needs_response = 0;
}
eventref = newRV_inc(event);
sv_bless(eventref, gv_stashpv(PERLCLASS_EVENT, GV_ADD | SVf_UTF8));
SvREADONLY_on(eventref);
sv_2mortal(eventref);
XPUSHs(eventref);
metadata = FAN_EVENT_NEXT(metadata, len);
}
free(buf);
#
#
#
int
fanotify_write(event, response)
SV *event
int response
INIT:
int ret;
CODE:
ret = _event_write_response(event, response);
if (ret == -1) {
XSRETURN_UNDEF;
}
RETVAL = ret;
OUTPUT:
RETVAL
# /*
# *******************************************************************************
# * Main package: Linux::Fanotify::FanotifyGroup
# */
MODULE = Linux::Fanotify PACKAGE = Linux::Fanotify::FanotifyGroup PREFIX = fanogrp_
#
#
#
int
fanogrp_getfd(self)
SV *self
INIT:
int fd;
CODE:
if (!notgrp2fd(self, &fd)) {
Perl_croak(aTHX_ "Invalid notification group object");
}
if (fd > 0) {
RETVAL = fd;
} else {
XSRETURN_UNDEF;
}
OUTPUT:
RETVAL
#
#
#
int
fanogrp_close(self)
SV *self
INIT:
int fd;
SV *deref;
int ret;
CODE:
if (!notgrp2fd(self, &fd)) {
Perl_croak(aTHX_ "Invalid notification group object");
}
if (fd > 0) {
ret = close(fd);
deref = SvRV(self);
SvIV_set(deref, -1);
} else {
ret = -1;
errno = EBADF;
}
// Convert C style 0/-1 to perl style 1/undef
if (ret == -1) {
XSRETURN_UNDEF;
} else {
ret = 1;
}
RETVAL = ret;
OUTPUT:
RETVAL
#
#
#
void
fanogrp_DESTROY(self)
SV *self
INIT:
int fd;
int autoclose = 1;
SV *sv_autoclose;
CODE:
if (!notgrp2fd(self, &fd)) {
Perl_croak(aTHX_ "Invalid notification group object");
}
if (fd > 0) {
if ((sv_autoclose = get_sv("Linux::Fanotify::FanotifyGroup::autoclose", 0))) {
autoclose = SvIV(sv_autoclose);
}
if (autoclose) {
close(fd);
}
}
# /*
# *******************************************************************************
# * Main package: Linux::Fanotify::Event
# */
MODULE = Linux::Fanotify PACKAGE = Linux::Fanotify::Event PREFIX = event_
#
#
#
int
event_close(self)
SV *self
INIT:
int ret;
CODE:
ret = _event_close(self);
if (ret == -1) {
XSRETURN_UNDEF;
} else {
ret = 1;
}
RETVAL = ret;
OUTPUT:
RETVAL
#
#
#
void
event_DESTROY(self)
SV *self
INIT:
int autoclose = 1;
SV *sv_autoclose;
CODE:
if ((sv_autoclose = get_sv("Linux::Fanotify::Event::autoclose", 0))) {
autoclose = SvIV(sv_autoclose);
}
if (autoclose) {
_event_close(self);
}
#
#
#
int
event_needsResponse(self)
SV *self
INIT:
struct fanotify_bundle *bundle;
CODE:
if (!(bundle = event2bundle(self))) {
Perl_croak(aTHX_ "Invalid event object");
}
RETVAL = bundle->needs_response;
OUTPUT:
RETVAL
#
#
#
int
event__write(self, response)
SV *self
int response
INIT:
int ret;
CODE:
ret = _event_write_response(self, response);
if (ret == -1) {
XSRETURN_UNDEF;
}
RETVAL = ret;
OUTPUT:
RETVAL
#
#
#
int
event_allow(self)
SV *self
INIT:
int ret;
CODE:
ret = _event_write_response(self, FAN_ALLOW);
if (ret == -1) {
XSRETURN_UNDEF;
}
RETVAL = ret;
OUTPUT:
RETVAL
#
#
#
int
event_deny(self)
SV *self
INIT:
int ret;
CODE:
ret = _event_write_response(self, FAN_DENY);
if (ret == -1) {
XSRETURN_UNDEF;
}
RETVAL = ret;
OUTPUT:
RETVAL
#
#
#
void
event__dump(self)
SV *self
INIT:
struct fanotify_bundle *bundle;
char buf[256];
CODE:
if (!(bundle = event2bundle(self))) {
Perl_croak(aTHX_ "Invalid event object");
}
printf("object dump --\n%s\n",
event2str(bundle, buf, sizeof(buf)));
#
#
#
SV *
event__stringify(self)
SV *self
INIT:
struct fanotify_bundle *bundle;
char buf[256];
SV *s;
CODE:
if (!(bundle = event2bundle(self))) {
Perl_croak(aTHX_ "Invalid event object");
}
event2str(bundle, buf, sizeof(buf));
s = newSVpvn_utf8(buf, strlen(buf), 1);
// sv_2mortal(s); // XXX XXX Needed?
RETVAL = s;
OUTPUT:
RETVAL
################################################################################
# Accessor methods start here
#
unsigned int
event_event_len(self)
SV *self
INIT:
struct fanotify_bundle *bundle;
CODE:
if (!(bundle = event2bundle(self))) {
Perl_croak(aTHX_ "Invalid event object");
}
RETVAL = bundle->metadata.event_len;
OUTPUT:
RETVAL
#
#
#
unsigned int
event_vers(self)
SV *self
INIT:
struct fanotify_bundle *bundle;
CODE:
if (!(bundle = event2bundle(self))) {
Perl_croak(aTHX_ "Invalid event object");
}
RETVAL = bundle->metadata.vers;
OUTPUT:
RETVAL
#
#
#
unsigned int
event_reserved(self)
SV *self
INIT:
struct fanotify_bundle *bundle;
CODE:
if (!(bundle = event2bundle(self))) {
Perl_croak(aTHX_ "Invalid event object");
}
RETVAL = bundle->metadata.reserved;
OUTPUT:
RETVAL
#
#
#
unsigned int
event_metadata_len(self)
SV *self
INIT:
struct fanotify_bundle *bundle;
CODE:
if (!(bundle = event2bundle(self))) {
Perl_croak(aTHX_ "Invalid event object");
}
RETVAL = bundle->metadata.metadata_len;
OUTPUT:
RETVAL
#
#
#
uint64_t
event_mask(self)
SV *self
INIT:
struct fanotify_bundle *bundle;
CODE:
if (!(bundle = event2bundle(self))) {
Perl_croak(aTHX_ "Invalid event object");
}
RETVAL = bundle->metadata.mask;
OUTPUT:
RETVAL
#
#
#
int
event_fd(self)
SV *self
INIT:
struct fanotify_bundle *bundle;
CODE:
if (!(bundle = event2bundle(self))) {
Perl_croak(aTHX_ "Invalid event object");
}
RETVAL = bundle->metadata.fd;
OUTPUT:
RETVAL
#
#
#
int
event_pid(self)
SV *self
INIT:
struct fanotify_bundle *bundle;
CODE:
if (!(bundle = event2bundle(self))) {
Perl_croak(aTHX_ "Invalid event object");
}
RETVAL = bundle->metadata.pid;
OUTPUT:
RETVAL