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
|
/* Copyright © 2005-2007 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/sbuild-mntstream.h>
#include <sbuild/sbuild-util.h>
#include "schroot-mount-main.h"
#include <cerrno>
#include <climits>
#include <cstdio>
#include <cstdlib>
#include <ctime>
#include <iostream>
#include <locale>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <boost/format.hpp>
#include <boost/filesystem.hpp>
#include <mntent.h>
using std::endl;
using boost::format;
using sbuild::_;
using sbuild::N_;
using namespace schroot_mount;
namespace
{
typedef std::pair<main::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(main::CHILD_FORK, N_("Failed to fork child")),
emap(main::CHILD_WAIT, N_("Wait for child failed")),
// TRANSLATORS: %1% = command name
emap(main::EXEC, N_("Failed to execute “%1%”")),
emap(main::REALPATH, N_("Failed to resolve path “%1%”"))
};
}
template<>
sbuild::error<main::error_code>::map_type
sbuild::error<main::error_code>::error_strings
(init_errors,
init_errors + (sizeof(init_errors) / sizeof(init_errors[0])));
main::main (options::ptr& options):
schroot_base::main("schroot-mount",
// TRANSLATORS: '...' is an ellipsis e.g. U+2026,
// and '-' is an em-dash.
_("[OPTION…] — mount filesystems"),
options,
false),
opts(options)
{
}
main::~main ()
{
}
std::string
main::resolve_path (std::string const& mountpoint)
{
// Ensure entry has a leading / to prevent security hole where
// mountpoint might be outside the chroot.
std::string absmountpoint(mountpoint);
if (absmountpoint.empty() || absmountpoint[0] != '/')
absmountpoint = std::string("/") + absmountpoint;
char *resolved_path = realpath(opts->mountpoint.c_str(), 0);
if (!resolved_path)
throw error(opts->mountpoint, REALPATH, strerror(errno));
std::string basepath(resolved_path);
std::free(resolved_path);
std::string directory(opts->mountpoint + absmountpoint);
// Canonicalise path to remove any symlinks.
resolved_path = realpath(directory.c_str(), 0);
if (resolved_path == 0)
{
// The path is either not present or is an invalid link. If
// it's not present, we'll create it later. If it's a link,
// bail out now.
bool link = false;
try
{
if (sbuild::stat(directory, true).is_link())
link = true;
}
catch (...)
{} // Does not exist, not a link
if (link)
throw error(directory, REALPATH, strerror(ENOTDIR));
else
{
// Try validating the parent directory.
sbuild::string_list dirs = sbuild::split_string(mountpoint, "/");
if (dirs.size() > 1) // Recurse if possible, otherwise continue
{
std::string saveddir = *dirs.rbegin();
dirs.pop_back();
std::string newpath(resolve_path(sbuild::string_list_to_string(dirs, "/")));
directory = newpath + "/" + saveddir;
}
}
}
else
{
directory = resolved_path;
std::free(resolved_path);
}
// If the link was absolute (i.e. points somewhere on the host,
// outside the chroot, make sure that this is modified to be
// inside.
if (directory.size() < basepath.size() ||
directory.substr(0,basepath.size()) != basepath)
directory = basepath + directory;
return directory;
}
void
main::action_mount ()
{
// Check mounts.
sbuild::mntstream mounts(opts->fstab);
sbuild::mntstream::mntentry entry;
while (mounts >> entry)
{
std::string directory = resolve_path(entry.directory);
if (!boost::filesystem::exists(directory))
{
sbuild::log_debug(sbuild::DEBUG_INFO)
<< boost::format("Creating ‘%1%' in '%2%’")
% entry.directory
% opts->mountpoint
<< std::endl;
if (!opts->dry_run)
{
try
{
boost::filesystem::create_directories(directory);
}
catch (std::exception const& e)
{
sbuild::log_exception_error(e);
exit(EXIT_FAILURE);
}
catch (...)
{
sbuild::log_error()
<< _("An unknown exception occurred") << std::endl;
exit(EXIT_FAILURE);
}
}
}
sbuild::log_debug(sbuild::DEBUG_INFO)
<< boost::format("Mounting ‘%1%’ on ‘%2%’")
% entry.filesystem_name
% directory
<< std::endl;
if (!opts->dry_run)
{
sbuild::string_list command;
command.push_back("/bin/mount");
if (opts->verbose)
command.push_back("-v");
command.push_back("-t");
command.push_back(entry.type);
command.push_back("-o");
command.push_back(entry.options);
command.push_back(entry.filesystem_name);
command.push_back(directory);
int status = run_child(command[0], command, sbuild::environment());
if (status)
exit(status);
}
}
}
int
main::run_child (std::string const& file,
sbuild::string_list const& command,
sbuild::environment const& env)
{
int exit_status = 0;
pid_t pid;
if ((pid = fork()) == -1)
{
throw error(CHILD_FORK, strerror(errno));
}
else if (pid == 0)
{
try
{
sbuild::log_debug(sbuild::DEBUG_INFO)
<< "mount_main: executing "
<< sbuild::string_list_to_string(command, ", ")
<< std::endl;
exec(file, command, env);
error e(file, EXEC, strerror(errno));
sbuild::log_exception_error(e);
}
catch (std::exception const& e)
{
sbuild::log_exception_error(e);
}
catch (...)
{
sbuild::log_error()
<< _("An unknown exception occurred") << std::endl;
}
_exit(EXIT_FAILURE);
}
else
{
wait_for_child(pid, exit_status);
}
if (exit_status)
sbuild::log_debug(sbuild::DEBUG_INFO)
<< "mount_main: " << file
<< " failed with status " << exit_status
<< std::endl;
else
sbuild::log_debug(sbuild::DEBUG_INFO)
<< "mount_main: " << file
<< " succeeded"
<< std::endl;
return exit_status;
}
void
main::wait_for_child (pid_t pid,
int& child_status)
{
child_status = EXIT_FAILURE; // Default exit status
int status;
while (1)
{
if (waitpid(pid, &status, 0) == -1)
{
if (errno == EINTR)
continue; // Wait again.
else
throw error(CHILD_WAIT, strerror(errno));
}
else
break;
}
if (WIFEXITED(status))
child_status = WEXITSTATUS(status);
}
int
main::run_impl ()
{
if (this->opts->action == options::ACTION_HELP)
action_help(std::cerr);
else if (this->opts->action == options::ACTION_VERSION)
action_version(std::cerr);
else if (this->opts->action == options::ACTION_MOUNT)
action_mount();
else
assert(0); // Invalid action.
return EXIT_SUCCESS;
}
|