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
|
/*
Copyright (c) 2009 Frank Lahm <franklahm@gmail.com>
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 2 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.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif /* HAVE_CONFIG_H */
#include <unistd.h>
#include <sys/types.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
#include <limits.h>
#include <signal.h>
#include <string.h>
#include <errno.h>
#include <pwd.h>
#include <atalk/logger.h>
#include <atalk/globals.h>
#include <atalk/netatalk_conf.h>
#include <atalk/util.h>
#include <atalk/errchk.h>
#include "cmd_dbd.h"
enum dbd_cmd {dbd_scan, dbd_rebuild};
/* Global variables */
volatile sig_atomic_t alarmed; /* flags for signals */
/* Local variables */
static dbd_flags_t flags;
/***************************************************************************
* Local functions
***************************************************************************/
/*
* SIGNAL handling:
* catch SIGINT and SIGTERM which cause clean exit. Ignore anything else.
*/
static void sig_handler(int signo)
{
alarmed = 1;
return;
}
static void set_signal(void)
{
struct sigaction sv;
sv.sa_handler = sig_handler;
sv.sa_flags = SA_RESTART;
sigemptyset(&sv.sa_mask);
if (sigaction(SIGTERM, &sv, NULL) < 0) {
dbd_log( LOGSTD, "error in sigaction(SIGTERM): %s", strerror(errno));
exit(EXIT_FAILURE);
}
if (sigaction(SIGINT, &sv, NULL) < 0) {
dbd_log( LOGSTD, "error in sigaction(SIGINT): %s", strerror(errno));
exit(EXIT_FAILURE);
}
memset(&sv, 0, sizeof(struct sigaction));
sv.sa_handler = SIG_IGN;
sigemptyset(&sv.sa_mask);
if (sigaction(SIGABRT, &sv, NULL) < 0) {
dbd_log( LOGSTD, "error in sigaction(SIGABRT): %s", strerror(errno));
exit(EXIT_FAILURE);
}
if (sigaction(SIGHUP, &sv, NULL) < 0) {
dbd_log( LOGSTD, "error in sigaction(SIGHUP): %s", strerror(errno));
exit(EXIT_FAILURE);
}
if (sigaction(SIGQUIT, &sv, NULL) < 0) {
dbd_log( LOGSTD, "error in sigaction(SIGQUIT): %s", strerror(errno));
exit(EXIT_FAILURE);
}
}
static void usage (void)
{
printf("Usage: dbd [-cfFstuvV] <path to netatalk volume>\n\n"
"dbd scans all file and directories of AFP volumes, updating the\n"
"CNID database of the volume. dbd must be run with appropriate\n"
"permissions i.e. as root.\n\n"
"Options:\n"
" -s scan volume: treat the volume as read only and don't\n"
" perform any filesystem modifications\n"
" -c convert from adouble:v2 to adouble:ea\n"
" -F location of the afp.conf config file\n"
" -f delete and recreate CNID database\n"
" -t show statistics while running\n"
" -u username for use with AFP volumes using user variable $u\n"
" -v verbose\n"
" -V show version info\n\n"
);
}
/***************************************************************************
* Global functions
***************************************************************************/
void dbd_log(enum logtype lt, char *fmt, ...)
{
int len;
static char logbuffer[1024];
va_list args;
if ( (lt == LOGSTD) || (flags & DBD_FLAGS_VERBOSE)) {
va_start(args, fmt);
len = vsnprintf(logbuffer, 1023, fmt, args);
va_end(args);
logbuffer[1023] = 0;
printf("%s\n", logbuffer);
}
}
int main(int argc, char **argv)
{
EC_INIT;
int dbd_cmd = dbd_rebuild;
int cdir = -1;
AFPObj obj = { 0 };
struct vol *vol = NULL;
const char *volpath = NULL;
char *username = NULL;
int c;
while ((c = getopt(argc, argv, ":cfF:rstu:vV")) != -1) {
switch(c) {
case 'c':
flags |= DBD_FLAGS_V2TOEA;
break;
case 'f':
flags |= DBD_FLAGS_FORCE;
break;
case 'F':
obj.cmdlineconfigfile = strdup(optarg);
break;
case 'r':
/* the default */
break;
case 's':
dbd_cmd = dbd_scan;
flags |= DBD_FLAGS_SCAN;
break;
case 't':
flags |= DBD_FLAGS_STATS;
break;
case 'u':
username = strdup(optarg);
break;
case 'v':
flags |= DBD_FLAGS_VERBOSE;
break;
case 'V':
printf("dbd %s\n", VERSION);
exit(0);
case ':':
case '?':
usage();
exit(EXIT_FAILURE);
break;
}
}
if ( (optind + 1) != argc ) {
usage();
exit(EXIT_FAILURE);
}
volpath = argv[optind];
if (geteuid() != 0) {
usage();
exit(EXIT_FAILURE);
}
/* Inhereting perms in ad_mkdir etc requires this */
ad_setfuid(0);
setvbuf(stdout, (char *) NULL, _IONBF, 0);
/* Remember cwd */
if ((cdir = open(".", O_RDONLY)) < 0) {
dbd_log( LOGSTD, "Can't open dir: %s", strerror(errno));
exit(EXIT_FAILURE);
}
/* Setup signal handling */
set_signal();
/* Load config */
if (afp_config_parse(&obj, "dbd") != 0) {
dbd_log( LOGSTD, "Couldn't load afp.conf");
exit(EXIT_FAILURE);
}
/* Initialize CNID subsystem */
cnid_init();
/* Setup logging. Should be portable among *NIXes */
if (flags & DBD_FLAGS_VERBOSE)
setuplog("default:note, cnid:debug", "/dev/tty");
else
setuplog("default:note", "/dev/tty");
/* Set username */
if (username) {
strncpy(obj.username, username, MAXUSERLEN);
struct passwd *pwd;
pwd = getpwnam(obj.username);
if (!pwd) {
dbd_log( LOGSTD, "unknown user");
exit(EXIT_FAILURE);
}
obj.uid = pwd->pw_uid;
}
if (load_volumes(&obj, LV_ALL) != 0) {
dbd_log( LOGSTD, "Couldn't load volumes");
exit(EXIT_FAILURE);
}
if ((vol = getvolbypath(&obj, volpath)) == NULL) {
dbd_log( LOGSTD, "Couldn't find volume for '%s'", volpath);
exit(EXIT_FAILURE);
}
if (load_charset(vol) != 0) {
dbd_log( LOGSTD, "Couldn't load charsets for '%s'", volpath);
exit(EXIT_FAILURE);
}
/* open volume */
if (STRCMP(vol->v_cnidscheme, != , "dbd") && STRCMP(vol->v_cnidscheme, != , "mysql")) {
dbd_log(LOGSTD, "\"%s\" isn't a \"dbd\" CNID volume", vol->v_path);
exit(EXIT_FAILURE);
}
vol->v_cdb = cnid_open(vol, vol->v_cnidscheme,
vol->v_flags & AFPVOL_NODEV ? CNID_FLAG_NODEV : 0);
if (vol->v_cdb == NULL) {
dbd_log(LOGSTD, "Can't initialize CNID database connection for %s", vol->v_path);
exit(EXIT_FAILURE);
}
if (vol->v_adouble == AD_VERSION_EA)
dbd_log( LOGDEBUG, "adouble:ea volume");
else if (vol->v_adouble == AD_VERSION2)
dbd_log( LOGDEBUG, "adouble:v2 volume");
else {
dbd_log( LOGSTD, "unknown adouble volume");
exit(EXIT_FAILURE);
}
/* -C v2 to ea conversion only on adouble:ea volumes */
if ((flags & DBD_FLAGS_V2TOEA) && (vol->v_adouble!= AD_VERSION_EA)) {
dbd_log( LOGSTD, "Can't run adouble:v2 to adouble:ea conversion because not an adouble:ea volume");
exit(EXIT_FAILURE);
}
/* Sanity checks to ensure we can touch this volume */
if (vol->v_vfs_ea != AFPVOL_EA_AD && vol->v_vfs_ea != AFPVOL_EA_SYS) {
dbd_log( LOGSTD, "Unknown Extended Attributes option: %u", vol->v_vfs_ea);
exit(EXIT_FAILURE);
}
if (flags & DBD_FLAGS_FORCE) {
if (cnid_wipe(vol->v_cdb) != 0) {
dbd_log( LOGSTD, "Failed to wipe CNID db");
EC_FAIL;
}
}
/* Now execute given command scan|rebuild|dump */
switch (dbd_cmd) {
case dbd_scan:
case dbd_rebuild:
if (cmd_dbd_scanvol(vol, flags) < 0) {
dbd_log( LOGSTD, "Error repairing database.");
}
break;
}
EC_CLEANUP:
if (vol)
cnid_close(vol->v_cdb);
if (cdir != -1 && (fchdir(cdir) < 0))
dbd_log(LOGSTD, "fchdir: %s", strerror(errno));
if (ret == 0)
exit(EXIT_SUCCESS);
else
exit(EXIT_FAILURE);
}
|