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 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
|
/*****************************************************************************
* Copyright (C) 2011 Lawrence Livermore National Security, LLC.
* Written by Jim Garlick <garlick@llnl.gov> LLNL-CODE-423279
* All Rights Reserved.
*
* This file is part of the Distributed I/O Daemon (diod).
* For details, see <http://code.google.com/p/diod/>.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License (as published by the
* Free Software Foundation) version 2, dated June 1991.
*
* This program 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 terms and conditions of the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA or see
* <http://www.gnu.org/licenses/>.
*****************************************************************************/
/* diodload.c - load generator for diod */
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdint.h>
#include <inttypes.h>
#include <stdarg.h>
#include <stdio.h>
#if HAVE_GETOPT_H
#include <getopt.h>
#endif
#include <string.h>
#include <errno.h>
#include <ctype.h>
#include <libgen.h>
#include <signal.h>
#include <time.h>
#include <pthread.h>
#include "9p.h"
#include "npfs.h"
#include "npclient.h"
#include "list.h"
#include "diod_log.h"
#include "diod_sock.h"
#include "diod_auth.h"
#define OPTIONS "s:m:n:r:g"
#if HAVE_GETOPT_LONG
#define GETOPT(ac,av,opt,lopt) getopt_long (ac,av,opt,lopt,NULL)
static const struct option longopts[] = {
{"server", required_argument, 0, 's'},
{"msize", required_argument, 0, 'm'},
{"numthreads", required_argument, 0, 'n'},
{"runtime", required_argument, 0, 'r'},
{"getattr", no_argument, 0, 'g'},
{0, 0, 0, 0},
};
#else
#define GETOPT(ac,av,opt,lopt) getopt (ac,av,opt)
#endif
typedef enum { LOAD_IO, LOAD_GETATTR } load_t;
typedef struct {
pthread_t t;
time_t stoptime;
char *server;
int msize;
int fd;
uint64_t readbytes;
uint64_t writebytes;
uint64_t opcount;
char *buf;
Npcfsys *fs;
Npcfid *afid;
Npcfid *root;
Npcfid *infile;
Npcfid *outfile;
load_t loadtype;
} thd_t;
static void *loadgen (void *arg);
static void
usage (void)
{
fprintf (stderr,
"Usage: diodload [OPTIONS]\n"
" -s,--server HOST:PORT server (default localhost:564)\n"
" -m,--msize msize (default 65536)\n"
" -n,--numthreads specify thread count (default 16)\n"
" -r,--runtime specify runtime in seconds (default 10)\n"
" -g,--getattr issue getattrs instead of read/write\n"
);
exit (1);
}
int
main (int argc, char *argv[])
{
char *server = NULL;
int msize = 65536;
int numthreads = 16;
int runtime = 10;
int i, c, err;
time_t now = time (NULL);
thd_t *t;
uint64_t readbytes = 0, writebytes = 0, opcount = 0;
load_t loadtype = LOAD_IO;
diod_log_init (argv[0]);
opterr = 0;
while ((c = GETOPT (argc, argv, OPTIONS, longopts)) != -1) {
switch (c) {
case 's': /* --server HOST[:PORT] or /path/to/socket */
server = optarg;
break;
case 'm': /* --msize SIZE */
msize = strtoul (optarg, NULL, 10);
break;
case 'n': /* --numthreads INT */
numthreads = strtoul (optarg, NULL, 10);
break;
case 'r': /* --runtime INT */
runtime = strtoul (optarg, NULL, 10);
break;
case 'g': /* --getattr */
loadtype = LOAD_GETATTR;
break;
default:
usage ();
}
}
if (signal (SIGPIPE, SIG_IGN) == SIG_ERR)
err_exit ("signal");
if (!(t = malloc (sizeof (thd_t) * numthreads)))
msg_exit ("out of memory");
for (i = 0; i < numthreads; i++) {
t[i].server = server;
t[i].msize = msize;
t[i].stoptime = now + runtime;
t[i].fd = -1;
t[i].fs = NULL;
t[i].root = t[i].afid = t[i].infile = t[i].outfile = NULL;
t[i].readbytes = t[i].writebytes = 0;
t[i].loadtype = loadtype;
if (!(t[i].buf = malloc (msize)))
msg_exit ("out of memory");
if ((err = pthread_create (&t[i].t, NULL, loadgen, &t[i])))
errn_exit (err, "pthread_create");
}
for (i = 0; i < numthreads; i++) {
if ((err = pthread_join (t[i].t, NULL)))
errn_exit (err, "pthread_join");
readbytes += t[i].readbytes;
writebytes += t[i].writebytes;
opcount += t[i].opcount;
free (t[i].buf);
}
free (t);
msg ("%"PRIu64" ops/s, %"PRIu64" rMB/s, %"PRIu64" wMB/s",
opcount/runtime,
readbytes/(1024*1024*runtime), writebytes/(1024*1024*runtime));
diod_log_fini ();
exit (0);
}
static void *
loadgen (void *arg)
{
thd_t *t = (thd_t *)arg;
uid_t uid = geteuid ();
void *ret = NULL;
int n, loops = 0;
if ((t->fd = diod_sock_connect (t->server, 0)) < 0)
goto done;
if (!(t->fs = npc_start (t->fd, t->fd, t->msize, 0))) {
errn (np_rerror (), "error negotiating protocol with server");
goto done;
}
if (!(t->afid = npc_auth (t->fs, "ctl", uid, diod_auth))
&& np_rerror () != 0) {
errn (np_rerror (), "error authenticating to server");
goto done;
}
if (!(t->root = npc_attach (t->fs, t->afid, "ctl", uid))) {
errn (np_rerror (), "error attaching to aname=ctl");
goto done;
}
if (t->loadtype == LOAD_IO) {
if (!(t->infile = npc_open_bypath (t->root, "zero", O_RDONLY))) {
errn (np_rerror (), "open zero");
goto done;
}
if (!(t->outfile = npc_open_bypath (t->root, "null", O_WRONLY))) {
errn (np_rerror (), "open null");
goto done;
}
do {
if ((n = npc_pread (t->infile, t->buf, t->msize, 0)) <= 0) {
errn (np_rerror (), "read zero");
break;
}
t->readbytes += n;
if ((n = npc_pwrite (t->outfile, t->buf, t->msize, 0)) < 0) {
errn (np_rerror (), "write null");
break;
}
t->writebytes += n;
t->opcount++;
loops++;
} while ((loops % 100 != 0) || time (NULL) < t->stoptime);
} else if (t->loadtype == LOAD_GETATTR) {
if (!(t->infile = npc_walk (t->root, "null"))) {
errn (np_rerror (), "walk null");
goto done;
}
do {
struct stat sb;
if (npc_fstat (t->infile, &sb) < 0) {
errn (np_rerror (), "walk null");
break;
}
t->opcount++;
loops++;
} while ((loops % 100 != 0) || time (NULL) < t->stoptime);
}
done:
if (t->outfile && npc_clunk (t->outfile) < 0)
errn (np_rerror (), "error clunking null");
if (t->infile && npc_clunk (t->infile) < 0)
errn (np_rerror (), "error clunking zero");
if (t->root && npc_clunk (t->root) < 0)
errn (np_rerror (), "error clunking ctl");
if (t->afid && npc_clunk (t->afid) < 0)
errn (np_rerror (), "error clunking afid");
if (t->fs) {
npc_finish (t->fs); /* closes fd */
t->fd = -1;
}
if (t->fd != -1)
close (t->fd);
return ret;
}
/*
* vi:tabstop=4 shiftwidth=4 expandtab
*/
|