# Traffic shaper sub-class # **** 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. # Portions created by Vyatta are Copyright (C) 2008 Vyatta, Inc. # All Rights Reserved. # **** End License **** package Vyatta::Qos::ShaperClass; use strict; use warnings; require Vyatta::Config; use Vyatta::Qos::Match; use Vyatta::Qos::Util qw/getDsfield getRate/; sub new { my ( $that, $config, $id ) = @_; my $class = ref($that) || $that; my $self = { }; $self->{id} = $id; bless $self, $class; if ($config) { my $level = $config->setLevel(); $self->{level} = $level; $self->{_rate} = $config->returnValue("bandwidth"); $self->{_priority} = $config->returnValue("priority"); $self->{_ceiling} = $config->returnValue("ceiling"); $self->{_burst} = $config->returnValue("burst"); $self->{_limit} = $config->returnValue("queue-limit"); $self->{_qdisc} = $config->returnValue("queue-type"); $self->{_avgpkt} = $config->returnValue("packet-length"); $self->{_latency} = $config->returnValue("latency"); $self->{dsmark} = getDsfield( $config->returnValue("set-dscp") ); my @matches = _getMatch("$level match"); $self->{_match} = \@matches; } return $self; } sub _getMatch { my $level = shift; my @matches; my $config = new Vyatta::Config; foreach my $match ( $config->listNodes($level) ) { $config->setLevel("$level $match"); push @matches, new Vyatta::Qos::Match($config); } return @matches; } sub matchRules { my ($self) = @_; my $matches = $self->{_match}; return @$matches; } sub _getPercentRate { my ( $rate, $speed ) = @_; return unless $rate; # no rate defined; # Rate might be a percentage of speed if ( $rate =~ /%$/ ) { my $percent = substr( $rate, 0, length($rate) - 1 ); if ( $percent < 0 || $percent > 100 ) { die "Invalid percentage bandwidth: $percent\n"; } $rate = ( $percent * $speed ) / 100.; } else { $rate = getRate($rate); } return $rate; } sub rateCheck { my ( $self, $limit, $level ) = @_; my $rate = _getPercentRate( $self->{_rate}, $limit ); if ( $rate > $limit ) { print STDERR "Configuration error in: $level\n"; printf STDERR "The bandwidth reserved for this class (%dKbps) must be less than\n", $rate / 1000; printf STDERR "the bandwidth for the overall policy (%dKbps)\n", $limit / 1000; exit 1; } my $ceil = _getPercentRate( $self->{_ceiling}, $limit ); if ( defined $ceil && $ceil < $rate ) { print STDERR "Configuration error in: $level\n"; printf STDERR "The bandwidth ceiling for this class (%dKbps) must be greater or equal to\n", $ceil / 1000; printf STDERR "the reserved bandwidth for the class (%dKbps)\n", $rate / 1000; exit 1; } } sub prioQdisc { my ( $self, $dev, $rate ) = @_; my $prio_id = 0x4000 + $self->{id}; my $limit = $self->{_limit}; printf "handle %x: prio\n", $prio_id; if ($limit) { foreach my $i (qw/1 2 3/) { printf "qdisc add dev %s parent %x:%x pfifo limit %d\n", $dev, $prio_id, $i, $limit; } } } sub sfqQdisc { my ( $self, $dev, $rate ) = @_; print "sfq"; print " limit $self->{_limit}" if ( $self->{_limit} ); print "\n"; } sub fifoQdisc { my ( $self, $dev, $rate ) = @_; print "pfifo"; print " limit $self->{_limit}" if ( $self->{_limit} ); print "\n"; } # Red is has way to many configuration options # make some assumptions to make this sane (based on LARTC) # average size = 1000 bytes # latency = 100ms # # Bandwidth (bits/sec) * Latency (ms) # Maximum Threshold = -------------------------------------- # (bytes) 8 bits/byte * 1000 ms/sec # # Minimum Threshold = Maximum Threshold / 3 # Avpkt = Average Packet Length # Burst = ( 2 * MinThreshold + MaxThreshold) / ( 3 * Avpkt ) # Limit = 4 * MaxThreshold # # These are based on Sally Floyd's recommendations: # http://www.icir.org/floyd/REDparameters.txt # sub redQdisc { my ( $self, $dev, $rate ) = @_; my $avg = 1024; my $qmax = (defined $rate) ? (( $rate * 100 ) / 8000) : (18 * $avg); my $qmin = $qmax / 3; my $burst = ( 2 * $qmin + $qmax ) / (3 * $avg); my $limit = $self->{_limit}; my $qlimit = (defined $limit) ? ($limit * $avg) : (4 * $qmax); printf "red limit %d min %d max %d avpkt %d", $qlimit, $qmin, $qmax, $avg; printf " burst %d probability 0.1 bandwidth %s ecn\n", $burst, $rate; } my %qdiscOptions = ( 'priority' => \&prioQdisc, 'fair-queue' => \&sfqQdisc, 'random-detect' => \&redQdisc, 'drop-tail' => \&fifoQdisc, ); sub get_rate { my ($self, $speed) = @_; return _getPercentRate( $self->{_rate}, $speed ); } sub gen_class { my ( $self, $dev, $qdisc, $parent, $speed ) = @_; my $rate = _getPercentRate( $self->{_rate}, $speed ); my $ceil = _getPercentRate( $self->{_ceiling}, $speed ); printf "class add dev %s parent %x:1 classid %x:%x %s", $dev, $parent, $parent, $self->{id}, $qdisc; print " rate $rate" if ($rate); print " ceil $ceil" if ($ceil); print " burst $self->{_burst}" if ( $self->{_burst} ); print " prio $self->{_priority}" if ( $self->{_priority} ); print "\n"; } sub gen_leaf { my ( $self, $dev, $parent, $rate ) = @_; my $qtype = $self->{_qdisc}; return unless $qtype; # default is okay my $q = $qdiscOptions{$qtype}; die "Unknown queue-type $qtype\n" unless $q; printf "qdisc add dev %s parent %x:%x ", $dev, $parent, $self->{id}; $q->( $self, $dev, $rate ); } sub dsmarkClass { my ( $self, $parent, $dev ) = @_; printf "class change dev %s classid %x:%x dsmark", $dev, $parent, $self->{id}; if ( $self->{dsmark} ) { print " mask 0 value $self->{dsmark}\n"; } else { print " mask 0xff value 0\n"; } } 1;