2 * Copyright (c) 2011-2012 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 cmd_remote_connect(const char *sel_path
, const char *url
)
41 hammer2_ioc_remote_t remote
;
45 if ((fd
= hammer2_ioctl_handle(sel_path
)) < 0)
47 bzero(&remote
, sizeof(remote
));
50 if (strlen(url
) >= sizeof(remote
.copy1
.path
)) {
51 fprintf(stderr
, "hammer2: connect: Path too long\n");
55 snprintf(remote
.copy1
.path
, sizeof(remote
.copy1
.path
), "%s", url
);
56 if (ioctl(fd
, HAMMER2IOC_REMOTE_ADD
, &remote
) < 0) {
65 cmd_remote_disconnect(const char *sel_path
, const char *url
)
67 hammer2_ioc_remote_t remote
;
71 if ((fd
= hammer2_ioctl_handle(sel_path
)) < 0)
73 bzero(&remote
, sizeof(remote
));
76 if (strlen(url
) >= sizeof(remote
.copy1
.path
)) {
77 fprintf(stderr
, "hammer2: disconnect: Path too long\n");
81 snprintf(remote
.copy1
.path
, sizeof(remote
.copy1
.path
), "%s", url
);
82 if (ioctl(fd
, HAMMER2IOC_REMOTE_DEL
, &remote
) < 0) {
91 cmd_remote_status(const char *sel_path
, int all_opt __unused
)
93 hammer2_ioc_remote_t remote
;
98 if ((fd
= hammer2_ioctl_handle(sel_path
)) < 0)
100 bzero(&remote
, sizeof(remote
));
102 while ((remote
.copyid
= remote
.nextid
) >= 0) {
103 if (ioctl(fd
, HAMMER2IOC_REMOTE_SCAN
, &remote
) < 0) {
108 if (remote
.copy1
.copyid
== 0)
111 printf("CPYID LABEL STATUS PATH\n");
112 printf("%5d %-15s %c%c%c.%02x %s\n",
116 remote
.copy1
.priority
,
121 printf("No linkages found\n");