blob: 0dc8d0c43783d9e7508139d4535656ff300c6025 [file] [log] [blame]
Rob Landley1fc20c42010-09-23 02:03:47 +02001/*
2 * Copyright 2010 Rob Landley <rob@landley.net>
3 *
4 * Licensed under GPLv2, see file LICENSE in this source tree.
5 */
Rob Landley1fc20c42010-09-23 02:03:47 +02006//config:config NBDCLIENT
Denys Vlasenkob097a842018-12-28 03:20:17 +01007//config: bool "nbd-client (6 kb)"
Rob Landley1fc20c42010-09-23 02:03:47 +02008//config: default y
9//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020010//config: Network block device client
Rob Landley1fc20c42010-09-23 02:03:47 +020011
Denys Vlasenko0c4dbd42017-09-18 16:28:43 +020012//applet:IF_NBDCLIENT(APPLET_NOEXEC(nbd-client, nbdclient, BB_DIR_USR_SBIN, BB_SUID_DROP, nbdclient))
13
14//kbuild:lib-$(CONFIG_NBDCLIENT) += nbd-client.o
15
16#include "libbb.h"
17#include <netinet/tcp.h>
18#include <linux/fs.h>
Denys Vlasenko43291162018-10-24 15:51:38 +020019#include <getopt.h>
Denys Vlasenko0c4dbd42017-09-18 16:28:43 +020020
Rob Landley1fc20c42010-09-23 02:03:47 +020021#define NBD_SET_SOCK _IO(0xab, 0)
22#define NBD_SET_BLKSIZE _IO(0xab, 1)
23#define NBD_SET_SIZE _IO(0xab, 2)
24#define NBD_DO_IT _IO(0xab, 3)
25#define NBD_CLEAR_SOCK _IO(0xab, 4)
26#define NBD_CLEAR_QUEUE _IO(0xab, 5)
27#define NBD_PRINT_DEBUG _IO(0xab, 6)
28#define NBD_SET_SIZE_BLOCKS _IO(0xab, 7)
29#define NBD_DISCONNECT _IO(0xab, 8)
30#define NBD_SET_TIMEOUT _IO(0xab, 9)
Denys Vlasenko43291162018-10-24 15:51:38 +020031#define NBD_SET_FLAGS _IO(0xab, 10)
Rob Landley1fc20c42010-09-23 02:03:47 +020032
33//usage:#define nbdclient_trivial_usage
Denys Vlasenko43291162018-10-24 15:51:38 +020034//usage: "{ [-b BLKSIZE] [-N NAME] [-t SEC] [-p] HOST [PORT] | -d } BLOCKDEV"
Rob Landley1fc20c42010-09-23 02:03:47 +020035//usage:#define nbdclient_full_usage "\n\n"
Denys Vlasenko43291162018-10-24 15:51:38 +020036//usage: "Connect to HOST and provide network block device on BLOCKDEV"
Rob Landley1fc20c42010-09-23 02:03:47 +020037
Denys Vlasenko43291162018-10-24 15:51:38 +020038//TODO: more compat with nbd-client version 3.17 -
39//nbd-client host [ port ] nbd-device [ -connections num ] [ -sdp ] [ -swap ]
40// [ -persist ] [ -nofork ] [ -nonetlink ] [ -systemd-mark ]
41// [ -block-size block size ] [ -timeout seconds ] [ -name name ]
42// [ -certfile certfile ] [ -keyfile keyfile ] [ -cacertfile cacertfile ]
43// [ -tlshostname hostname ]
44//nbd-client -unix path nbd-device [ -connections num ] [ -sdp ] [ -swap ]
45// [ -persist ] [ -nofork ] [ -nonetlink ] [ -systemd-mark ]
46// [ -block-size block size ] [ -timeout seconds ] [ -name name ]
47//nbd-client nbd-device
48//nbd-client -d nbd-device
49//nbd-client -c nbd-device
50//nbd-client -l host [ port ]
51//nbd-client [ -netlink ] -l host
52//
53//Default value for blocksize is 4096
Rob Landley1fc20c42010-09-23 02:03:47 +020054//Allowed values for blocksize are 512,1024,2048,4096
Rob Landley1fc20c42010-09-23 02:03:47 +020055
56int nbdclient_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko43291162018-10-24 15:51:38 +020057int nbdclient_main(int argc, char **argv)
Rob Landley1fc20c42010-09-23 02:03:47 +020058{
Alexander Shishkin46b6cd72010-10-21 13:32:27 +030059#if BB_MMU
Denys Vlasenko43291162018-10-24 15:51:38 +020060 bool nofork;
Alexander Shishkin46b6cd72010-10-21 13:32:27 +030061#endif
Denys Vlasenko43291162018-10-24 15:51:38 +020062 bool opt_d;
63 bool opt_p;
64 const char *host, *port, *device;
65 const char *name;
66 unsigned blksize, size_blocks;
67 unsigned timeout;
68 int ch;
Rob Landley1fc20c42010-09-23 02:03:47 +020069 struct nbd_header_t {
70 uint64_t magic1; // "NBDMAGIC"
Denys Vlasenko43291162018-10-24 15:51:38 +020071 uint64_t magic2; // old style: 0x420281861253 big endian
72 // // new style: 0x49484156454F5054 (IHAVEOPT)
73 } nbd_header;
74 struct old_nbd_header_t {
Rob Landley1fc20c42010-09-23 02:03:47 +020075 uint64_t devsize;
76 uint32_t flags;
77 char data[124];
Denys Vlasenko43291162018-10-24 15:51:38 +020078 } old_nbd_header;
79 struct new_nbd_header_t {
80 uint64_t devsize;
81 uint16_t transmission_flags;
82 char data[124];
83 } new_nbd_header;
84 struct nbd_opt_t {
85 uint64_t magic;
86 uint32_t opt;
87 uint32_t len;
88 } nbd_opts;
Denys Vlasenko7b85ec32015-10-13 17:17:34 +020089
Denys Vlasenko43291162018-10-24 15:51:38 +020090 static const struct option long_options[] = {
91 { "block-size", required_argument, NULL, 'b' },
92 { "timeout" , required_argument, NULL, 't' },
93 { "name" , required_argument, NULL, 'n' },
94 { "persist" , no_argument , NULL, 'p' },
95 { NULL }
96 };
Rob Landley1fc20c42010-09-23 02:03:47 +020097
Denys Vlasenko43291162018-10-24 15:51:38 +020098 BUILD_BUG_ON(offsetof(struct old_nbd_header_t, data) != 8 + 4);
99 BUILD_BUG_ON(offsetof(struct new_nbd_header_t, data) != 8 + 2);
Rob Landley1fc20c42010-09-23 02:03:47 +0200100
101#if !BB_MMU
102 bb_daemonize_or_rexec(DAEMON_CLOSE_EXTRA_FDS, argv);
103#endif
104
Denys Vlasenko43291162018-10-24 15:51:38 +0200105 // Parse args. nbd-client uses stupid "one-dash long options" style :(
106 // Even though short forms (-b,-t,-N,-p) exist for all long opts,
107 // older manpages only contained long forms, which probably resulted
108 // in many scripts using them.
109 blksize = 4096;
110 timeout = 0;
111 name = ""; // use of "" instead of NULL simplifies strlen() later
112 opt_d = opt_p = 0;
113 while ((ch = getopt_long_only(argc, argv, "dN:", long_options, NULL)) != -1) {
114 switch (ch) {
115 case 'p': // -persist
116 opt_p = 1;
117 break;
118 case 'd': // -d
119 opt_d = 1;
120 break;
121 case 'b': // -block-size
122 blksize = xatou(optarg);
123 break;
124 case 't': // -timeout
125 timeout = xatou(optarg);
126 break;
127 case 'N': // -N
128 case 'n': // -name
129 name = optarg;
130 break;
131 default:
132 bb_show_usage();
133 }
134 }
135 argv += optind;
Rob Landley1fc20c42010-09-23 02:03:47 +0200136
Denys Vlasenko43291162018-10-24 15:51:38 +0200137 if (opt_d) { // -d
138 if (argv[0] && !argv[1]) {
139 int nbd = xopen(argv[0], O_RDWR);
140 ioctl(nbd, NBD_DISCONNECT);
141 ioctl(nbd, NBD_CLEAR_SOCK);
142 if (ENABLE_FEATURE_CLEAN_UP)
143 close(nbd);
144 return 0;
145 }
146 bb_show_usage();
147 }
148
149 // Allow only argv[] of: HOST [PORT] BLOCKDEV
150 if (!argv[0] || !argv[1] || (argv[2] && argv[3])) {
151 bb_show_usage();
152 }
153
154 host = argv[0];
155 port = argv[2] ? argv[1] : "10809";
156 device = argv[2] ? argv[2] : argv[1];
157
158 // Repeat until spanked if -persist
159#if BB_MMU
160 nofork = 0;
161#endif
162 do {
Rob Landley1fc20c42010-09-23 02:03:47 +0200163 int sock, nbd;
164 int ro;
Denys Vlasenko43291162018-10-24 15:51:38 +0200165 int proto_new; // 0 for old, 1 for new
Denys Vlasenko3d27d432018-12-27 18:03:20 +0100166#if BB_MMU
Denys Vlasenko43291162018-10-24 15:51:38 +0200167 char *data;
Denys Vlasenko3d27d432018-12-27 18:03:20 +0100168#endif
Rob Landley1fc20c42010-09-23 02:03:47 +0200169
Denys Vlasenko43291162018-10-24 15:51:38 +0200170 // Make sure BLOCKDEV exists
Rob Landley1fc20c42010-09-23 02:03:47 +0200171 nbd = xopen(device, O_RDWR);
172
173 // Find and connect to server
174 sock = create_and_connect_stream_or_die(host, xatou16(port));
Denys Vlasenkoc52cbea2015-08-24 19:48:03 +0200175 setsockopt_1(sock, IPPROTO_TCP, TCP_NODELAY);
Rob Landley1fc20c42010-09-23 02:03:47 +0200176
177 // Log on to the server
Denys Vlasenko43291162018-10-24 15:51:38 +0200178 xread(sock, &nbd_header, 8 + 8);
179 if (memcmp(&nbd_header.magic1, "NBDMAGIC",
180 sizeof(nbd_header.magic1)) != 0
181 ) {
Rob Landley1fc20c42010-09-23 02:03:47 +0200182 bb_error_msg_and_die("login failed");
Denys Vlasenko43291162018-10-24 15:51:38 +0200183 }
184 if (memcmp(&nbd_header.magic2,
185 "\x00\x00\x42\x02\x81\x86\x12\x53",
186 sizeof(nbd_header.magic2)) == 0
187 ) {
188 proto_new = 0;
189 } else if (memcmp(&nbd_header.magic2, "IHAVEOPT", 8) == 0) {
190 proto_new = 1;
191 } else {
192 bb_error_msg_and_die("login failed");
193 }
Rob Landley1fc20c42010-09-23 02:03:47 +0200194
Denys Vlasenko43291162018-10-24 15:51:38 +0200195 if (!proto_new) {
196 xread(sock, &old_nbd_header,
197 sizeof(old_nbd_header.devsize) +
198 sizeof(old_nbd_header.flags) +
199 sizeof(old_nbd_header.data));
200 size_blocks = SWAP_BE64(old_nbd_header.devsize) / blksize;
201 ioctl(nbd, NBD_SET_BLKSIZE, (unsigned long) blksize);
202 ioctl(nbd, NBD_SET_SIZE_BLOCKS, size_blocks);
203 ioctl(nbd, NBD_CLEAR_SOCK);
204 ro = !!(old_nbd_header.flags & htons(2));
Denys Vlasenko3d27d432018-12-27 18:03:20 +0100205#if BB_MMU
Denys Vlasenko43291162018-10-24 15:51:38 +0200206 data = old_nbd_header.data;
Denys Vlasenko3d27d432018-12-27 18:03:20 +0100207#endif
Denys Vlasenko43291162018-10-24 15:51:38 +0200208 } else {
209 unsigned namelen;
210 uint16_t handshake_flags;
Rob Landley1fc20c42010-09-23 02:03:47 +0200211
Denys Vlasenko43291162018-10-24 15:51:38 +0200212 xread(sock, &handshake_flags, sizeof(handshake_flags));
213 xwrite(sock, &const_int_0, sizeof(const_int_0)); // client_flags
214
215 memcpy(&nbd_opts.magic, "IHAVEOPT",
216 sizeof(nbd_opts.magic));
217 nbd_opts.opt = htonl(1); // NBD_OPT_EXPORT_NAME
218 namelen = strlen(name);
219 nbd_opts.len = htonl(namelen);
220 xwrite(sock, &nbd_opts,
221 sizeof(nbd_opts.magic) +
222 sizeof(nbd_opts.opt) +
223 sizeof(nbd_opts.len));
224 xwrite(sock, name, namelen);
225
226 xread(sock, &new_nbd_header,
227 sizeof(new_nbd_header.devsize) +
228 sizeof(new_nbd_header.transmission_flags) +
229 sizeof(new_nbd_header.data));
230 size_blocks = SWAP_BE64(new_nbd_header.devsize) / blksize;
231 ioctl(nbd, NBD_SET_BLKSIZE, (unsigned long) blksize);
232 ioctl(nbd, NBD_SET_SIZE_BLOCKS, size_blocks);
233 ioctl(nbd, NBD_CLEAR_SOCK);
234 ioctl(nbd, NBD_SET_FLAGS,
235 ntohs(new_nbd_header.transmission_flags));
236 ro = !!(new_nbd_header.transmission_flags & htons(2));
Denys Vlasenko3d27d432018-12-27 18:03:20 +0100237#if BB_MMU
Denys Vlasenko43291162018-10-24 15:51:38 +0200238 data = new_nbd_header.data;
Denys Vlasenko3d27d432018-12-27 18:03:20 +0100239#endif
Denys Vlasenko43291162018-10-24 15:51:38 +0200240 }
241
242 if (ioctl(nbd, BLKROSET, &ro) < 0) {
Rob Landley1fc20c42010-09-23 02:03:47 +0200243 bb_perror_msg_and_die("BLKROSET");
Denys Vlasenko43291162018-10-24 15:51:38 +0200244 }
Rob Landley1fc20c42010-09-23 02:03:47 +0200245
Denys Vlasenko43291162018-10-24 15:51:38 +0200246 if (timeout) {
247 if (ioctl(nbd, NBD_SET_TIMEOUT, (unsigned long) timeout)) {
Rob Landley1fc20c42010-09-23 02:03:47 +0200248 bb_perror_msg_and_die("NBD_SET_TIMEOUT");
Denys Vlasenko43291162018-10-24 15:51:38 +0200249 }
250 }
251
252 if (ioctl(nbd, NBD_SET_SOCK, sock)) {
Rob Landley1fc20c42010-09-23 02:03:47 +0200253 bb_perror_msg_and_die("NBD_SET_SOCK");
Denys Vlasenko43291162018-10-24 15:51:38 +0200254 }
Rob Landley1fc20c42010-09-23 02:03:47 +0200255
Denys Vlasenko43291162018-10-24 15:51:38 +0200256 //if (swap) mlockall(MCL_CURRENT|MCL_FUTURE);
Rob Landley1fc20c42010-09-23 02:03:47 +0200257#if BB_MMU
258 // Open the device to force reread of the partition table.
259 // Need to do it in a separate process, since open(device)
260 // needs some other process to sit in ioctl(nbd, NBD_DO_IT).
261 if (fork() == 0) {
Denys Vlasenko43291162018-10-24 15:51:38 +0200262 /* child */
Rob Landley1fc20c42010-09-23 02:03:47 +0200263 char *s = strrchr(device, '/');
Denys Vlasenko43291162018-10-24 15:51:38 +0200264 sprintf(data, "/sys/block/%.32s/pid", s ? s + 1 : device);
Rob Landley1fc20c42010-09-23 02:03:47 +0200265 // Is it up yet?
266 for (;;) {
Denys Vlasenko43291162018-10-24 15:51:38 +0200267 int fd = open(data, O_RDONLY);
Rob Landley1fc20c42010-09-23 02:03:47 +0200268 if (fd >= 0) {
Denys Vlasenko43291162018-10-24 15:51:38 +0200269 if (ENABLE_FEATURE_CLEAN_UP)
270 close(fd);
Rob Landley1fc20c42010-09-23 02:03:47 +0200271 break;
272 }
273 sleep(1);
274 }
275 open(device, O_RDONLY);
276 return 0;
277 }
278
279 // Daemonize here
280 if (!nofork) {
281 daemon(0, 0);
282 nofork = 1;
283 }
284#endif
Rob Landley1fc20c42010-09-23 02:03:47 +0200285 // This turns us (the process that calls this ioctl)
286 // into a dedicated NBD request handler.
287 // We block here for a long time.
288 // When exactly ioctl returns? On a signal,
289 // or if someone does ioctl(NBD_DISCONNECT) [nbd-client -d].
290 if (ioctl(nbd, NBD_DO_IT) >= 0 || errno == EBADR) {
291 // Flush queue and exit
292 ioctl(nbd, NBD_CLEAR_QUEUE);
293 ioctl(nbd, NBD_CLEAR_SOCK);
294 break;
295 }
296
297 close(sock);
298 close(nbd);
Denys Vlasenko43291162018-10-24 15:51:38 +0200299 } while (opt_p);
Rob Landley1fc20c42010-09-23 02:03:47 +0200300
301 return 0;
302}