This file is indexed.

/usr/include/gnash/asobj/PropFlags.h is in gnash-dev 0.8.11~git20160109-1build1.

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
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
// 
//   Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
//   Free Software Foundation, Inc
// 
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 3 of the License, or
// (at your option) any later version.
// 
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
// 
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

#ifndef GNASH_AS_PROP_FLAGS_H
#define GNASH_AS_PROP_FLAGS_H

#include <ostream>
#include <cstdint>

namespace gnash {

/// Flags defining the level of protection of a member
class PropFlags
{
public:

	/// Actual flags
	enum Flags {

		/// Protect from enumeration
		dontEnum	= 1 << 0, // 1

		/// Protect from deletion
		dontDelete	= 1 << 1, // 2

		/// Protect from assigning a value
		readOnly	= 1 << 2, // 4

		/// Only visible by VM initialized for version 6 or higher 
		onlySWF6Up 	= 1 << 7, // 128

		/// Ignore in SWF6-initialized VM
		ignoreSWF6	= 1 << 8, // 256

		/// Only visible by VM initialized for version 7 or higher 
		onlySWF7Up 	= 1 << 10, // 1024

		/// Only visible by VM initialized for version 8 or higher 
		onlySWF8Up	= 1 << 12, // 4096

		/// Only visible by VM initialized for version 9 or higher 
		onlySWF9Up	= 1 << 13 // 8192

	};

	/// Default constructor
	PropFlags()
        :
        _flags(0)
	{
	}

	/// Constructor
	PropFlags(const bool read_only, const bool dont_delete,
            const bool dont_enum)
		:
		_flags(((read_only) ? readOnly : 0) |
				((dont_delete) ? dontDelete : 0) |
				((dont_enum) ? dontEnum : 0))
	{
	}

	/// Constructor, from numerical value
	PropFlags(std::uint16_t flags)
		:
        _flags(flags)
	{
	}

	bool operator==(const PropFlags& o) const {
		return (_flags == o._flags);
	}

	bool operator!=(const PropFlags& o) const {
        return !(*this == o);
	}

    template<Flags f>
    bool test() const {
        return (_flags & f);
    }

	/// Get version-based visibility 
	bool get_visible(int swfVersion) const {
		if (test<onlySWF6Up>() && swfVersion < 6) return false;
		if (test<ignoreSWF6>() && swfVersion == 6) return false;
		if (test<onlySWF7Up>() && swfVersion < 7) return false;
		if (test<onlySWF8Up>() && swfVersion < 8) return false;
		if (test<onlySWF9Up>() && swfVersion < 9) return false;
		return true;
	}

	void clear_visible(int swfVersion) {
		if (swfVersion == 6) {
			// version 6, so let's forget onlySWF7Up flag!
			// we will still set the value though, even if that flag is set
			_flags &= ~(onlySWF6Up|ignoreSWF6|onlySWF8Up|onlySWF9Up);
		}
		else {
			_flags &= ~(onlySWF6Up|ignoreSWF6|onlySWF7Up|onlySWF8Up|onlySWF9Up);
		}
	}

	/// accessor to the numerical flags value
    std::uint16_t get_flags() const { return _flags; }

	/// set the numerical flags value (return the new value )
	/// If unlocked is false, you cannot un-protect from over-write,
	/// you cannot un-protect from deletion and you cannot
	/// un-hide from the for..in loop construct
	///
	/// @param setTrue  the set of flags to set
	/// @param setFalse the set of flags to clear
	/// @return         true on success, false on failure (is protected)
	bool set_flags(std::uint16_t setTrue, std::uint16_t setFalse = 0) {
		_flags &= ~setFalse;
		_flags |= setTrue;
		return true;
	}

private:

	/// Numeric flags
    std::uint16_t _flags;

};

inline std::ostream&
operator<<(std::ostream& os, const PropFlags& fl)
{
	os << "(";
	if (fl.test<PropFlags::readOnly>()) os << " readonly";
	if (fl.test<PropFlags::dontDelete>()) os << " nodelete";
	if (fl.test<PropFlags::dontEnum>()) os << " noenum";
	os << " )";
	return os;
}



} // namespace gnash

#endif // GNASH_AS_PROP_FLAGS_H