/* * Network Block Device - server * * Copyright 1996-1998 Pavel Machek, distribute under GPL * * * Version 1.0 - hopefully 64-bit-clean * Version 1.1 - merging enhancements from Josh Parsons, * Version 1.2 - autodetect size of block devices, thanx to Peter T. Breuer" */ #define VERSION "1.3" #define GIGA (1*1024*1024*1024) /* use lseek64 exclusively */ #define _LARGEFILE_SOURCE // Some more functions for correct standard I/O. #define _LARGEFILE64_SOURCE // Additional functionality from LFS for large files #include #include #include #include /* sockaddr_in, htons, in_addr */ #include /* hostent, gethostby*, getservby* */ #include #include #include #include #include #include #include #define _IO(a,b) #define ISSERVER #define MY_NAME "nbd_server" #include "cliserv.h" #undef _IO /* Deep magic: ioctl.h defines _IO macro (at least on linux) */ #include #include /* For BLKGETSIZE */ // #define DODBG // #define DEBUG( a... ) printf( a ) #define DEBUG( a... ) do { } while(0) inline void readit(int f, void *buf, int len) { int res; while (len > 0) { DEBUG("*"); if ((res = read(f, buf, len)) <= 0) err("Read failed: %m"); len -= res; buf += res; } } inline void writeit(int f, void *buf, int len) { int res; while (len > 0) { DEBUG("+"); if ((res = write(f, buf, len)) <= 0) err("Write failed: %m"); len -= res; buf += res; } } int port; /* Port I'm listening at */ char *exportname; /* File I'm exporting */ u64 exportsize = ~0, hunksize = ~0; /* ...and its length */ int flags = 0; int export[1024]; #define F_READONLY 1 #define F_MULTIFILE 2 void cmdline(int argc, char *argv[]) { int i; if (argc < 3) { printf("This is nbd-server version " VERSION "\n"); printf("Usage: port file_to_export [size][kKmM] [-r]\n" " -r read only\n" " if port is set to 0, stdin is used (for running from inetd)\n" " if file_to_export contains '%%s', it is substituted with IP\n" " address of machine trying to connect\n" ); exit(0); } port = atoi(argv[1]); for (i = 3; i < argc; i++) { if (*argv[i] == '-') { switch (argv[i][1]) { case 'r': flags |= F_READONLY; break; case 'm': flags |= F_MULTIFILE; hunksize = 1*GIGA; break; } } else { u64 es; int last = strlen(argv[i])-1; char suffix = argv[i][last]; if (suffix == 'k' || suffix == 'K' || suffix == 'm' || suffix == 'M') argv[i][last] = '\0'; es = (u64)atol(argv[i]); switch (suffix) { case 'm': case 'M': es <<= 10; case 'k': case 'K': es <<= 10; default : break; } exportsize = es; } } exportname = argv[2]; } int connectme(int port) { struct sockaddr_in addrin; int addrinlen = sizeof(addrin); int net, sock; int size = 1; if ((sock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)) < 0) err("socket: %m"); // SteelEye change - reuse the port number if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &size, sizeof(int)) < 0) err("setsockopt: %m"); DEBUG("Waiting for connections... bind, "); addrin.sin_family = AF_INET; addrin.sin_port = htons(port); addrin.sin_addr.s_addr = 0; if (bind(sock, (struct sockaddr *) &addrin, addrinlen) < 0) err("bind: %m"); DEBUG("listen, "); if (listen(sock, 1) < 0) err("listen: %m"); DEBUG("accept, "); if ((net = accept(sock, (struct sockaddr *) &addrin, &addrinlen)) < 0) err("accept: %m"); return net; } #define SEND writeit( net, &reply, sizeof( reply )); #define ERROR { reply.error = htonl(-1); SEND; reply.error = 0; lastpoint = -1; } u64 lastpoint = -1; void maybeseek(int handle, u64 a) { if (a > exportsize) err("Can not happen\n"); if (lastpoint != a) { if (lseek64(handle, a, SEEK_SET) < 0) err("Can not seek locally!\n"); lastpoint = a; } else { DEBUG("@"); } } int expread(u64 a, char *buf, int len) { maybeseek(export[a/hunksize], a%hunksize); return (read(export[a/hunksize], buf, len) != len); } int expwrite(u64 a, char *buf, int len) { maybeseek(export[a/hunksize], a%hunksize); return (write(export[a/hunksize], buf, len) != len); } int mainloop(int net) { struct nbd_request request; struct nbd_reply reply; char zeros[300]; int i = 0; u64 size_host; bzero(zeros, 290); if (write(net, INIT_PASSWD, 8) < 0) err("Negotiation failed: %m"); cliserv_magic = htonll(cliserv_magic); if (write(net, &cliserv_magic, sizeof(cliserv_magic)) < 0) err("Negotiation failed: %m"); size_host = htonll(exportsize); if (write(net, &size_host, 8) < 0) err("Negotiation failed: %m"); if (write(net, zeros, 128) < 0) err("Negotiation failed: %m"); DEBUG("Entering request loop!\n"); reply.magic = htonl(NBD_REPLY_MAGIC); reply.error = 0; while (1) { /* SteelEye change - need dynamic buffer to work with elevator */ static long max_nbd_request=131072; /* 128K */ static char *buf=NULL; int len; #ifdef DODBG i++; printf("%d: ", i); #endif readit(net, &request, sizeof(request)); request.from = ntohll(request.from); request.type = ntohl(request.type); len = ntohl(request.len); if (request.magic != htonl(NBD_REQUEST_MAGIC)) err("Not enough magic."); DEBUG("request len: %d bytes\n", len); while (len > max_nbd_request || !buf) { /* SteelEye change - (re)allocate the buffer */ if (buf) free(buf); if (len > max_nbd_request) max_nbd_request = len; buf=malloc(max_nbd_request); if (!buf) DEBUG("failed to allocate %d byte buffer\n", max_nbd_request); } #ifdef DODBG printf("%s from %d (%d) len %d, ", (request.type ? "WRITE" : "READ"), (int) request.from, (int) request.from / 512, len); #endif memcpy(reply.handle, request.handle, sizeof(reply.handle)); if (((request.from + len) > exportsize) || ((flags & F_READONLY) && request.type)) { DEBUG("[RANGE!]"); ERROR; continue; } if (request.type) { /* WRITE */ DEBUG("wr: net->buf, "); readit(net, buf, len); DEBUG("buf->exp, "); if (expwrite(request.from, buf, len)) { DEBUG("Write failed: %m" ); ERROR; continue; } lastpoint += len; SEND; continue; } /* READ */ DEBUG("exp->buf, "); if (expread(request.from, buf + sizeof(struct nbd_reply), len)) { lastpoint = -1; DEBUG("Read failed: %m"); ERROR; continue; } lastpoint += len; DEBUG("buf->net, "); memcpy(buf, &reply, sizeof(struct nbd_reply)); writeit(net, buf, len + sizeof(struct nbd_reply)); DEBUG("OK!\n"); } } char exportname2[1024]; void set_peername(int net) { struct sockaddr_in addrin; int addrinlen = sizeof( addrin ); char *peername; if (getpeername( net, (struct sockaddr *) &addrin, &addrinlen ) < 0) err("getsockname failed: %m"); peername = inet_ntoa(addrin.sin_addr); sprintf(exportname2, exportname, peername); syslog(LOG_INFO, "connect from %s, assigned file is %s", peername, exportname2); } u64 size_autodetect(int export) { u64 es; DEBUG("looking for export size with lseek SEEK_END\n"); if ((es = lseek64(export, 0, SEEK_END)) == MINUS_ONE_64 || es == 0) { struct stat stat_buf = { 0, } ; int error; DEBUG("looking for export size with fstat\n"); if ((error = fstat(export, &stat_buf)) == -1 || stat_buf.st_size == 0 ) { DEBUG("looking for export size with ioctl BLKGETSIZE\n"); #ifdef BLKGETSIZE if(ioctl(export, BLKGETSIZE, &es) || es == 0) { #else if(1){ #endif err("Could not find size of exported block device: %m"); } else { es *= 512; /* assume blocksize 512 */ } } else { es = stat_buf.st_size; } } return es; } int main(int argc, char *argv[]) { int net; u64 i; if (sizeof( struct nbd_request )!=28) err("Bad size of structure. Alignment problems?"); logging(); cmdline(argc, argv); if (port) net = connectme(port); else net = 0; set_peername(net); for (i=0; i (~0UL >> 1)) if ((exportsize >> 10) > (~0UL >> 1)) syslog(LOG_INFO, "size of exported file/device is %luMB", (unsigned long)(exportsize >> 20)); else syslog(LOG_INFO, "size of exported file/device is %luKB", (unsigned long)(exportsize >> 10)); else syslog(LOG_INFO, "size of exported file/device is %lu", (unsigned long)exportsize); setmysockopt(net); mainloop(net); return 0; }