summaryrefslogtreecommitdiff
path: root/scripts/vyatta-show-queueing.pl
blob: 5b967ecb06459d7292074c60f2278031c1a0cdcb (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
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
#!/usr/bin/perl
#
# Module: vyatta-show-queueing.pl
#
# **** License ****
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
# 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 GNU
# General Public License for more details.
#
# This code was originally developed by Vyatta, Inc.
# Copyright (C) 2010 Vyatta, Inc.
# All Rights Reserved.
#
# Author: Stephen Hemminger
# Description: Script to display QoS information in pretty form
#
# **** End License ****
#

use strict;
use warnings;

use Getopt::Long;
use Tree::Simple;

use lib "/opt/vyatta/share/perl5/";
use Vyatta::Interface;
use Vyatta::Misc;

my $intf_type;

# Map from kernel qdisc names to configuration names
my %qdisc_types = (
    'pfifo_fast' => 'default',
    'fq_codel'   => 'fq-codel',
    'sfq'        => 'fair-queue',
    'tbf'        => 'rate-control',
    'htb'        => 'shaper',
    'pfifo'      => 'drop-tail',
    'red'        => 'random-detect',
    'drr'        => 'round-robin',
    'prio'       => 'priority-queue',
    'netem'      => 'network-emulator',
    'gred'       => 'weighted-random',
    'ingress'    => 'limiter',
);

# Convert from kernel to vyatta nams
sub shaper {
    my $qdisc  = shift;
    my $shaper = $qdisc_types{$qdisc};

    return $shaper ? $shaper : '[' . $qdisc . ']';
}

sub show_brief {
    my $fmt = "%-10s %-16s %12s %12s %12s\n";
    printf $fmt, 'Interface', 'Policy', 'Sent', 'Dropped', 'Overlimit';

    # Read qdisc info
    open( my $tc, '-|', '/sbin/tc -s qdisc ls' )
      or die 'tc qdisc command failed';

    my @lines;
    my ( $qdisc, $parent, $ifname, $id );
    my $root = 'root';

    while (<$tc>) {
        chomp;
        my @fields = split;
        if ( $fields[0] eq 'qdisc' ) {
            my ( $ptype, $pid );

            # Examples:
            # qdisc sfq 8003: dev eth1 root limit 127p quantum 1514b
            # qdisc gred 2: dev eth0 parent 1:
            ( undef, $qdisc, $id, undef, $ifname, $ptype, $pid ) = @fields;

            $parent = ( $ptype eq 'parent' ) ? $pid : $ptype;
            next;
        }

        # skip unwanted extra stats
        next if ( $fields[0] ne 'Sent' );

        #  Sent 13860 bytes 88 pkt (dropped 0, overlimits 0 requeues 0)
        my ( undef, $sent, undef, undef, undef, undef, $drop, undef, $over ) =
          @fields;

        # punctuation was never jamal's strong suit
        $drop =~ s/,$//;

        if ( $qdisc eq 'dsmark' ) {
            # dsmark is used as a top-level before htb or gred
            $root = $id;
        }
        elsif ( $parent eq $root ) {
            $root = 'root';
            if ($intf_type) {
                my $intf = new Vyatta::Interface($ifname);
                next unless ( $intf && ( $intf->type() eq $intf_type ) );
            }

            push @lines, sprintf $fmt, $ifname, shaper($qdisc), $sent, $drop,
              $over;
        }
    }
    close $tc;
    print sort @lines;
}

sub qmajor {
    my $id = shift;

    $id =~ s/:.*$//;
    return hex($id);
}

sub qminor {
    my $id = shift;

    $id =~ s/^.*://;
    return hex($id);
}

# This collects all the qdisc information into one hash
# reference to map of qdisc class to statistics
sub get_qdisc {
    my $interface = shift;
    my %qdisc;
    my $default = undef;

    open( my $tc, '-|', "/sbin/tc -s qdisc show dev $interface" )
      or die 'tc command failed: $!';

    my ($qid, $qinfo);

    while (<$tc>) {
        chomp;

        # qdisc htb 1: root r2q 10 default 20 direct_packets...
        # qdisc pfifo 8008: parent 1:2 limit 1000p
        # qdisc fq_codel 8001: root refcnt 2 limit 10240p flows 1024 quantum 1514 target 5.0ms interval 100.0ms
        /^qdisc (\S+) ([0-9a-f]+): / && do {
            # record last qdisc
            $qdisc{$qid} = $qinfo if (defined($qid));
            $qinfo = {};
            $qid   = 0;
            $qinfo->{name} = shaper($1);

            if (/ root /) {
                $qinfo->{qidname} = 'root';
            } elsif ( / parent (\S+)/ ) {
                my $parent = qminor($1);
                $qid = $parent;
                if (defined($default) && ($parent == $default)) {
                    $qinfo->{qidname} = 'default';
                } else {
                    $qinfo->{qidname} = qminor($1);
                }
            };

            if (/ default ([0-9a-f]+) / ) {
                $default = hex($1);
            };

            next;
        };

        /^ Sent (\d+) bytes (\d+) pkt/ && do {
            $qinfo->{sent} = $1;
        };

        / \(dropped (\d+), overlimits (\d+) requeues (\d+)\) / && do {
            $qinfo->{dropped} = $1;
            $qinfo->{overlimit} = $2;
            $qinfo->{requeues} = $3;
        };

        / rate (\S+)bit (\d+)pps / && do {
            $qinfo->{rate} = $1;
            $qinfo->{pps} = $2;
        };

        / backlog \d+b (\d+)p / && do {
            $qinfo->{backlog} = $1;
        }
    }
    close $tc;
    $qdisc{$qid} = $qinfo if (defined($qid));

    return \%qdisc;
}

my $CLASSFMT = "%-10s %-16s";
my @fields = qw(sent dropped overlimit backlog);

sub print_info {
    my $qinfo = shift;
    my $id   = $qinfo->{qidname};
    my $name = $qinfo->{name};

    # Class Policy
    printf $CLASSFMT, $id, $name;

    for (@fields) {
        my $qval = $qinfo->{$_};
        if (defined($qval)) {
            printf ' %12s', $qval;
        } else {
            print '             ';
        }
    }
    print "\n";
}

sub show_queues {
    my ( $interface, $qdisc ) = @_;

    print "\n$interface Queueing:\n";
    printf $CLASSFMT, 'Class', 'Policy';
    for (@fields) {
        printf " %12s", ucfirst($_);
    }
    print "\n";

    foreach my $qid ( sort {$a <=> $b} keys %{$qdisc} ) {
        my $qinfo = $qdisc->{$qid};
        print_info($qinfo);
    }
}

sub show {
    my $interface = shift;
    my $qdisc = get_qdisc($interface);
    show_queues($interface, $qdisc);
}

sub usage {
    print "Usage: $0 [--type={ethernet,serial}] --brief\n";
    print "       $0 interface(s)\n";
    exit 1;
}

GetOptions(
    'type=s' => \$intf_type,
    'brief'  => sub { show_brief(); exit 0; },
) or usage();

# if no arguments given, rebuild ARGV with list of all interfaces
if ( $#ARGV == -1 ) {
    foreach my $ifname ( getInterfaces() ) {
        if ($intf_type) {
            my $intf = new Vyatta::Interface($ifname);
            next unless ( $intf && $intf_type eq $intf->type() );
        }
        push @ARGV, $ifname;
    }
}

foreach my $interface ( sort @ARGV ) {
    show($interface);
}