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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
|
/* Copyright © 2005-2008 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 3 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, see
* <http://www.gnu.org/licenses/>.
*
*********************************************************************/
#include <config.h>
#include "sbuild-chroot.h"
#include "sbuild-chroot-directory.h"
#include "sbuild-chroot-plain.h"
#include "sbuild-chroot-file.h"
#ifdef SBUILD_FEATURE_BLOCKDEV
#include "sbuild-chroot-block-device.h"
#endif // SBUILD_FEATURE_BLOCKDEV
#ifdef SBUILD_FEATURE_LOOPBACK
#include "sbuild-chroot-loopback.h"
#endif // SBUILD_FEATURE_LOOPBACK
#ifdef SBUILD_FEATURE_LVMSNAP
#include "sbuild-chroot-lvm-snapshot.h"
#endif // SBUILD_FEATURE_LVMSNAP
#include "sbuild-lock.h"
#include <cerrno>
#include <map>
#include <utility>
#include <ext/stdio_filebuf.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <boost/format.hpp>
using boost::format;
using namespace sbuild;
namespace
{
typedef std::pair<sbuild::chroot::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::chroot::CHROOT_CREATE, N_("Chroot creation failed")),
emap(sbuild::chroot::CHROOT_DEVICE, N_("Device name not set")),
// TRANSLATORS: %1% = chroot type name
emap(sbuild::chroot::CHROOT_TYPE, N_("Unknown chroot type '%1%'")),
emap(sbuild::chroot::DEVICE_ABS, N_("Device must have an absolute path")),
emap(sbuild::chroot::DEVICE_LOCK, N_("Failed to lock device")),
emap(sbuild::chroot::DEVICE_NOTBLOCK, N_("File is not a block device")),
emap(sbuild::chroot::DEVICE_UNLOCK, N_("Failed to unlock device")),
emap(sbuild::chroot::DIRECTORY_ABS, N_("Directory must have an absolute path")),
emap(sbuild::chroot::FILE_ABS, N_("File must have an absolute path")),
emap(sbuild::chroot::FILE_LOCK, N_("Failed to acquire file lock")),
emap(sbuild::chroot::FILE_NOTREG, N_("File is not a regular file")),
emap(sbuild::chroot::FILE_OWNER, N_("File is not owned by user root")),
emap(sbuild::chroot::FILE_PERMS, N_("File has write permissions for others")),
emap(sbuild::chroot::FILE_UNLOCK, N_("Failed to discard file lock")),
emap(sbuild::chroot::LOCATION_ABS, N_("Location must have an absolute path")),
// TRANSLATORS: unlink refers to the C function which removes a file
emap(sbuild::chroot::SESSION_UNLINK, N_("Failed to unlink session file")),
emap(sbuild::chroot::SESSION_WRITE, N_("Failed to write session file"))
};
}
template<>
error<sbuild::chroot::error_code>::map_type
error<sbuild::chroot::error_code>::error_strings
(init_errors,
init_errors + (sizeof(init_errors) / sizeof(init_errors[0])));
sbuild::chroot::chroot ():
name(),
session_id(),
description(),
priority(0),
users(),
groups(),
root_users(),
root_groups(),
aliases(),
environment_filter(SBUILD_DEFAULT_ENVIRONMENT_FILTER),
mount_location(),
active(false),
original(true),
run_setup_scripts(true),
script_config("script-defaults"),
command_prefix(),
persona(
#ifdef __linux__
personality("linux")
#else
personality("undefined")
#endif
)
{
}
sbuild::chroot::~chroot ()
{
}
sbuild::chroot::ptr
sbuild::chroot::create (std::string const& type)
{
chroot *new_chroot = 0;
if (type == "directory")
new_chroot = new chroot_directory();
else if (type == "plain")
new_chroot = new chroot_plain();
else if (type == "file")
new_chroot = new chroot_file();
#ifdef SBUILD_FEATURE_BLOCKDEV
else if (type == "block-device")
new_chroot = new chroot_block_device();
#endif // SBUILD_FEATURE_BLOCKDEV
#ifdef SBUILD_FEATURE_LOOPBACK
else if (type == "loopback")
new_chroot = new chroot_loopback();
#endif // SBUILD_FEATURE_LOOPBACK
#ifdef SBUILD_FEATURE_LVMSNAP
else if (type == "lvm-snapshot")
new_chroot = new chroot_lvm_snapshot();
#endif // SBUILD_FEATURE_LVMSNAP
else
throw error(type, CHROOT_TYPE);
if (new_chroot == 0)
throw error(CHROOT_CREATE);
return ptr(new_chroot);
}
std::string const&
sbuild::chroot::get_name () const
{
return this->name;
}
void
sbuild::chroot::set_name (std::string const& name)
{
this->name = name;
}
std::string const&
sbuild::chroot::get_session_id () const
{
return this->session_id;
}
void
sbuild::chroot::set_session_id (std::string const& session_id)
{
if (get_session_flags() & chroot::SESSION_CREATE)
{
this->session_id = session_id;
set_name(session_id);
set_aliases(string_list());
}
}
std::string const&
sbuild::chroot::get_keyfile_name () const
{
if (get_active())
return this->session_id;
else
return this->name;
}
std::string const&
sbuild::chroot::get_description () const
{
return this->description;
}
void
sbuild::chroot::set_description (std::string const& description)
{
this->description = description;
}
std::string const&
sbuild::chroot::get_mount_location () const
{
return this->mount_location;
}
void
sbuild::chroot::set_mount_location (std::string const& location)
{
if (!location.empty() && !is_absname(location))
throw error(location, LOCATION_ABS);
this->mount_location = location;
}
unsigned int
sbuild::chroot::get_priority () const
{
return this->priority;
}
void
sbuild::chroot::set_priority (unsigned int priority)
{
this->priority = priority;
}
string_list const&
sbuild::chroot::get_users () const
{
return this->users;
}
void
sbuild::chroot::set_users (string_list const& users)
{
this->users = users;
}
string_list const&
sbuild::chroot::get_groups () const
{
return this->groups;
}
void
sbuild::chroot::set_groups (string_list const& groups)
{
this->groups = groups;
}
string_list const&
sbuild::chroot::get_root_users () const
{
return this->root_users;
}
void
sbuild::chroot::set_root_users (string_list const& users)
{
this->root_users = users;
}
string_list const&
sbuild::chroot::get_root_groups () const
{
return this->root_groups;
}
void
sbuild::chroot::set_root_groups (string_list const& groups)
{
this->root_groups = groups;
}
string_list const&
sbuild::chroot::get_aliases () const
{
return this->aliases;
}
void
sbuild::chroot::set_aliases (string_list const& aliases)
{
this->aliases = aliases;
}
regex const&
sbuild::chroot::get_environment_filter () const
{
return this->environment_filter;
}
void
sbuild::chroot::set_environment_filter (regex const& environment_filter)
{
this->environment_filter = environment_filter;
}
bool
sbuild::chroot::get_active () const
{
return this->active;
}
void
sbuild::chroot::set_active (bool active)
{
this->active = active;
}
bool
sbuild::chroot::get_original () const
{
return this->original;
}
void
sbuild::chroot::set_original (bool original)
{
this->original = original;
}
bool
sbuild::chroot::get_run_setup_scripts () const
{
return this->run_setup_scripts;
}
void
sbuild::chroot::set_run_setup_scripts (bool run_setup_scripts)
{
this->run_setup_scripts = run_setup_scripts;
}
std::string const&
sbuild::chroot::get_script_config () const
{
return this->script_config;
}
void
sbuild::chroot::set_script_config (std::string const& script_config)
{
this->script_config = script_config;
}
string_list const&
sbuild::chroot::get_command_prefix () const
{
return this->command_prefix;
}
void
sbuild::chroot::set_command_prefix (string_list const& command_prefix)
{
this->command_prefix = command_prefix;
}
personality const&
sbuild::chroot::get_persona () const
{
return this->persona;
}
void
sbuild::chroot::set_persona (personality const& persona)
{
this->persona = persona;
}
void
sbuild::chroot::setup_env (environment& env)
{
env.add("CHROOT_TYPE", get_chroot_type());
env.add("CHROOT_NAME", get_name());
env.add("CHROOT_DESCRIPTION", get_description());
env.add("CHROOT_MOUNT_LOCATION", get_mount_location());
env.add("CHROOT_PATH", get_path());
env.add("CHROOT_SCRIPT_CONFIG", normalname(std::string(PACKAGE_SYSCONF_DIR) + '/' + get_script_config()));
env.add("CHROOT_SESSION_CREATE",
static_cast<bool>(get_session_flags() & SESSION_CREATE));
env.add("CHROOT_SESSION_CLONE",
static_cast<bool>(get_session_flags() & SESSION_CLONE));
env.add("CHROOT_SESSION_PURGE",
static_cast<bool>(get_session_flags() & SESSION_PURGE));
}
void
sbuild::chroot::setup_session_info (bool start)
{
/* Create or unlink session information. */
std::string file = std::string(SCHROOT_SESSION_DIR) + "/" + get_name();
if (start)
{
int fd = open(file.c_str(), O_CREAT|O_EXCL|O_WRONLY, 0664);
if (fd < 0)
throw error(file, SESSION_WRITE, strerror(errno));
// Create a stream buffer from the file descriptor. The fd will
// be closed when the buffer is destroyed.
__gnu_cxx::stdio_filebuf<char> fdbuf(fd, std::ios::out);
std::ostream output(&fdbuf);
output.imbue(std::locale::classic());
sbuild::file_lock lock(fd);
try
{
lock.set_lock(lock::LOCK_EXCLUSIVE, 2);
}
catch (lock::error const& e)
{
throw error(file, FILE_LOCK, e);
}
keyfile details;
get_keyfile(details);
output << details;
try
{
lock.unset_lock();
}
catch (lock::error const& e)
{
throw error(file, FILE_UNLOCK, e);
}
}
else /* start == false */
{
if (unlink(file.c_str()) != 0)
throw error(file, SESSION_UNLINK, strerror(errno));
}
}
void
sbuild::chroot::lock (setup_type type)
{
setup_lock(type, true, 0);
}
void
sbuild::chroot::unlock (setup_type type,
int status)
{
setup_lock(type, false, status);
}
void
sbuild::chroot::get_details (format_detail& detail) const
{
detail.add(_("Name"), get_name());
if (!get_session_id().empty())
detail.add(_("Session ID"), get_session_id());
detail
.add(_("Description"), get_description())
.add(_("Type"), get_chroot_type())
.add(_("Priority"), get_priority())
.add(_("Users"), get_users())
.add(_("Groups"), get_groups())
.add(_("Root Users"), get_root_users())
.add(_("Root Groups"), get_root_groups())
.add(_("Aliases"), get_aliases())
.add(_("Environment Filter"), get_environment_filter())
.add(_("Run Setup Scripts"), get_run_setup_scripts())
.add(_("Script Configuration"), get_script_config())
.add(_("Session Managed"),
static_cast<bool>(get_session_flags() & chroot::SESSION_CREATE))
.add(_("Session Cloned"),
static_cast<bool>(get_session_flags() & chroot::SESSION_CLONE))
.add(_("Session Purged"),
static_cast<bool>(get_session_flags() & chroot::SESSION_PURGE));
if (!get_command_prefix().empty())
detail.add(_("Command Prefix"), get_command_prefix());
// TRANSLATORS: "Personality" is the Linux kernel personality
// (process execution domain). See schroot.conf(5).
detail.add(_("Personality"), get_persona().get_name());
/* Non user-settable properties are listed last. */
if (!get_mount_location().empty())
detail.add(_("Mount Location"), get_mount_location());
if (!get_path().empty())
detail.add(_("Path"), get_path());
}
void
sbuild::chroot::print_details (std::ostream& stream) const
{
format_detail fmt((this->active == true ? _("Session") : _("Chroot")),
stream.getloc());
get_details(fmt);
stream << fmt;
}
void
sbuild::chroot::get_keyfile (keyfile& keyfile) const
{
keyfile.remove_group(get_keyfile_name());
if (get_active())
keyfile::set_object_value(*this, &chroot::get_name,
keyfile, get_keyfile_name(), "name");
keyfile::set_object_value(*this, &chroot::get_chroot_type,
keyfile, get_keyfile_name(), "type");
keyfile::set_object_value(*this, &chroot::get_active,
keyfile, get_keyfile_name(), "active");
keyfile::set_object_value(*this, &chroot::get_script_config,
keyfile, get_keyfile_name(), "script-config");
keyfile::set_object_value(*this, &chroot::get_priority,
keyfile, get_keyfile_name(), "priority");
keyfile::set_object_list_value(*this, &chroot::get_aliases,
keyfile, get_keyfile_name(), "aliases");
keyfile::set_object_value(*this, &chroot::get_environment_filter,
keyfile, get_keyfile_name(), "environment-filter");
keyfile::set_object_value(*this, &chroot::get_description,
keyfile, get_keyfile_name(), "description");
keyfile::set_object_list_value(*this, &chroot::get_users,
keyfile, get_keyfile_name(), "users");
keyfile::set_object_list_value(*this, &chroot::get_groups,
keyfile, get_keyfile_name(), "groups");
keyfile::set_object_list_value(*this, &chroot::get_root_users,
keyfile, get_keyfile_name(), "root-users");
keyfile::set_object_list_value(*this, &chroot::get_root_groups,
keyfile, get_keyfile_name(), "root-groups");
if (get_active())
keyfile::set_object_value(*this, &chroot::get_mount_location,
keyfile, get_keyfile_name(), "mount-location");
keyfile::set_object_list_value(*this, &chroot::get_command_prefix,
keyfile, get_keyfile_name(), "command-prefix");
keyfile::set_object_value(*this, &chroot::get_persona,
keyfile, get_keyfile_name(), "personality");
}
void
sbuild::chroot::set_keyfile (keyfile const& keyfile,
string_list& used_keys)
{
void (sbuild::chroot::* nullmethod)(bool) = 0;
// Keys which are used elsewhere, but should be counted as "used".
used_keys.push_back("type");
string_list keys = keyfile.get_keys(get_keyfile_name());
for (string_list::const_iterator pos = keys.begin();
pos != keys.end();
++pos)
{
static regex description_keys("^description\\[.*\\]$");
if (regex_search(*pos, description_keys))
used_keys.push_back(*pos);
}
// This is set not in the configuration file, but set in the keyfile
// manually. The user must not have the ability to set this option.
keyfile::get_object_value(*this, &chroot::set_active,
keyfile, get_keyfile_name(), "active",
keyfile::PRIORITY_REQUIRED);
used_keys.push_back("active");
// Setup scripts are run depending on the chroot type in use, and is
// no longer user-configurable. They need to run for all types
// except "plain".
keyfile::get_object_value(*this, nullmethod,
keyfile, get_keyfile_name(), "run-setup-scripts",
keyfile::PRIORITY_DEPRECATED);
used_keys.push_back("run-setup-scripts");
// Exec scripts have been removed, so these two calls do nothing
// except to warn the user that the options are no longer used.
keyfile::get_object_value(*this, nullmethod,
keyfile, get_keyfile_name(), "run-session-scripts",
keyfile::PRIORITY_OBSOLETE);
used_keys.push_back("run-session-scripts");
keyfile::get_object_value(*this, nullmethod,
keyfile, get_keyfile_name(), "run-exec-scripts",
keyfile::PRIORITY_DEPRECATED);
used_keys.push_back("run-exec-scripts");
keyfile::get_object_value(*this, &chroot::set_script_config,
keyfile, get_keyfile_name(), "script-config",
keyfile::PRIORITY_OPTIONAL);
used_keys.push_back("script-config");
keyfile::get_object_value(*this, &chroot::set_priority,
keyfile, get_keyfile_name(), "priority",
keyfile::PRIORITY_OPTIONAL);
used_keys.push_back("priority");
keyfile::get_object_list_value(*this, &chroot::set_aliases,
keyfile, get_keyfile_name(), "aliases",
keyfile::PRIORITY_OPTIONAL);
used_keys.push_back("aliases");
keyfile::get_object_value(*this, &chroot::set_environment_filter,
keyfile, get_keyfile_name(), "environment-filter",
keyfile::PRIORITY_OPTIONAL);
used_keys.push_back("environment-filter");
keyfile::get_object_value(*this, &chroot::set_description,
keyfile, get_keyfile_name(), "description",
keyfile::PRIORITY_OPTIONAL);
used_keys.push_back("description");
keyfile::get_object_list_value(*this, &chroot::set_users,
keyfile, get_keyfile_name(), "users",
keyfile::PRIORITY_OPTIONAL);
used_keys.push_back("users");
keyfile::get_object_list_value(*this, &chroot::set_groups,
keyfile, get_keyfile_name(), "groups",
keyfile::PRIORITY_OPTIONAL);
used_keys.push_back("groups");
keyfile::get_object_list_value(*this, &chroot::set_root_users,
keyfile, get_keyfile_name(), "root-users",
keyfile::PRIORITY_OPTIONAL);
used_keys.push_back("root-users");
keyfile::get_object_list_value(*this, &chroot::set_root_groups,
keyfile, get_keyfile_name(), "root-groups",
keyfile::PRIORITY_OPTIONAL);
used_keys.push_back("root-groups");
keyfile::get_object_value(*this, &chroot::set_mount_location,
keyfile, get_keyfile_name(), "mount-location",
get_active() ?
keyfile::PRIORITY_REQUIRED :
keyfile::PRIORITY_DISALLOWED);
used_keys.push_back("mount-location");
keyfile::get_object_value(*this, &chroot::set_name,
keyfile, get_keyfile_name(), "name",
get_active() ?
keyfile::PRIORITY_OPTIONAL :
keyfile::PRIORITY_DISALLOWED);
used_keys.push_back("name");
keyfile::get_object_list_value(*this, &chroot::set_command_prefix,
keyfile, get_keyfile_name(), "command-prefix",
keyfile::PRIORITY_OPTIONAL);
used_keys.push_back("command-prefix");
keyfile::get_object_value(*this, &chroot::set_persona,
keyfile, get_keyfile_name(), "personality",
keyfile::PRIORITY_OPTIONAL);
used_keys.push_back("personality");
}
|