nilfs-utils/bin/mkcp.c
Ryusuke Konishi dc7e116ddf treewide: embed git revision into binaries
Apply the NILFS_UTILS_GITID() macro to all major executables and
libraries to enable git revision tracking.

Signed-off-by: Ryusuke Konishi <konishi.ryusuke@gmail.com>
2026-01-26 01:44:10 +09:00

171 lines
3.7 KiB
C

/*
* mkcp.c - NILFS command of making checkpoints.
*
* Copyright (C) 2007-2012 Nippon Telegraph and Telephone Corporation.
*
* This file is part of NILFS.
*
* NILFS 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.
*
* NILFS 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.
*
* Written by Koji Sato.
*
* Maintained by Ryusuke Konishi <konishi.ryusuke@gmail.com> from 2008.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif /* HAVE_CONFIG_H */
#include <stdio.h>
#if HAVE_STDLIB_H
#include <stdlib.h>
#endif /* HAVE_STDLIB_H */
#if HAVE_UNISTD_H
#include <unistd.h>
#endif /* HAVE_UNISTD_H */
#if HAVE_ERR_H
#include <err.h>
#endif /* HAVE_ERR_H */
#if HAVE_STRING_H
#include <string.h>
#endif /* HAVE_STRING_H */
#include <signal.h>
#include "nilfs.h"
#include "compat.h" /* getprogname() */
#include "util.h"
#ifdef _GNU_SOURCE
#include <getopt.h>
static const struct option long_option[] = {
{"snapshot", no_argument, NULL, 's'},
{"print", no_argument, NULL, 'p'},
{"help", no_argument, NULL, 'h'},
{"version", no_argument, NULL, 'V'},
{NULL, 0, NULL, 0}
};
#define MKCP_USAGE "Usage: %s [OPTION] [DEVICE|NODE]\n" \
" -s, --snapshot\tcreate a snapshot\n" \
" -p, --print\tprint the created CP number\n" \
" -h, --help\t\tdisplay this help and exit\n" \
" -V, --version\t\tdisplay version and exit\n"
#else /* !_GNU_SOURCE */
#define MKCP_USAGE "Usage: %s [-sphV] [device|node]\n"
#endif /* _GNU_SOURCE */
NILFS_UTILS_GITID();
int main(int argc, char *argv[])
{
struct nilfs *nilfs;
nilfs_cno_t cno;
char *dev;
int ss, print, c, status, ret;
#ifdef _GNU_SOURCE
int option_index;
#endif /* _GNU_SOURCE */
sigset_t sigset, oldset;
ss = 0;
print = 0;
#ifdef _GNU_SOURCE
while ((c = getopt_long(argc, argv, "sphV",
long_option, &option_index)) >= 0) {
#else /* !_GNU_SOURCE */
while ((c = getopt(argc, argv, "sphV")) >= 0) {
#endif /* _GNU_SOURCE */
switch (c) {
case 's':
ss = 1;
break;
case 'p':
print = 1;
break;
case 'h':
printf(MKCP_USAGE, getprogname());
exit(EXIT_SUCCESS);
case 'V':
printf("%s (%s %s)\n", getprogname(), PACKAGE,
PACKAGE_VERSION);
exit(EXIT_SUCCESS);
default:
exit(EXIT_FAILURE);
}
}
if (optind < argc - 1)
errx(EXIT_FAILURE, "too many arguments");
else if (optind > argc - 1)
dev = NULL;
else
dev = argv[optind];
nilfs = nilfs_open(dev, NULL, (NILFS_OPEN_RDWR | NILFS_OPEN_GCLK |
NILFS_OPEN_SRCHDEV));
if (nilfs == NULL)
err(EXIT_FAILURE, "cannot open NILFS on %s", dev ? : "device");
status = EXIT_SUCCESS;
ret = nilfs_sync(nilfs, &cno);
if (unlikely(ret < 0)) {
warn(NULL);
status = EXIT_FAILURE;
goto out;
}
sigemptyset(&sigset);
sigaddset(&sigset, SIGINT);
sigaddset(&sigset, SIGTERM);
ret = sigprocmask(SIG_BLOCK, &sigset, &oldset);
if (unlikely(ret < 0)) {
warn("cannot block signals");
status = EXIT_FAILURE;
goto out;
}
if (ss) {
ret = nilfs_lock_cleaner(nilfs);
if (unlikely(ret < 0)) {
warn(NULL);
status = EXIT_FAILURE;
goto out_unblock_signal;
}
ret = nilfs_change_cpmode(nilfs, cno, NILFS_SNAPSHOT);
if (unlikely(ret < 0)) {
warn(NULL);
status = EXIT_FAILURE;
}
ret = nilfs_unlock_cleaner(nilfs);
if (unlikely(ret < 0)) {
warn(NULL);
status = EXIT_FAILURE;
}
}
out_unblock_signal:
sigprocmask(SIG_SETMASK, &oldset, NULL);
out:
nilfs_close(nilfs);
if (!status && print)
printf("%ld\n", (long)cno);
exit(status);
}