Whamcloud - gitweb
LU-14487 lnet: remove references to Sun Trademark.
[fs/lustre-release.git] / lnet / utils / routerstat.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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 version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  */
31
32 #include <errno.h>
33 #include <fcntl.h>
34 #include <glob.h>
35 #include <limits.h>
36 #include <stdio.h>
37 #include <stdlib.h>
38 #include <string.h>
39 #include <sys/types.h>
40 #include <sys/time.h>
41 #include <unistd.h>
42
43 #include <libcfs/util/param.h>
44
45 double
46 timenow ()
47 {
48    struct timeval tv;
49
50    gettimeofday (&tv, NULL);
51    return (tv.tv_sec + tv.tv_usec / 1000000.0);
52 }
53
54 typedef struct {
55         unsigned long        msgs_alloc;
56         unsigned long        msgs_max;
57         unsigned long        errors;
58         unsigned long        send_count;
59         unsigned long        recv_count;
60         unsigned long        route_count;
61         unsigned long        drop_count;
62         unsigned long long   send_length;
63         unsigned long long   recv_length;
64         unsigned long long   route_length;
65         unsigned long long   drop_length;
66 } counters_t;
67
68 unsigned long long subull(unsigned long long a, unsigned long long b)
69 {
70         if (a < b)
71                 return -1ULL - b + a + 1;
72
73         return a - b;
74 }
75
76 unsigned long long subul(unsigned long a, unsigned long b)
77 {
78         if (a < b)
79                 return -1UL - b + a + 1;
80
81         return a - b;
82 }
83
84 double rul(unsigned long a, double secs)
85 {
86         return (double)a/secs;
87 }
88
89 double rull(unsigned long long a, double secs)
90 {
91         return (double)a/secs;
92 }
93
94 void
95 do_stat (int fd)
96 {
97    static char  buffer[1024];
98    static double last = 0.0;
99    static counters_t old_counter;
100    double now;
101    double t;
102    counters_t new_counter;
103    counters_t counter;
104    int    n;
105
106    lseek (fd, 0, SEEK_SET);
107    now = timenow();
108    n = read(fd, buffer, sizeof(buffer) - 1);
109    if (n < 0)
110    {
111       fprintf (stderr, "Can't read statfile\n");
112       exit (1);
113    }
114    buffer[n] = 0;
115
116    n = sscanf(buffer, "%lu %lu %lu %lu %lu %lu %lu %llu %llu %llu %llu",
117                &new_counter.msgs_alloc, &new_counter.msgs_max,
118                &new_counter.errors, 
119                &new_counter.send_count, &new_counter.recv_count,
120                &new_counter.route_count, &new_counter.drop_count,
121                &new_counter.send_length, &new_counter.recv_length,
122                &new_counter.route_length, &new_counter.drop_length);
123    if (n < 11)
124    {
125       fprintf (stderr, "Can't parse statfile\n");
126       exit (1);
127    }
128
129    if (last == 0.0) {
130                 printf("M %lu(%lu) E %lu S %llu/%lu R %llu/%lu F %llu/%lu "
131                        "D %llu/%lu\n",
132                    new_counter.msgs_alloc, new_counter.msgs_max,
133                    new_counter.errors,
134                    new_counter.send_length, new_counter.send_count,
135                    new_counter.recv_length, new_counter.recv_count,
136                    new_counter.route_length, new_counter.route_count,
137                    new_counter.drop_length, new_counter.drop_count);
138    } else {
139            t = now - last;
140
141            counter.msgs_alloc = new_counter.msgs_alloc;
142            counter.msgs_max = new_counter.msgs_max;
143
144            counter.errors = subul(new_counter.errors, old_counter.errors);
145            counter.send_count = subul(new_counter.send_count, old_counter.send_count);
146            counter.recv_count = subul(new_counter.recv_count, old_counter.recv_count);
147            counter.route_count = subul(new_counter.route_count, old_counter.route_count);
148            counter.drop_count = subul(new_counter.drop_count, old_counter.drop_count);
149            counter.send_length = subull(new_counter.send_length, old_counter.send_length);
150            counter.recv_length = subull(new_counter.recv_length, old_counter.recv_length);
151            counter.route_length = subull(new_counter.route_length, old_counter.route_length);
152            counter.drop_length = subull(new_counter.drop_length, old_counter.drop_length);
153
154            printf ("M %3lu(%3lu) E %0.0f S %7.2f/%6.0f R %7.2f/%6.0f F %7.2f/%6.0f D %4.2f/%0.0f\n",
155                    counter.msgs_alloc, counter.msgs_max,
156                    rul(counter.errors,t),
157                    rull(counter.send_length,t*1024.0*1024.0), rul(counter.send_count, t),
158                    rull(counter.recv_length,t*1024.0*1024.0), rul(counter.recv_count, t),
159                    rull(counter.route_length,t*1024.0*1024.0), rul(counter.route_count, t),
160                    rull(counter.drop_length,t*1024.0*1024.0), rul(counter.drop_count, t));
161    }
162
163    old_counter = new_counter;
164    fflush (stdout);
165
166    lseek (fd, 0, SEEK_SET);
167    last = timenow();
168 }
169
170 int main(int argc, char **argv)
171 {
172         int interval = 0;
173         glob_t path;
174         int fd;
175
176         if (argc > 1)
177                 interval = atoi(argv[1]);
178
179         if (cfs_get_param_paths(&path, "stats") != 0) {
180                 fprintf(stderr, "LNet stats not available\n");
181                 return 1;
182         }
183
184         fd = open(path.gl_pathv[0], O_RDONLY);
185         if (fd < 0) {
186                 fprintf(stderr, "failed to open '%s': %s\n", path.gl_pathv[0],
187                         strerror(errno));
188                 cfs_free_param_data(&path);
189                 return 1;
190         }
191         cfs_free_param_data(&path);
192
193         do_stat(fd);
194         if (interval == 0)
195                 return 0;
196
197         while (1) {
198                 sleep(interval);
199                 do_stat(fd);
200         }
201         /* Never reached */
202 }