module.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * module.c
  3. *
  4. * Copyright (C) 2018 Aleksandar Andrejevic <theflash@sdf.lonestar.org>
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU Affero General Public License as
  8. * published by the Free Software Foundation, either version 3 of the
  9. * License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Affero General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Affero General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #ifndef _MODULE_H_
  20. #define _MODULE_H_
  21. #include <common.h>
  22. #include <sdk/list.h>
  23. typedef dword_t (*module_load_proc_t)(const char *parameters);
  24. typedef dword_t (*module_unload_proc_t)(void);
  25. typedef struct
  26. {
  27. list_entry_t link;
  28. void *address;
  29. size_t size;
  30. } module_segment_t;
  31. typedef struct
  32. {
  33. list_entry_t link;
  34. uintptr_t physical_address;
  35. size_t size;
  36. char *name;
  37. void *base_address;
  38. module_load_proc_t load_proc;
  39. module_unload_proc_t unload_proc;
  40. list_entry_t segments;
  41. } module_t;
  42. module_t *get_module_from_address(void *address);
  43. dword_t module_load_from_physical(module_t *module, const char *parameters);
  44. dword_t module_unload(module_t *module);
  45. #endif