1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
/* NBD client library in userspace
* Copyright Red Hat
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/* This is a libFuzzer test case for libnbd.
*
* XXX Note:
*
* - This case is mostly unmaintained. The maintainers use AFL++ for
* fuzzing (see libnbd-fuzz-wrapper.c).
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <fcntl.h>
#include <unistd.h>
#include <poll.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/wait.h>
#include <libnbd.h>
#ifndef SOCK_CLOEXEC
#define SOCK_CLOEXEC 0 /* This file doesn't use exec */
#endif
static void client (int sock);
static void server (const uint8_t *data, size_t size, int sock);
/* This is the entry point called by libFuzzer. */
int
LLVMFuzzerTestOneInput (const uint8_t *data, size_t size)
{
pid_t pid;
int sv[2], r, status;
/* Create a connected socket. */
if (socketpair (AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC, 0, sv) == -1) {
perror ("socketpair");
exit (EXIT_FAILURE);
}
/* Fork: The parent will be the libnbd process (client). The child
* will be the phony NBD server listening on the socket.
*/
pid = fork ();
if (pid == -1) {
perror ("fork");
exit (EXIT_FAILURE);
}
if (pid > 0) {
/* Parent: libnbd client. */
close (sv[1]);
client (sv[0]);
close (sv[0]);
again:
r = wait (&status);
if (r == -1) {
if (errno == EINTR)
goto again;
perror ("wait");
exit (EXIT_FAILURE);
}
if (!WIFEXITED (status) || WEXITSTATUS (status) != 0)
fprintf (stderr, "bad exit status %d\n", status);
return 0;
}
/* Child: phony NBD server. */
close (sv[0]);
server (data, size, sv[1]);
close (sv[1]);
_exit (EXIT_SUCCESS);
}
static void
client (int sock)
{
struct nbd_handle *nbd;
char buf[512];
nbd = nbd_create ();
if (nbd == NULL) {
fprintf (stderr, "%s\n", nbd_get_error ());
exit (EXIT_FAILURE);
}
/* Note we ignore errors in these calls because we are only
* interested in whether the process crashes.
*/
/* This tests the handshake phase. */
nbd_connect_socket (nbd, sock);
nbd_pread (nbd, buf, sizeof buf, 0, 0);
nbd_pwrite (nbd, buf, sizeof buf, 0, 0);
nbd_flush (nbd, 0);
nbd_trim (nbd, 512, 0, 0);
nbd_cache (nbd, 512, 0, 0);
/* XXX Test structured reads and block status. */
nbd_shutdown (nbd, 0);
nbd_close (nbd);
}
static void
server (const uint8_t *data, size_t size, int sock)
{
struct pollfd pfds[1];
char rbuf[512];
ssize_t r;
if (size == 0)
shutdown (sock, SHUT_WR);
for (;;) {
pfds[0].fd = sock;
pfds[0].events = POLLIN;
if (size > 0) pfds[0].events |= POLLOUT;
pfds[0].revents = 0;
if (poll (pfds, 1, -1) == -1) {
if (errno == EINTR)
continue;
perror ("poll");
/* This is not an error. */
return;
}
/* We can read from the client socket. Just throw away anything sent. */
if ((pfds[0].revents & POLLIN) != 0) {
r = read (sock, rbuf, sizeof rbuf);
if (r == -1 && errno != EINTR) {
//perror ("read");
return;
}
else if (r == 0) /* end of input from the server */
return;
}
/* We can write to the client socket. */
if ((pfds[0].revents & POLLOUT) != 0) {
if (size > 0) {
r = write (sock, data, size);
if (r == -1 && errno != EAGAIN && errno != EWOULDBLOCK) {
perror ("write");
return;
}
else if (r > 0) {
data += r;
size -= r;
if (size == 0)
shutdown (sock, SHUT_WR);
}
}
}
} /* for (;;) */
}
|