ima_template_lib.h 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * Copyright (C) 2013 Politecnico di Torino, Italy
  3. * TORSEC group -- http://security.polito.it
  4. *
  5. * Author: Roberto Sassu <roberto.sassu@polito.it>
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation, version 2 of the
  10. * License.
  11. *
  12. * File: ima_template_lib.h
  13. * Header for the library of supported template fields.
  14. */
  15. #ifndef __LINUX_IMA_TEMPLATE_LIB_H
  16. #define __LINUX_IMA_TEMPLATE_LIB_H
  17. #include <linux/seq_file.h>
  18. #include "ima.h"
  19. void ima_show_template_digest(struct seq_file *m, enum ima_show_type show,
  20. struct ima_field_data *field_data);
  21. void ima_show_template_string(struct seq_file *m, enum ima_show_type show,
  22. struct ima_field_data *field_data);
  23. int ima_eventdigest_init(struct integrity_iint_cache *iint, struct file *file,
  24. const unsigned char *filename,
  25. struct ima_field_data *field_data);
  26. int ima_eventname_init(struct integrity_iint_cache *iint, struct file *file,
  27. const unsigned char *filename,
  28. struct ima_field_data *field_data);
  29. #endif /* __LINUX_IMA_TEMPLATE_LIB_H */