2 * Copyright (c) 2011-2013 The DragonFly Project. All rights reserved.
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>
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
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
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.
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
39 * The snapshot is named <PFSNAME>_<YYYYMMDD.HHMMSS.TRANSID> unless
40 * overridden by a label.
42 * When local non-cache media is involved the media is
43 * first synchronized and the snapshot is then based on
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
51 * If the client has snapshot rights to multiple remotes then TBD.
55 cmd_pfs_snapshot(const char *sel_path
, const char *path
, const char *label
)
57 hammer2_ioc_pfs_t pfs
;
60 char filename
[HAMMER2_INODE_MAXNAME
];
65 fd
= hammer2_ioctl_handle(sel_path
);
67 fd
= open(path
, O_RDONLY
);
69 fprintf(stderr
, "Unable to open %s\n", path
);
77 bzero(&pfs
, sizeof(pfs
));
78 pfs
.name_key
= (hammer2_key_t
)-1;
79 if (ioctl(fd
, HAMMER2IOC_PFS_GET
, &pfs
) < 0) {
82 snprintf(filename
, sizeof(filename
),
83 "%s.%04d%02d%02d.%02d%02d%02d",
94 bzero(&pfs
, sizeof(pfs
));
95 snprintf(pfs
.name
, sizeof(pfs
.name
), "%s", label
);
97 if (ioctl(fd
, HAMMER2IOC_PFS_SNAPSHOT
, &pfs
) < 0) {
101 printf("created snapshot %s\n", label
);