mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 07:12:18 +00:00
2a709f28fa
* 0day explit mitigation * Memory corruption prevention * Privilege escalation prevention * Buffer over flow prevention * File System corruption defense * Thread escape prevention This may very well be the most intensive inclusion to BrooklynR. This will not be part of an x86 suite nor it will be released as tool kit. The security core toolkit will remain part of kernel base.
20 lines
506 B
C
20 lines
506 B
C
/*
|
|
* kobj_map.h
|
|
*/
|
|
|
|
#ifndef _KOBJ_MAP_H_
|
|
#define _KOBJ_MAP_H_
|
|
|
|
#include <linux/mutex.h>
|
|
|
|
typedef struct kobject *kobj_probe_t(dev_t, int *, void *);
|
|
struct kobj_map;
|
|
|
|
int kobj_map(struct kobj_map *, dev_t, unsigned long, struct module *,
|
|
kobj_probe_t *, int (*)(dev_t, void *), void *);
|
|
void kobj_unmap(struct kobj_map *, dev_t, unsigned long);
|
|
struct kobject *kobj_lookup(struct kobj_map *, dev_t, int *);
|
|
struct kobj_map *kobj_map_init(kobj_probe_t *, struct mutex *);
|
|
|
|
#endif /* _KOBJ_MAP_H_ */
|