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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
|
/* Copyright © 2006 Roger Leigh <rleigh@debian.org>
*
* schroot 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 2 of the License, or
* (at your option) any later version.
*
* schroot 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., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*********************************************************************/
#include <config.h>
#include "sbuild-personality.h"
#include <cstring>
#include <cerrno>
#include <utility>
#ifdef __linux__
#include <sys/personality.h>
#endif
#include <boost/format.hpp>
using boost::format;
using namespace sbuild;
namespace
{
typedef std::pair<sbuild::personality::error_code,const char *> emap;
/**
* This is a list of the supported error codes. It's used to
* construct the real error codes map.
*/
emap init_errors[] =
{
emap(sbuild::personality::SET, N_("Failed to set personality"))
};
typedef std::pair<std::string,sbuild::personality::type> pmap;
/**
* This is a list of the supported personalities. It's used to
* construct the real personalities map.
*/
pmap initial_personalities[] =
{
pmap("undefined", 0xffffffff),
#ifdef __linux__
pmap("linux", PER_LINUX),
pmap("linux_32bit", PER_LINUX_32BIT),
pmap("svr4", PER_SVR4),
pmap("scorvr3", PER_SCOSVR3),
pmap("osr5", PER_OSR5),
pmap("wysev386", PER_WYSEV386),
pmap("iscr4", PER_ISCR4),
pmap("bsd", PER_BSD),
pmap("sunos", PER_SUNOS),
pmap("xenix", PER_XENIX),
pmap("linux32", PER_LINUX32),
pmap("irix32", PER_IRIX32),
pmap("irixn32", PER_IRIXN32),
pmap("irix64", PER_IRIX64),
pmap("riscos", PER_RISCOS),
pmap("solaris", PER_SOLARIS),
pmap("uw7", PER_UW7),
pmap("hpux", PER_HPUX),
pmap("osf4", PER_OSF4),
#endif
};
}
template<>
error<sbuild::personality::error_code>::map_type
error<sbuild::personality::error_code>::error_strings
(init_errors,
init_errors + (sizeof(init_errors) / sizeof(init_errors[0])));
std::map<std::string,sbuild::personality::type>
sbuild::personality::personalities(initial_personalities,
initial_personalities + (sizeof(initial_personalities) / sizeof(initial_personalities[0])));
sbuild::personality::personality ():
persona(
#ifdef __linux__
::personality(0xffffffff)
#else
0xffffffff
#endif
)
{
}
sbuild::personality::personality (type persona):
persona(persona)
{
}
sbuild::personality::personality (std::string const& persona):
persona(find_personality(persona))
{
}
sbuild::personality::~personality ()
{
}
sbuild::personality::type
sbuild::personality::find_personality (std::string const& persona)
{
std::map<std::string,type>::const_iterator pos =
personalities.find(persona);
if (pos != personalities.end())
return pos->second;
return 0xffffffff;
}
std::string const&
sbuild::personality::find_personality (type persona)
{
static const std::string unknown("unknown");
for (std::map<std::string,type>::const_iterator pos = personalities.begin();
pos != personalities.end();
++pos)
if (pos->second == persona)
return pos->first;
return unknown;
}
std::string const&
sbuild::personality::get_name () const
{
return find_personality(this->persona);
}
sbuild::personality::type
sbuild::personality::get () const
{
return this->persona;
}
void
sbuild::personality::set () const
{
#ifdef __linux__
/* Set the process execution domain using personality(2). */
if (this->persona != 0xffffffff &&
::personality (this->persona) < 0)
{
throw error(get_name(), SET, strerror(errno));
}
#endif
}
void
sbuild::personality::print_personalities (std::ostream& stream)
{
for (std::map<std::string,type>::const_iterator pos = personalities.begin();
pos != personalities.end();
++pos)
{
stream << pos->first;
std::map<std::string,type>::const_iterator stpos = pos;
if (++stpos != personalities.end())
stream << ", ";
}
}
/*
* Local Variables:
* mode:C++
* End:
*/
|