This file is indexed.

/usr/include/semanage/fcontexts_policy.h is in libsemanage1-dev 2.1.0-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
/* Copyright (C) 2005 Red Hat, Inc. */

#ifndef _SEMANAGE_FCONTEXTS_POLICY_H_
#define _SEMANAGE_FCONTEXTS_POLICY_H_

#include <semanage/fcontext_record.h>
#include <semanage/handle.h>

extern int semanage_fcontext_query(semanage_handle_t * handle,
				   const semanage_fcontext_key_t * key,
				   semanage_fcontext_t ** response);

extern int semanage_fcontext_exists(semanage_handle_t * handle,
				    const semanage_fcontext_key_t * key,
				    int *response);

extern int semanage_fcontext_count(semanage_handle_t * handle,
				   unsigned int *response);

extern int semanage_fcontext_iterate(semanage_handle_t * handle,
				     int (*handler) (const semanage_fcontext_t *
						     record, void *varg),
				     void *handler_arg);

extern int semanage_fcontext_list(semanage_handle_t * handle,
				  semanage_fcontext_t *** records,
				  unsigned int *count);

#endif