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
|
/*
* Copyright (c) [2011-2015] Novell, Inc.
* Copyright (c) [2016-2023] SUSE LLC
*
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of version 2 of the GNU General Public License as published
* by the Free Software Foundation.
*
* 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, contact Novell, Inc.
*
* To contact Novell about this file by physical or electronic mail, you may
* find current contact information at www.novell.com.
*/
#include "config.h"
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <snapper/Snapper.h>
#include <snapper/SnapperTmpl.h>
#include <snapper/Enum.h>
#include <snapper/Version.h>
#include "utils/text.h"
#include "utils/Table.h"
#include "utils/GetOpts.h"
#include "errors.h"
#include "proxy.h"
#include "GlobalOptions.h"
#include "cmd.h"
using namespace snapper;
using namespace std;
struct Cmd
{
typedef void (*cmd_func_t)(GlobalOptions& global_options, GetOpts& get_opts, ProxySnappers* snappers,
ProxySnapper* snapper);
typedef void (*help_func_t)();
Cmd(const string& name, cmd_func_t cmd_func, help_func_t help_func, bool needs_snapper)
: name(name), aliases(), cmd_func(cmd_func), help_func(help_func),
needs_snapper(needs_snapper)
{}
Cmd(const string& name, const vector<string>& aliases, cmd_func_t cmd_func,
help_func_t help_func, bool needs_snapper)
: name(name), aliases(aliases), cmd_func(cmd_func), help_func(help_func),
needs_snapper(needs_snapper)
{}
const string name;
const vector<string> aliases;
const cmd_func_t cmd_func;
const help_func_t help_func;
const bool needs_snapper;
};
static bool log_debug = false;
void
log_do(LogLevel level, const string& component, const char* file, const int line, const char* func,
const string& text)
{
cerr << text << endl;
}
bool
log_query(LogLevel level, const string& component)
{
return log_debug || level == ERROR;
}
void usage() __attribute__ ((__noreturn__));
void
usage()
{
cerr << "Try 'snapper --help' for more information." << endl;
exit(EXIT_FAILURE);
}
void help() __attribute__ ((__noreturn__));
void
help(const vector<Cmd>& cmds, GetOpts& get_opts)
{
get_opts.parse("help", GetOpts::no_options);
if (get_opts.has_args())
{
cerr << _("Command 'help' does not take arguments.") << endl;
exit(EXIT_FAILURE);
}
cout << _("usage: snapper [--global-options] <command> [--command-options] [command-arguments]") << '\n'
<< endl;
cout << GlobalOptions::help_text() << endl;
for (const Cmd& cmd : cmds)
(*cmd.help_func)();
exit(EXIT_SUCCESS);
}
int
main(int argc, char** argv)
{
try
{
locale::global(locale(""));
}
catch (const runtime_error& e)
{
cerr << _("Failed to set locale.") << endl;
}
setLogDo(&log_do);
setLogQuery(&log_query);
const vector<Cmd> cmds = {
Cmd("list-configs", command_list_configs, help_list_configs, false),
Cmd("create-config", command_create_config, help_create_config, false),
Cmd("delete-config", command_delete_config, help_delete_config, false),
Cmd("get-config", command_get_config, help_get_config, true),
Cmd("set-config", command_set_config, help_set_config, true),
Cmd("list", { "ls" }, command_list, help_list, false),
Cmd("create", command_create, help_create, true),
Cmd("modify", command_modify, help_modify, true),
Cmd("delete", { "remove", "rm" }, command_delete, help_delete, true),
Cmd("mount", command_mount, help_mount, true),
Cmd("umount", command_umount, help_umount, true),
Cmd("status", command_status, help_status, true),
Cmd("diff", command_diff, help_diff, true),
#ifdef ENABLE_XATTRS
Cmd("xadiff", command_xadiff, help_xadiff, true),
#endif
Cmd("undochange", command_undochange, help_undochange, true),
#ifdef ENABLE_ROLLBACK
Cmd("rollback", command_rollback, help_rollback, true),
#endif
Cmd("setup-quota", command_setup_quota, help_setup_quota, true),
Cmd("cleanup", command_cleanup, help_cleanup, false),
Cmd("debug", command_debug, help_debug, false)
};
try
{
GetOpts get_opts(argc, argv);
GlobalOptions global_options(get_opts);
if (global_options.debug())
{
log_debug = true;
}
if (global_options.version())
{
cout << "snapper " << Snapper::compileVersion() << endl;
cout << "libsnapper " << LIBSNAPPER_VERSION_STRING;
if (strcmp(LIBSNAPPER_VERSION_STRING, get_libversion_string()) != 0)
cout << " (" << get_libversion_string() << ")";
cout << '\n';
cout << "flags " << Snapper::compileFlags() << endl;
exit(EXIT_SUCCESS);
}
if (global_options.help())
{
help(cmds, get_opts);
}
if (!get_opts.has_args())
{
cerr << _("No command provided.") << endl
<< _("Try 'snapper --help' for more information.") << endl;
exit(EXIT_FAILURE);
}
const char* command = get_opts.pop_arg();
vector<Cmd>::const_iterator cmd = cmds.begin();
while (cmd != cmds.end() && (cmd->name != command && !contains(cmd->aliases, command)))
++cmd;
if (cmd == cmds.end())
{
cerr << sformat(_("Unknown command '%s'."), command) << endl
<< _("Try 'snapper --help' for more information.") << endl;
exit(EXIT_FAILURE);
}
try
{
y2mil("constructing ProxySnapper object");
ProxySnappers snappers(global_options.no_dbus() ? ProxySnappers::createLib(global_options.root()) :
ProxySnappers::createDbus());
y2mil("executing command");
if (cmd->needs_snapper)
(*cmd->cmd_func)(global_options, get_opts, &snappers, snappers.getSnapper(global_options.config()));
else
(*cmd->cmd_func)(global_options, get_opts, &snappers, nullptr);
}
catch (const DBus::ErrorException& e)
{
SN_CAUGHT(e);
if (strcmp(e.name(), "error.unknown_config") == 0 && global_options.config() == "root")
{
cerr << _("The config 'root' does not exist. Likely snapper is not configured.") << endl
<< _("See 'man snapper' for further instructions.") << endl;
exit(EXIT_FAILURE);
}
cerr << error_description(e) << endl;
exit(EXIT_FAILURE);
}
catch (const DBus::FatalException& e)
{
SN_CAUGHT(e);
cerr << _("Failure") << " (" << e.what() << ")." << endl;
exit(EXIT_FAILURE);
}
catch (const IllegalSnapshotException& e)
{
SN_CAUGHT(e);
cerr << _("Illegal snapshot.") << endl;
exit(EXIT_FAILURE);
}
catch (const ConfigNotFoundException& e)
{
SN_CAUGHT(e);
cerr << sformat(_("Config '%s' not found."), global_options.config().c_str()) << endl;
exit(EXIT_FAILURE);
}
catch (const InvalidConfigException& e)
{
SN_CAUGHT(e);
cerr << sformat(_("Config '%s' is invalid."), global_options.config().c_str()) << endl;
exit(EXIT_FAILURE);
}
catch (const ListConfigsFailedException& e)
{
SN_CAUGHT(e);
cerr << sformat(_("Listing configs failed (%s)."), e.what()) << endl;
exit(EXIT_FAILURE);
}
catch (const CreateConfigFailedException& e)
{
SN_CAUGHT(e);
cerr << sformat(_("Creating config failed (%s)."), e.what()) << endl;
exit(EXIT_FAILURE);
}
catch (const DeleteConfigFailedException& e)
{
SN_CAUGHT(e);
cerr << sformat(_("Deleting config failed (%s)."), e.what()) << endl;
exit(EXIT_FAILURE);
}
catch (const InvalidConfigdataException& e)
{
SN_CAUGHT(e);
cerr << _("Invalid configdata.") << endl;
exit(EXIT_FAILURE);
}
catch (const AclException& e)
{
SN_CAUGHT(e);
cerr << _("ACL error.") << endl;
exit(EXIT_FAILURE);
}
catch (const IOErrorException& e)
{
SN_CAUGHT(e);
cerr << sformat(_("IO error (%s)."), e.what()) << endl;
exit(EXIT_FAILURE);
}
catch (const InvalidUserException& e)
{
SN_CAUGHT(e);
cerr << sformat(_("Invalid user (%s)."), e.what()) << endl;
exit(EXIT_FAILURE);
}
catch (const InvalidGroupException& e)
{
SN_CAUGHT(e);
cerr << sformat(_("Invalid group (%s)."), e.what()) << endl;
exit(EXIT_FAILURE);
}
catch (const QuotaException& e)
{
SN_CAUGHT(e);
cerr << sformat(_("Quota error (%s)."), e.what()) << endl;
exit(EXIT_FAILURE);
}
catch (const FreeSpaceException& e)
{
SN_CAUGHT(e);
cerr << sformat(_("Free space error (%s)."), e.what()) << endl;
exit(EXIT_FAILURE);
}
catch (const OptionsException& e)
{
SN_CAUGHT(e);
cerr << e.what() << endl
<< _("Try 'snapper --help' for more information.") << endl;
exit(EXIT_FAILURE);
}
catch (const CleanupException& e)
{
SN_CAUGHT(e);
cerr << e.what() << endl;
exit(EXIT_FAILURE);
}
catch (const Exception& e)
{
SN_CAUGHT(e);
cerr << sformat(_("Error (%s)."), e.what()) << endl;
exit(EXIT_FAILURE);
}
}
catch (const OptionsException& e)
{
SN_CAUGHT(e);
cerr << e.what() << endl
<< _("Try 'snapper --help' for more information.") << endl;
exit(EXIT_FAILURE);
}
exit(EXIT_SUCCESS);
}
|