This file is indexed.

/usr/include/afflib/utils.h is in libafflib-dev 3.7.7-3.

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
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
/*
 * utils.h:
 * Some useful utilities for building AFF-aware programs.
 * Distributed under the Berkeley 4-part license
 */

#ifndef AFF_UTILS_H
#define AFF_UTILS_H

#ifdef __cplusplus
#ifdef HAVE_STL
#include <algorithm>
#include <cstdlib>
#include <vector>
#include <string>
#include <cstring>
#include <map>
#include <iostream>
#endif

#ifdef HAVE_OPENSSL_PEM_H
#include <openssl/x509.h>
#include <openssl/pem.h>
#else
typedef void X509;
typedef void EVP_PKEY;
typedef void BIO;
#define BIO_free free
#endif

namespace aff {

#ifdef HAVE_STL
    std::string command_line(int argc,char **argv);
    bool ends_with(std::string str,std::string ending);
#endif
    bool ends_with(const char *buf,const char *with);

    /* Structure for hash map */
    struct less_c_str
    {
	inline bool operator()( const char* x, const char* y) const
	{     return ( strcmp( x,y ) < 0 );
	}
    };

    struct md5blob {
	unsigned char buf[16];
    };

#ifdef HAVE_STL
    typedef std::map< const char*, struct md5blob, less_c_str > hashMapT;

    /* The seginfo stores information about a segment other than its data*/
    class seginfo {
    public:
	seginfo(std::string n1,size_t l1,unsigned int a1): name(n1),len(l1),arg(a1) {}
	std::string name;
	size_t len;
	unsigned long arg;
	/** pagenumber returns <0 for invalid pages, >= for a page */
	int64_t pagenumber() const {return af_segname_page_number(name.c_str());}
	bool inline operator==(const class seginfo &b) const {
	    return name == b.name;
	}
	virtual ~seginfo(){};
    };

    /* the seglist provides AFF internal functions and tools an easy way to get
     * a list of all of the segments in the currently open AFF file.
     * Use the seglist(af) constructor to populate it with all the segments
     * when you create. Each element is populated with the name, length and arg.
     */
    class seglist : public std::vector<seginfo> {
    public:
	bool contains(std::string segname);
	bool has_signed_segments();
	int get_seglist(AFFILE *af);
	seglist(){}
	virtual ~seglist(){}
	seglist(AFFILE *af){
	    get_seglist(af);
	}
    };
#endif
}
#endif

#endif