Cleanups: Fixed IOPs in btt left over at end of run
[blktrace.git] / btt / mmap.c
1 /*
2  * blktrace output analysis: generate a timeline & gather statistics
3  *
4  * Copyright (C) 2006 Alan D. Brunelle <Alan.Brunelle@hp.com>
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #include <stdio.h>
23 #include <unistd.h>
24 #include <sys/types.h>
25 #include <sys/stat.h>
26 #include <fcntl.h>
27 #include <sys/mman.h>
28 #include <string.h>
29
30 #include "blktrace.h"
31
32 #define DEF_LEN (16 * 1024 * 1024)
33
34 static int fd;
35 static void *cur_map = MAP_FAILED;
36 static off_t cur_min, cur, cur_max, total_size;
37 static size_t len;
38 static struct blk_io_trace *next_t;
39 static long pgsz;
40
41 int data_is_native = -1;
42
43 static inline size_t min_len(size_t a, size_t b) { return a < b ? a : b; }
44
45 static inline size_t convert_to_cpu(struct blk_io_trace *t,
46                                     struct blk_io_trace *tp,
47                                     void **pdu)
48 {
49         if (data_is_native == -1)
50                 check_data_endianness(t->magic);
51
52         if (data_is_native)
53                 memcpy(tp, t, sizeof(*tp));
54         else {
55                 tp->magic       = be32_to_cpu(t->magic);
56                 tp->sequence    = be32_to_cpu(t->sequence);
57                 tp->time        = be64_to_cpu(t->time);
58                 tp->sector      = be64_to_cpu(t->sector);
59                 tp->bytes       = be32_to_cpu(t->bytes);
60                 tp->action      = be32_to_cpu(t->action);
61                 tp->pid         = be32_to_cpu(t->pid);
62                 tp->device      = be32_to_cpu(t->device);
63                 tp->cpu         = be16_to_cpu(t->cpu);
64                 tp->error       = be16_to_cpu(t->error);
65                 tp->pdu_len     = be16_to_cpu(t->pdu_len);
66         }
67
68         if (tp->pdu_len) {
69                 *pdu = malloc(tp->pdu_len);
70                 memcpy(*pdu, t+1, tp->pdu_len);
71         }
72         else
73                 *pdu = NULL;
74
75         return sizeof(*tp) + tp->pdu_len;
76 }
77
78 static int move_map(void)
79 {
80         if (cur_map != MAP_FAILED)
81                 munmap(cur_map, len);
82
83         cur_min = (cur & ~(pgsz-1));
84         len = min_len(DEF_LEN, total_size - cur_min);
85         if (len < sizeof(*next_t))
86                 return 0;
87
88         cur_map = mmap(NULL, len, PROT_READ, MAP_SHARED, fd,
89                        cur_min);
90         if (cur_map == MAP_FAILED) {
91                 perror("mmap");
92                 exit(1);
93         }
94
95         cur_max = cur_min + len;
96         return (cur < cur_max);
97 }
98
99 void setup_ifile(char *fname)
100 {
101         struct stat buf;
102
103         pgsz = sysconf(_SC_PAGESIZE);
104
105         fd = open(fname, O_RDONLY);
106         if (fd < 0) {
107                 perror(fname);
108                 exit(1);
109         }
110         if (fstat(fd, &buf) < 0) {
111                 perror(fname);
112                 exit(1);
113         }
114         total_size = buf.st_size;
115
116         if (!move_map())
117                 exit(0);
118 }
119
120 void cleanup_ifile(void)
121 {
122         if (cur_map != MAP_FAILED)
123                 munmap(cur_map, len);
124         close(fd);
125 }
126
127 int next_trace(struct blk_io_trace *t, void **pdu)
128 {
129         size_t this_len;
130
131         if ((cur + 512) > cur_max)
132                 if (!move_map())
133                         return 0;
134
135         next_t = cur_map + (cur - cur_min);
136         this_len = convert_to_cpu(next_t, t, pdu);
137         cur += this_len;
138
139         return 1;
140 }