summaryrefslogtreecommitdiffstats
path: root/c_pgms/ping_pong.c
blob: afd624cfebd43d110f59e2a98fff9c74f862e9b0 (plain)
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
/*
  this measures the ping-pong byte range lock latency. It is
  especially useful on a cluster of nodes sharing a common lock
  manager as it will give some indication of the lock managers
  performance under stress

  tridge@samba.org, February 2002

*/

#include <stdio.h>
#include <stdlib.h>
#include <sys/time.h>
#include <time.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <getopt.h>
#include <sys/mman.h>

static struct timeval tp1,tp2;

static int do_reads, do_writes, use_mmap;

struct file_info
{
        int fd;
        int num_locks;
};

typedef struct file_info file_info_t;

static void start_timer()
{
        gettimeofday(&tp1,NULL);
}

static double end_timer()
{
        gettimeofday(&tp2,NULL);
        return (tp2.tv_sec + (tp2.tv_usec*1.0e-6)) -
                (tp1.tv_sec + (tp1.tv_usec*1.0e-6));
}

/* lock a byte range in a open file */
static int lock_range(int fd, int offset, int len)
{
        struct flock lock;

        lock.l_type = F_WRLCK;
        lock.l_whence = SEEK_SET;
        lock.l_start = offset;
        lock.l_len = len;
        lock.l_pid = 0;

        return fcntl(fd,F_SETLKW,&lock);
}

/* unlock a byte range in a open file */
static int unlock_range(int fd, int offset, int len)
{
        struct flock lock;

        lock.l_type = F_UNLCK;
        lock.l_whence = SEEK_SET;
        lock.l_start = offset;
        lock.l_len = len;
        lock.l_pid = 0;

        return fcntl(fd,F_SETLKW,&lock);
}

/* run the ping pong test on fd */
static void ping_pong(void *info)
{
        file_info_t *info_file = NULL;
        unsigned count = 0;
        int i=0, loops=0;
        unsigned char *val;
        unsigned char incr=0, last_incr=0;
        unsigned char *p = NULL;
        int      fd  = -1;
        int      num_locks = -1;

        info_file = (file_info_t *)info;
        fd = info_file->fd;
        num_locks = info_file->num_locks;

        ftruncate(fd, num_locks+1);

        if (use_mmap) {
                p = mmap(NULL, num_locks+1, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
        }

        val = (unsigned char *)calloc(num_locks+1, sizeof(unsigned char));

        start_timer();

        lock_range(fd, 0, 1);
        i = 0;

        while (1) {
                if (lock_range(fd, (i+1) % num_locks, 1) != 0) {
                        printf("lock at %d failed! - %s\n",
                               (i+1) % num_locks, strerror(errno));
                }
                if (do_reads) {
                        unsigned char c;
                        if (use_mmap) {
                                c = p[i];
                        } else if (pread(fd, &c, 1, i) != 1) {
                                printf("read failed at %d\n", i);
                        }
                        incr = c - val[i];
                        val[i] = c;
                }
                if (do_writes) {
                        char c = val[i] + 1;
                        if (use_mmap) {
                                p[i] = c;
                        } else if (pwrite(fd, &c, 1, i) != 1) {
                                printf("write failed at %d\n", i);
                        }
                }
                if (unlock_range(fd, i, 1) != 0) {
                        printf("unlock at %d failed! - %s\n",
                               i, strerror(errno));
                }
                i = (i+1) % num_locks;
                count++;
                if (loops > num_locks && incr != last_incr) {
                        last_incr = incr;
                        printf("data increment = %u\n", incr);
                        fflush(stdout);
                }
                if (end_timer() > 1.0) {
                        printf("%8u locks/sec\r",
                               (unsigned)(2*count/end_timer()));
                        fflush(stdout);
                        start_timer();
                        count=0;
                }
                loops++;
        }
}

int main(int argc, char *argv[])
{
        char *fname;
        int fd, num_locks;
        int c;
        file_info_t info_file;
        pthread_t   thread;
        int         tid = -1;
        int zzzz = 600;

        while ((c = getopt(argc, argv, "rwm")) != -1) {
                switch (c){
                case 'w':
                        do_writes = 1;
                        break;
                case 'r':
                        do_reads = 1;
                        break;
                case 'm':
                        use_mmap = 1;
                        break;
                default:
                        fprintf(stderr, "Unknown option '%c'\n", c);
                        exit(1);
                }
        }

        argv += optind;
        argc -= optind;

        if (argc < 2) {
                printf("ping_pong [options] <file> <num_locks> [run_time]\n");
                printf("           -r    do reads\n");
                printf("           -w    do writes\n");
                printf("           -m    use mmap\n");
                exit(1);
        }

        fname = argv[0];
        num_locks = atoi(argv[1]);
	if (argv[2])
                zzzz = atoi (argv[2]);

        if (zzzz <= 0) {
                fprintf (stderr, "Cannot sleep for 0 or -ve seconds. Defaulting to 600");
                zzzz = 600;
        }

        fd = open(fname, O_CREAT|O_RDWR, 0600);
        if (fd == -1) exit(1);

        info_file.fd = fd;
        info_file.num_locks = num_locks;

        tid = pthread_create (&thread, NULL, (void *)ping_pong, (void *)&info_file);

        sleep (zzzz);
        return 0;
}