]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/nandfs/rmsnap.c
MFC r326276:
[FreeBSD/FreeBSD.git] / sbin / nandfs / rmsnap.c
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2012 The FreeBSD Foundation
5  * All rights reserved.
6  *
7  * This software was developed by Semihalf under sponsorship
8  * from the FreeBSD Foundation.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  *
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  */
32
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD$");
35 #include <sys/types.h>
36
37 #include <stdio.h>
38 #include <stdlib.h>
39 #include <limits.h>
40 #include <sysexits.h>
41
42 #include <fs/nandfs/nandfs_fs.h>
43 #include <libnandfs.h>
44
45 #include "nandfs.h"
46
47 static void
48 rmsnap_usage(void)
49 {
50
51         fprintf(stderr, "usage:\n");
52         fprintf(stderr, "\trmsnap snap node\n");
53 }
54
55 int
56 nandfs_rmsnap(int argc, char **argv)
57 {
58         struct nandfs fs;
59         uint64_t cpno;
60         int error;
61
62         if (argc != 2) {
63                 rmsnap_usage();
64                 return (EX_USAGE);
65         }
66
67         cpno = strtoll(argv[0], (char **)NULL, 10);
68         if (cpno == 0) {
69                 fprintf(stderr, "%s must be a number greater than 0\n",
70                     argv[0]);
71                 return (EX_USAGE);
72         }
73
74         nandfs_init(&fs, argv[1]);
75         error = nandfs_open(&fs);
76         if (error == -1) {
77                 fprintf(stderr, "nandfs_open: %s\n", nandfs_errmsg(&fs));
78                 goto out;
79         }
80
81         error = nandfs_delete_snap(&fs, cpno);
82         if (error == -1)
83                 fprintf(stderr, "nandfs_delete_snap: %s\n", nandfs_errmsg(&fs));
84
85 out:
86         nandfs_close(&fs);
87         nandfs_destroy(&fs);
88         return (error);
89 }