r25: * Added Large File Support to nbd-server.
[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 <asm/page.h>
17 #include <sys/ioctl.h>
18 #include <sys/socket.h>
19 #include <sys/types.h>
20 #include <unistd.h>
21 #include <netinet/tcp.h>
22 #include <netinet/in.h>         /* sockaddr_in, htons, in_addr */
23 #include <netdb.h>              /* hostent, gethostby*, getservby* */
24 #include <stdio.h>
25 #include <fcntl.h>
26 #include <syslog.h>
27 #include <stdlib.h>
28
29 #define MY_NAME "nbd_client"
30 #ifndef __GNUC__
31 #error I need GCC to work
32 #endif
33
34 #include <linux/ioctl.h>
35 #include "cliserv.h"
36
37 int opennet(char *name, int port)
38 {
39         int sock;
40         struct sockaddr_in xaddrin;
41         int xaddrinlen = sizeof(xaddrin);
42         struct hostent *hostn;
43
44         hostn = gethostbyname(name);
45         if (!hostn)
46                 err("Gethostname failed: %h\n");
47
48         if ((sock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)) < 0)
49                 err("Socket failed: %m");
50
51         xaddrin.sin_family = AF_INET;
52         xaddrin.sin_port = htons(port);
53         xaddrin.sin_addr.s_addr = *((int *) hostn->h_addr);
54         if ((connect(sock, (struct sockaddr *) &xaddrin, xaddrinlen) < 0))
55                 err("Connect: %m");
56
57         setmysockopt(sock);
58         return sock;
59 }
60
61 int main(int argc, char *argv[])
62 {
63         int port, sock, nbd, one = 1;
64         u64 magic, size64;
65         unsigned long size;
66         char buf[256] = "\0\0\0\0\0\0\0\0\0";
67         int blocksize=1024;
68         char *hostname;
69         int swap=0;
70
71         logging();
72
73         if (argc < 3) {
74         errmsg:
75                 fprintf(stderr, "Usage: nbd-client [bs=blocksize] host port nbd_device [-swap]\n");
76                 fprintf(stderr, "Or   : nbd-client -d nbd_device\n");
77                 fprintf(stderr, "Default value for blocksize is 1024 (recommended for ethernet)\n");
78                 fprintf(stderr, "Allowed values for blocksize are 512,1024,2048,4096\n"); /* will be checked in kernel :) */
79                 fprintf(stderr, "Note, that kernel 2.4.2 and older ones do not work correctly with\n");
80                 fprintf(stderr, "blocksizes other than 1024 without patches\n");
81                 return 1;
82         }
83
84         ++argv; --argc; /* skip programname */
85         
86         if (strcmp(argv[0], "-d")==0) {
87           nbd = open(argv[1], O_RDWR);
88           if (nbd < 0)
89                 err("Can not open NBD: %m");
90           printf("Disconnecting: que, ");
91           if (ioctl(nbd, NBD_CLEAR_QUE)< 0)
92                 err("Ioctl failed: %m\n");
93           printf("disconnect, ");
94 #ifdef NBD_DISCONNECT
95           if (ioctl(nbd, NBD_DISCONNECT)<0)
96                 err("Ioctl failed: %m\n");
97           printf("sock, ");
98 #else
99           fprintf(stderr, "Can't disconnect: I was not compiled with disconnect support!\n" );
100           exit(1);
101 #endif
102           if (ioctl(nbd, NBD_CLEAR_SOCK)<0)
103                 err("Ioctl failed: %m\n");
104           printf("done\n");
105           return 0;
106         }
107
108         if (strncmp(argv[0], "bs=", 3)==0) {
109           blocksize=atoi(argv[0]+3);
110           ++argv; --argc; /* skip blocksize */
111         }
112
113         if (argc==0) goto errmsg;
114         hostname=argv[0];
115         ++argv; --argc; /* skip hostname */
116
117         if (argc==0) goto errmsg;
118         port = atoi(argv[0]);
119         ++argv; --argc; /* skip port */
120
121         if (argc==0) goto errmsg;
122         sock = opennet(hostname, port);
123         nbd = open(argv[0], O_RDWR);
124         if (nbd < 0)
125           err("Can not open NBD: %m");
126         ++argv; --argc; /* skip device */
127
128         if (argc>1) goto errmsg;
129         if (argc!=0) swap=1;
130         argv=NULL; argc=0; /* don't use it later suddenly */
131
132         printf("Negotiation: ");
133         if (read(sock, buf, 8) < 0)
134                 err("Failed/1: %m");
135         if (strlen(buf)==0)
136                 err("Server closed connection");
137         if (strcmp(buf, INIT_PASSWD))
138                 err("INIT_PASSWD bad");
139         printf(".");
140         if (read(sock, &magic, sizeof(magic)) < 0)
141                 err("Failed/2: %m");
142         magic = ntohll(magic);
143         if (magic != cliserv_magic)
144                 err("Not enough cliserv_magic");
145         printf(".");
146
147         if (read(sock, &size64, sizeof(size64)) < 0)
148                 err("Failed/3: %m\n");
149         size64 = ntohll(size64);
150
151 #ifdef NBD_SET_SIZE_BLOCKS
152         if ((size64>>10) > (~0UL >> 1)) {
153                 printf("size = %luMB", (unsigned long)(size64>>20));
154                 err("Exported device is too big for me. Get 64-bit machine :-(\n");
155         } else
156                 printf("size = %luKB", (unsigned long)(size64>>10));
157 #else
158         if (size64 > (~0UL >> 1)) {
159                 printf("size = %luKB", (unsigned long)(size64>>10));
160                 err("Exported device is too big. Get 64-bit machine or newer kernel :-(\n");
161         } else
162                 printf("size = %lu", (unsigned long)(size64));
163 #endif
164
165         if (read(sock, &buf, 128) < 0)
166                 err("Failed/4: %m\n");
167         printf("\n");
168
169 #ifdef NBD_SET_SIZE_BLOCKS
170         if (size64/blocksize > (~0UL >> 1))
171                 err("Device too large.\n");
172         else {
173                 int er;
174                 if (ioctl(nbd, NBD_SET_BLKSIZE, (unsigned long)blocksize) < 0)
175                         err("Ioctl/1.1a failed: %m\n");
176                 size = (unsigned long)(size64/blocksize);
177                 if ((er = ioctl(nbd, NBD_SET_SIZE_BLOCKS, size)) < 0)
178                         err("Ioctl/1.1b failed: %m\n");
179 fprintf(stderr, "bs=%d, sz=%lu\n", blocksize, size);
180         }
181 #else
182         if (size64 > (~0UL >> 1)) {
183                 err("Device too large.\n");
184         } else {
185                 size = (unsigned long)size64;
186                 if (ioctl(nbd, NBD_SET_SIZE, size) < 0)
187                         err("Ioctl/1 failed: %m\n");
188         }
189 #endif
190
191         ioctl(nbd, NBD_CLEAR_SOCK);
192         if (ioctl(nbd, NBD_SET_SOCK, sock) < 0)
193                 err("Ioctl/2 failed: %m\n");
194
195 #ifndef SO_SWAPPING
196         if (swap)
197                 err("You have to compile me on machine with swapping patch enabled in order to use it later.");
198 #else
199         if (swap)
200                 if (setsockopt(sock, SOL_SOCKET, SO_SWAPPING, &one, sizeof(int)) < 0)
201                          err("Could not enable swapping: %m");
202 #endif
203
204         /* Go daemon */
205
206         chdir("/");
207         if (fork())
208                 exit(0);
209
210         if (ioctl(nbd, NBD_DO_IT) < 0)
211                 fprintf(stderr, "Kernel call returned: %m");
212         else
213                 fprintf(stderr, "Kernel call returned.");
214         printf("Closing: que, ");
215         ioctl(nbd, NBD_CLEAR_QUE);
216         printf("sock, ");
217         ioctl(nbd, NBD_CLEAR_SOCK);
218         printf("done\n");
219         return 0;
220 }