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 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
|
/*
* Copyright (C) 1999-2004 by CERN/IT/PDP/DM
* All rights reserved
*/
/*
* Creates one file and recursively adds a specified number of
* symlinks per thread. Each thread then recursively reads the
* symlinks until the original file is reached. The time (in
* microseconds) for
* each thread to reach the file is printed to stdout as well
* as the total time for all threads to finish.
*
* Usage: ./nested_symlinks.c -d [directory name] -n [nesting
* level of symlinks] -t [number of threads]
*
*/
#include <stdio.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <dirent.h>
#include <uuid/uuid.h>
#include <sys/times.h>
#include <sys/time.h>
#include <sys/types.h>
#if defined(_WIN32)
#include <winsock2.h>
#define F_OK 0
#else
#include <unistd.h>
#endif
#include "Cns_api.h"
#include "Cns.h"
#include "Cthread_api.h"
#include "serrno.h"
#define NLINKS 10
extern char *getenv();
extern char *optarg;
char Cnsdir[CA_MAXPATHLEN+1];
char filename[CA_MAXPATHLEN+1];
int nb_links = NLINKS;
int nb_threads = 1;
main(argc, argv)
int argc;
char **argv;
{
int c;
char Cnshost[CA_MAXHOSTNAMELEN+1];
char target[CA_MAXPATHLEN+1];
char linkname[CA_MAXPATHLEN+1];
char fnbuf[CA_MAXPATHLEN+1];
time_t current_time;
char dir[CA_MAXPATHLEN+1];
void *doit(void *);
char *dp;
char *endp;
int errflg = 0;
int i,j;
char *p;
char pid4print[11];
struct Cns_filestat statbuf;
int *tid;
struct tm *tm = NULL;
int depth = 0;
char append[CA_MAXPATHLEN+1];
char thread_dir[CA_MAXPATHLEN+1];
char guid[CA_MAXGUIDLEN+1];
uuid_t uuid;
struct timeval utime;
long start_time_us, end_time_us;
#if defined(_WIN32)
WSADATA wsadata;
#endif
/* get command line options */
while ((c = getopt (argc, argv, "d:n:t:")) != EOF) {
switch (c) {
case 'd':
strcpy(dir, optarg);
break;
case 'n':
nb_links = strtol (optarg, &dp, 10);
if (*dp != '\0') {
fprintf (stderr, "invalid value for option -n\n", nb_links);
errflg++;
}
if (nb_links > 999999){
fprintf(stderr, "Maximum number of links is 999999\n");
errflg++;
}
break;
case 't':
nb_threads = strtol (optarg, &dp, 10);
if (*dp != '\0' || nb_threads <= 0) {
fprintf (stderr, "invalid value for option -t\n");
errflg++;
}
break;
case '?':
errflg++;
break;
default:
break;
}
}
#if defined(_WIN32)
if (WSAStartup (MAKEWORD (2, 0), &wsadata)) {
fprintf (stderr, "WSAStartup unsuccessful\n");
exit (SYERR);
}
#endif
/* set up directory name according to command line options */
sprintf (pid4print, "%d", getpid());
if (dir) {
if (*dir != '/') {
if ((p = getenv ("CASTOR_HOME")) == NULL ||
strlen (p) + strlen (dir) + strlen (pid4print) + 20 > CA_MAXPATHLEN) {
fprintf (stderr, "invalid value for option -d\n");
errflg++;
} else
sprintf (Cnsdir, "%s/%s", p, dir);
} else {
if (strlen (dir) + strlen (pid4print) + 19 > CA_MAXPATHLEN) {
fprintf (stderr, "invalid value for option -d\n");
errflg++;
} else
strcpy (Cnsdir, dir);
}
} else {
gethostname (Cnshost, sizeof(Cnshost));
if ((p = getenv ("CASTOR_HOME")) == NULL ||
strlen (p) + strlen (Cnshost) + strlen (pid4print) + 37 > CA_MAXPATHLEN) {
fprintf (stderr, "cannot set dir name\n");
errflg++;
} else {
(void) time (¤t_time);
tm = localtime (¤t_time);
sprintf (Cnsdir, "%s/Cnstest/%s/%d%02d%02d", p, Cnshost,
tm->tm_year+1900, tm->tm_mon+1, tm->tm_mday);
}
}
if (errflg) {
fprintf (stderr, "usage: %s %s\n", argv[0],
"[-d dir] [-t number_of_threads] [-n nesting_level]");
#if defined(_WIN32)
WSACleanup();
#endif
exit (USERR);
}
/* create the directory if not there already */
if (Cns_stat (Cnsdir, &statbuf) < 0) {
if (serrno == ENOENT) {
endp = strrchr (Cnsdir, '/');
p = endp;
while (p > Cnsdir) {
*p = '\0';
c = Cns_access (Cnsdir, F_OK);
if (c == 0) break;
p = strrchr (Cnsdir, '/');
}
while (p <= endp) {
*p = '/';
c = Cns_mkdir (Cnsdir, 0777);
if (c < 0 && serrno != EEXIST) {
fprintf (stderr, "cannot create %s: %s\n",
Cnsdir, sstrerror(serrno));
errflg++;
break;
}
p += strlen (p);
}
} else {
fprintf (stderr, "%s: %s\n", Cnsdir, sstrerror(serrno));
errflg++;
}
}
/* add an extra directory for each thread */
if (nb_threads > 1) {
for (i=0; i< nb_threads; i++) {
sprintf(thread_dir, "%s", Cnsdir);
sprintf(append, "/thread-%d", i);
strcat(thread_dir, append);
if (Cns_stat (thread_dir, &statbuf) <0) {
if (Cns_mkdir (thread_dir, 0777) < 0) {
fprintf(stderr, "cannot create %s: %s\n", thread_dir, sstrerror(serrno));
errflg++;
break;
}
}
}
}
if (tm == NULL) {
(void) time (¤t_time);
tm = localtime (¤t_time);
}
/* generate the LFN */
sprintf (filename, "%02d%02d%02d_%d_%d",
tm->tm_hour, tm->tm_min, tm->tm_sec, getpid(), lrand48());
sprintf (fnbuf, "%s/%s", Cnsdir, filename);
uuid_generate(uuid);
uuid_unparse(uuid, guid);
if (Cns_creatg (fnbuf, guid, 0666) < 0) {
fprintf (stderr, "Error in creatg: %s: %s\n", fnbuf, sstrerror(serrno));
}
/* generate all the symlinks */
for (j=0; j < nb_threads; j++) {
sprintf(linkname, "%s_link", filename);
strcpy(dir, Cnsdir);
strcat(dir, "/");
if (nb_threads > 1)
sprintf(thread_dir, "thread-%d/",j);
else sprintf(thread_dir, "");
strcat(dir,thread_dir);
strcpy(fnbuf, dir);
strcat(fnbuf, linkname);
p = fnbuf + strlen (fnbuf);
strcpy(target, filename);
for (i = 0; i < nb_links; i++) {
sprintf(p, "%d", i);
if (Cns_symlink (target, fnbuf) < 0) {
fprintf (stderr, "Error in symlink: %s: %s\n", fnbuf, sstrerror(serrno));
break;
}
strcpy(target, fnbuf);
}
}
/* set each thread going */
gettimeofday( &utime, NULL);
start_time_us = utime.tv_sec*1000000+utime.tv_usec;
if (! errflg) {
if ((tid = calloc (nb_threads, sizeof(int))) == NULL) {
fprintf (stderr, "malloc error\n");
errflg++;
} else {
for (i = 0; i < nb_threads; i++) {
if ((tid[i] = Cthread_create (&doit, &i)) < 0) {
fprintf (stderr, " error creating thread %d\n", i);
errflg++;
}
}
for (i = 0; i < nb_threads; i++) {
(void)Cthread_join (tid[i], NULL);
}
}
}
gettimeofday( &utime, NULL);
end_time_us = utime.tv_sec*1000000+utime.tv_usec;
#if defined(_WIN32)
WSACleanup();
#endif
if (errflg)
exit (USERR);
printf ("TOTAL: %d\n", end_time_us-start_time_us);
exit (0);
}
void *
doit(arg)
void *arg;
{
char thread_dir[CA_MAXPATHLEN+1];
char dir[CA_MAXPATHLEN+1];
char link_buf[CA_MAXPATHLEN+1];
char target[CA_MAXPATHLEN+1];
struct Cns_filestat stat;
struct timeval utime;
long start_time_us, end_time_us;
strcpy(dir, Cnsdir);
strcat(dir, "/");
if (nb_threads > 1 ){
sprintf(thread_dir, "thread-%d/",*(int *)arg);
strcat(dir,thread_dir);
}
strcat(dir, filename);
sprintf(target, "%s_link%d", dir, nb_links-1);
gettimeofday( &utime, NULL);
start_time_us = utime.tv_sec*1000000+utime.tv_usec;
/* recursive read of symlinks until original file is found */
while ( strcmp(link_buf, filename) != 0) {
if (Cns_readlink(target, link_buf, CA_MAXPATHLEN+1) < 0) {
fprintf(stderr, "Cannot readlink %s : %s\n", target,
sstrerror(serrno));
}
sprintf(target, "%s", link_buf);
}
gettimeofday( &utime, NULL);
end_time_us = utime.tv_sec*1000000+utime.tv_usec;
printf ("%d \t", end_time_us-start_time_us);
return (NULL);
}
|