r279: * Mention -persist in nbd-client manpage
[nbd.git] / nbd-client.c
1 /*
2  * Open connection for network block device
3  *
4  * Copyright 1997,1998 Pavel Machek, distribute under GPL
5  *  <pavel@atrey.karlin.mff.cuni.cz>
6  *
7  * Version 1.0 - 64bit issues should be fixed, now
8  * Version 1.1 - added bs (blocksize) option (Alexey Guzeev, aga@permonline.ru)
9  * Version 1.2 - I added new option '-d' to send the disconnect request
10  * Version 2.0 - Version synchronised with server
11  * Version 2.1 - Check for disconnection before INIT_PASSWD is received
12  *      to make errormsg a bit more helpful in case the server can't
13  *      open the exported file.
14  */
15
16 #include "config.h"
17 #include "lfs.h"
18
19 #include <sys/ioctl.h>
20 #include <sys/socket.h>
21 #include <sys/types.h>
22 #include <unistd.h>
23 #include <netinet/tcp.h>
24 #include <netinet/in.h>         /* sockaddr_in, htons, in_addr */
25 #include <netdb.h>              /* hostent, gethostby*, getservby* */
26 #include <stdio.h>
27 #include <fcntl.h>
28 #include <syslog.h>
29 #include <stdlib.h>
30 #include <sys/mount.h>
31
32 #ifndef __GNUC__
33 #error I need GCC to work
34 #endif
35
36 #include <linux/ioctl.h>
37 #define MY_NAME "nbd_client"
38 #include "cliserv.h"
39
40 int opennet(char *name, int port) {
41         int sock;
42         struct sockaddr_in xaddrin;
43         int xaddrinlen = sizeof(xaddrin);
44         struct hostent *hostn;
45
46         hostn = gethostbyname(name);
47         if (!hostn)
48                 err("Gethostname failed: %h\n");
49
50         if ((sock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)) < 0)
51                 err("Socket failed: %m");
52
53         xaddrin.sin_family = AF_INET;
54         xaddrin.sin_port = htons(port);
55         xaddrin.sin_addr.s_addr = *((int *) hostn->h_addr);
56         if ((connect(sock, (struct sockaddr *) &xaddrin, xaddrinlen) < 0))
57                 err("Connect: %m");
58
59         setmysockopt(sock);
60         return sock;
61 }
62
63 void negotiate(int sock, u64 *rsize64, u32 *flags) {
64         u64 magic, size64;
65         char buf[256] = "\0\0\0\0\0\0\0\0\0";
66
67         printf("Negotiation: ");
68         if (read(sock, buf, 8) < 0)
69                 err("Failed/1: %m");
70         if (strlen(buf)==0)
71                 err("Server closed connection");
72         if (strcmp(buf, INIT_PASSWD))
73                 err("INIT_PASSWD bad");
74         printf(".");
75         if (read(sock, &magic, sizeof(magic)) < 0)
76                 err("Failed/2: %m");
77         magic = ntohll(magic);
78         if (magic != cliserv_magic)
79                 err("Not enough cliserv_magic");
80         printf(".");
81
82         if (read(sock, &size64, sizeof(size64)) < 0)
83                 err("Failed/3: %m\n");
84         size64 = ntohll(size64);
85
86 #ifdef NBD_SET_SIZE_BLOCKS
87         if ((size64>>10) > (~0UL >> 1)) {
88                 printf("size = %luMB", (unsigned long)(size64>>20));
89                 err("Exported device is too big for me. Get 64-bit machine :-(\n");
90         } else
91                 printf("size = %luKB", (unsigned long)(size64>>10));
92 #else
93         if (size64 > (~0UL >> 1)) {
94                 printf("size = %luKB", (unsigned long)(size64>>10));
95                 err("Exported device is too big. Get 64-bit machine or newer kernel :-(\n");
96         } else
97                 printf("size = %lu", (unsigned long)(size64));
98 #endif
99
100         if (read(sock, flags, sizeof(*flags)) < 0)
101                 err("Failed/4: %m\n");
102         *flags = ntohl(*flags);
103
104         if (read(sock, &buf, 124) < 0)
105                 err("Failed/5: %m\n");
106         printf("\n");
107
108         *rsize64 = size64;
109 }
110
111 void setsizes(int nbd, u64 size64, int blocksize, u32 flags) {
112         unsigned long size;
113         int read_only = (flags & NBD_FLAG_READ_ONLY) ? 1 : 0;
114
115 #ifdef NBD_SET_SIZE_BLOCKS
116         if (size64/blocksize > (~0UL >> 1))
117                 err("Device too large.\n");
118         else {
119                 int er;
120                 if (ioctl(nbd, NBD_SET_BLKSIZE, (unsigned long)blocksize) < 0)
121                         err("Ioctl/1.1a failed: %m\n");
122                 size = (unsigned long)(size64/blocksize);
123                 if ((er = ioctl(nbd, NBD_SET_SIZE_BLOCKS, size)) < 0)
124                         err("Ioctl/1.1b failed: %m\n");
125                 fprintf(stderr, "bs=%d, sz=%lu\n", blocksize, size);
126         }
127 #else
128         if (size64 > (~0UL >> 1)) {
129                 err("Device too large.\n");
130         } else {
131                 size = (unsigned long)size64;
132                 if (ioctl(nbd, NBD_SET_SIZE, size) < 0)
133                         err("Ioctl NBD_SET_SIZE failed: %m\n");
134         }
135 #endif
136
137         ioctl(nbd, NBD_CLEAR_SOCK);
138
139         if (ioctl(nbd, BLKROSET, (unsigned long) &read_only) < 0)
140                 err("Unable to set read-only attribute for device");
141 }
142
143 void finish_sock(int sock, int nbd, int swap) {
144         if (ioctl(nbd, NBD_SET_SOCK, sock) < 0)
145                 err("Ioctl NBD_SET_SOCK failed: %m\n");
146
147 #ifndef SO_SWAPPING
148         if (swap)
149                 err("You have to compile me on machine with swapping patch enabled in order to use it later.");
150 #else
151         if (swap)
152                 if (setsockopt(sock, SOL_SOCKET, SO_SWAPPING, &one, sizeof(int)) < 0)
153                         err("Could not enable swapping: %m");
154 #endif
155 }
156
157 int main(int argc, char *argv[]) {
158         int port, sock, nbd;
159         int blocksize=1024;
160         char *hostname, *nbddev;
161         int swap=0;
162         int cont=0;
163         int timeout=0;
164         u64 size64;
165         u32 flags;
166
167         logging();
168
169         if (argc < 3) {
170         errmsg:
171                 fprintf(stderr, "nbd-client version %s\n", PACKAGE_VERSION);
172                 fprintf(stderr, "Usage: nbd-client [bs=blocksize] host port nbd_device [-swap] [-persist]\n");
173                 fprintf(stderr, "Or   : nbd-client -d nbd_device\n");
174                 fprintf(stderr, "Default value for blocksize is 1024 (recommended for ethernet)\n");
175                 fprintf(stderr, "Allowed values for blocksize are 512,1024,2048,4096\n"); /* will be checked in kernel :) */
176                 fprintf(stderr, "Note, that kernel 2.4.2 and older ones do not work correctly with\n");
177                 fprintf(stderr, "blocksizes other than 1024 without patches\n");
178                 return 1;
179         }
180
181         ++argv; --argc; /* skip programname */
182         
183         if (strcmp(argv[0], "-d")==0) {
184                 nbd = open(argv[1], O_RDWR);
185                 if (nbd < 0)
186                         err("Can not open NBD: %m");
187                 printf("Disconnecting: que, ");
188                 if (ioctl(nbd, NBD_CLEAR_QUE)< 0)
189                         err("Ioctl failed: %m\n");
190                 printf("disconnect, ");
191 #ifdef NBD_DISCONNECT
192                 if (ioctl(nbd, NBD_DISCONNECT)<0)
193                         err("Ioctl failed: %m\n");
194                 printf("sock, ");
195 #else
196                 fprintf(stderr, "Can't disconnect: I was not compiled with disconnect support!\n" );
197                 exit(1);
198 #endif
199                 if (ioctl(nbd, NBD_CLEAR_SOCK)<0)
200                         err("Ioctl failed: %m\n");
201                 printf("done\n");
202                 return 0;
203         }
204         
205         if (strncmp(argv[0], "bs=", 3)==0) {
206                 blocksize=atoi(argv[0]+3);
207                 ++argv; --argc; /* skip blocksize */
208         }
209
210         if (argc==0) goto errmsg;
211         hostname=argv[0];
212         ++argv; --argc; /* skip hostname */
213
214         if (argc==0) goto errmsg;
215         port = atoi(argv[0]);
216         ++argv; --argc; /* skip port */
217
218         if (argc==0) goto errmsg;
219         sock = opennet(hostname, port);
220         nbddev = argv[0];
221         nbd = open(nbddev, O_RDWR);
222         if (nbd < 0)
223           err("Can not open NBD: %m");
224         ++argv; --argc; /* skip device */
225
226         if (argc>3) goto errmsg;
227         if (argc!=0) {
228                 if(strncmp(argv[0], "-swap", 5)==0) {
229                         swap=1;
230                         ++argv;--argc;
231                 }
232         }
233         if (argc!=0) {
234                 if(strncmp(argv[0], "-persist", 8)==0) {
235                         cont=1;
236                         ++argv;--argc;
237                 }
238         }
239         if(argc!=0) {
240                 if(strncmp(argv[0], "-timeout", 8)==0) {
241 #ifdef NBD_SET_TIMEOUT
242                         timeout=strtol(++argv, NULL, 0);
243                         ++argv;--argc--;
244 #else
245                         fprintf(stderr, "This nbd-client does not support -timeout yet; please recompile on a more recent kernel");
246                         exit(EXIT_FAILURE);
247 #endif
248                 }
249         }
250         argv=NULL; argc=0; /* don't use it later suddenly */
251
252         negotiate(sock, &size64, &flags);
253         setsizes(nbd, size64, blocksize, flags);
254         finish_sock(sock, nbd, swap);
255
256         /* Go daemon */
257         
258         chdir("/");
259 #ifndef NOFORK
260         if (fork())
261                 exit(0);
262 #endif
263
264 #ifdef NBD_SET_TIMEOUT
265         if(ioctl(nbd, NBD_SET_TIMEOUT, &timeout)<0) {
266                 fprintf(stderr, "Setting timeout failed: %m");
267                 exit(EXIT_FAILURE);
268         }
269 #endif
270         do {
271                 if (ioctl(nbd, NBD_DO_IT) < 0) {
272                         fprintf(stderr, "Kernel call returned: %m");
273                         if(errno==EBADR) {
274                                 /* The user probably did 'nbd-client -d' on us.
275                                  * quit */
276                                 cont=0;
277                         } else {
278                                 if(cont) {
279                                         u64 new_size;
280                                         u32 new_flags;
281
282                                         fprintf(stderr, " Reconnecting\n");
283                                         close(sock); close(nbd);
284                                         sock = opennet(hostname, port);
285                                         nbd = open(nbddev, O_RDWR);
286                                         negotiate(sock, &new_size, &new_flags);
287                                         if (size64 != new_size) {
288                                                 err("Size of the device changed. Bye");
289                                         }
290                                         setsizes(nbd, size64, blocksize,
291                                                                 new_flags);
292
293                                         finish_sock(sock,nbd,swap);
294                                 }
295                         }
296                 } else {
297                         /* We're on 2.4. It's not clearly defined what exactly
298                          * happened at this point. Probably best to quit, now
299                          */
300                         fprintf(stderr, "Kernel call returned.");
301                         cont=0;
302                 }
303         } while(cont);
304         printf("Closing: que, ");
305         ioctl(nbd, NBD_CLEAR_QUE);
306         printf("sock, ");
307         ioctl(nbd, NBD_CLEAR_SOCK);
308         printf("done\n");
309         return 0;
310 }