xref: /dragonfly/sbin/hammer2/cmd_snapshot.c (revision ffe53622)
1 /*
2  * Copyright (c) 2011-2013 The DragonFly Project.  All rights reserved.
3  *
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@dragonflybsd.org>
6  * by Venkatesh Srinivas <vsrinivas@dragonflybsd.org>
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in
16  *    the documentation and/or other materials provided with the
17  *    distribution.
18  * 3. Neither the name of The DragonFly Project nor the names of its
19  *    contributors may be used to endorse or promote products derived
20  *    from this software without specific, prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
26  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
28  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
30  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
31  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
32  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  */
35 
36 #include "hammer2.h"
37 
38 /*
39  * The snapshot is named <PFSNAME>_<YYYYMMDD.HHMMSS.TRANSID> unless
40  * overridden by a label.
41  *
42  * When local non-cache media is involved the media is
43  * first synchronized and the snapshot is then based on
44  * the media.
45  *
46  * If the media is remote the snapshot is created on the remote
47  * end (if you have sufficient administrative rights) and a local
48  * ADMIN or CACHE PFS is created with a connection to the snapshot
49  * on the remote.
50  *
51  * If the client has snapshot rights to multiple remotes then TBD.
52  */
53 
54 int
55 cmd_pfs_snapshot(const char *sel_path, const char *path, const char *label)
56 {
57 	hammer2_ioc_pfs_t pfs;
58 	int ecode = 0;
59 	int fd;
60 	char filename[HAMMER2_INODE_MAXNAME];
61 	time_t t;
62 	struct tm *tp;
63 
64 	if (path == NULL) {
65 		fd = hammer2_ioctl_handle(sel_path);
66 	} else {
67 		fd = open(path, O_RDONLY);
68 		if (fd < 0)
69 			fprintf(stderr, "Unable to open %s\n", path);
70 	}
71 	if (fd < 0)
72 		return 1;
73 
74 	if (label == NULL) {
75 		time(&t);
76 		tp = localtime(&t);
77 		bzero(&pfs, sizeof(pfs));
78 		pfs.name_key = (hammer2_key_t)-1;
79 		if (ioctl(fd, HAMMER2IOC_PFS_GET, &pfs) < 0) {
80 			perror("ioctl");
81 		}
82 		snprintf(filename, sizeof(filename),
83 			 "%s.%04d%02d%02d.%02d%02d%02d",
84 			 pfs.name,
85 			 tp->tm_year + 1900,
86 			 tp->tm_mon + 1,
87 			 tp->tm_mday,
88 			 tp->tm_hour,
89 			 tp->tm_min,
90 			 tp->tm_sec);
91 		label = filename;
92 	}
93 
94 	bzero(&pfs, sizeof(pfs));
95 	snprintf(pfs.name, sizeof(pfs.name), "%s", label);
96 
97 	if (ioctl(fd, HAMMER2IOC_PFS_SNAPSHOT, &pfs) < 0) {
98 		perror("ioctl");
99 		ecode = 1;
100 	} else {
101 		printf("created snapshot %s\n", label);
102 	}
103 	return ecode;
104 }
105