]> git.proxmox.com Git - mirror_iproute2.git/blobdiff - tc/q_netem.c
man: tc-taprio.8: fix syntax error
[mirror_iproute2.git] / tc / q_netem.c
index 0975ae111de97b749d937413c6483c51e12fdf17..6e0e8a8cbfde508a59318812103b991b3fd093e3 100644 (file)
@@ -15,8 +15,8 @@
 #include <math.h>
 #include <ctype.h>
 #include <unistd.h>
-#include <syslog.h>
 #include <fcntl.h>
+#include <stdint.h>
 #include <sys/socket.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
@@ -40,7 +40,12 @@ static void explain(void)
 "                 [ loss gemodel PERCENT [R [1-H [1-K]]]\n" \
 "                 [ ecn ]\n" \
 "                 [ reorder PRECENT [CORRELATION] [ gap DISTANCE ]]\n" \
-"                 [ rate RATE [PACKETOVERHEAD] [CELLSIZE] [CELLOVERHEAD]]\n");
+"                 [ rate RATE [PACKETOVERHEAD] [CELLSIZE] [CELLOVERHEAD]]\n" \
+"                 [ slot MIN_DELAY [MAX_DELAY] [packets MAX_PACKETS]" \
+" [bytes MAX_BYTES]]\n" \
+"                 [ slot distribution" \
+" {uniform|normal|pareto|paretonormal|custom} DELAY JITTER" \
+" [packets MAX_PACKETS] [bytes MAX_BYTES]]\n");
 }
 
 static void explain1(const char *arg)
@@ -53,27 +58,10 @@ static void explain1(const char *arg)
  */
 #define MAX_DIST       (16*1024)
 
-static const double max_percent_value = 0xffffffff;
-
 /* scaled value used to percent of maximum. */
 static void set_percent(__u32 *percent, double per)
 {
-       *percent = (unsigned int) rint(per * max_percent_value);
-}
-
-
-/* Parse either a fraction '.3' or percent '30%
- * return: 0 = ok, -1 = error, 1 = out of range
- */
-static int parse_percent(double *val, const char *str)
-{
-       char *p;
-
-       *val = strtod(str, &p) / 100.;
-       if (*p && strcmp(p, "%"))
-               return -1;
-
-       return 0;
+       *percent = rint(per * UINT32_MAX);
 }
 
 static int get_percent(__u32 *percent, const char *str)
@@ -89,7 +77,7 @@ static int get_percent(__u32 *percent, const char *str)
 
 static void print_percent(char *buf, int len, __u32 per)
 {
-       snprintf(buf, len, "%g%%", 100. * (double) per / max_percent_value);
+       snprintf(buf, len, "%g%%", (100. * per) / UINT32_MAX);
 }
 
 static char *sprint_percent(__u32 per, char *buf)
@@ -170,9 +158,10 @@ static int get_ticks(__u32 *ticks, const char *str)
 }
 
 static int netem_parse_opt(struct qdisc_util *qu, int argc, char **argv,
-                          struct nlmsghdr *n)
+                          struct nlmsghdr *n, const char *dev)
 {
        int dist_size = 0;
+       int slot_dist_size = 0;
        struct rtattr *tail;
        struct tc_netem_qopt opt = { .limit = 1000 };
        struct tc_netem_corr cor = {};
@@ -181,7 +170,9 @@ static int netem_parse_opt(struct qdisc_util *qu, int argc, char **argv,
        struct tc_netem_gimodel gimodel;
        struct tc_netem_gemodel gemodel;
        struct tc_netem_rate rate = {};
+       struct tc_netem_slot slot = {};
        __s16 *dist_data = NULL;
+       __s16 *slot_dist_data = NULL;
        __u16 loss_type = NETEM_LOSS_UNSPEC;
        int present[__TCA_NETEM_MAX] = {};
        __u64 rate64 = 0;
@@ -231,7 +222,7 @@ static int netem_parse_opt(struct qdisc_util *qu, int argc, char **argv,
 
                        if (!strcmp(*argv, "random")) {
                                NEXT_ARG();
-random_loss_model:
+                       random_loss_model:
                                if (get_percent(&opt.loss, *argv)) {
                                        explain1("loss percent");
                                        return -1;
@@ -323,7 +314,7 @@ random_loss_model:
                                /* netem option is "1-h" but kernel
                                 * expects "h".
                                 */
-                               gemodel.h = max_percent_value - gemodel.h;
+                               gemodel.h = UINT32_MAX - gemodel.h;
 
                                if (!NEXT_IS_NUMBER())
                                        continue;
@@ -338,7 +329,7 @@ random_loss_model:
                                return -1;
                        }
                } else if (matches(*argv, "ecn") == 0) {
-                               present[TCA_NETEM_ECN] = 1;
+                       present[TCA_NETEM_ECN] = 1;
                } else if (matches(*argv, "reorder") == 0) {
                        NEXT_ARG();
                        present[TCA_NETEM_REORDER] = 1;
@@ -399,7 +390,12 @@ random_loss_model:
                } else if (matches(*argv, "rate") == 0) {
                        ++present[TCA_NETEM_RATE];
                        NEXT_ARG();
-                       if (get_rate64(&rate64, *argv)) {
+                       if (strchr(*argv, '%')) {
+                               if (get_percent_rate64(&rate64, *argv, dev)) {
+                                       explain1("rate");
+                                       return -1;
+                               }
+                       } else if (get_rate64(&rate64, *argv)) {
                                explain1("rate");
                                return -1;
                        }
@@ -424,6 +420,79 @@ random_loss_model:
                                        return -1;
                                }
                        }
+               } else if (matches(*argv, "slot") == 0) {
+                       if (NEXT_IS_NUMBER()) {
+                               NEXT_ARG();
+                               present[TCA_NETEM_SLOT] = 1;
+                               if (get_time64(&slot.min_delay, *argv)) {
+                                       explain1("slot min_delay");
+                                       return -1;
+                               }
+                               if (NEXT_IS_NUMBER()) {
+                                       NEXT_ARG();
+                                       if (get_time64(&slot.max_delay, *argv) ||
+                                           slot.max_delay < slot.min_delay) {
+                                               explain1("slot max_delay");
+                                               return -1;
+                                       }
+                               } else {
+                                       slot.max_delay = slot.min_delay;
+                               }
+                       } else {
+                               NEXT_ARG();
+                               if (strcmp(*argv, "distribution") == 0) {
+                                       present[TCA_NETEM_SLOT] = 1;
+                                       NEXT_ARG();
+                                       slot_dist_data = calloc(sizeof(slot_dist_data[0]), MAX_DIST);
+                                       if (!slot_dist_data)
+                                               return -1;
+                                       slot_dist_size = get_distribution(*argv, slot_dist_data, MAX_DIST);
+                                       if (slot_dist_size <= 0) {
+                                               free(slot_dist_data);
+                                               return -1;
+                                       }
+                                       NEXT_ARG();
+                                       if (get_time64(&slot.dist_delay, *argv)) {
+                                               explain1("slot delay");
+                                               return -1;
+                                       }
+                                       NEXT_ARG();
+                                       if (get_time64(&slot.dist_jitter, *argv)) {
+                                               explain1("slot jitter");
+                                               return -1;
+                                       }
+                                       if (slot.dist_jitter <= 0) {
+                                               fprintf(stderr, "Non-positive jitter\n");
+                                               return -1;
+                                       }
+                               } else {
+                                       fprintf(stderr, "Unknown slot parameter: %s\n",
+                                               *argv);
+                                       return -1;
+                               }
+                       }
+                       if (NEXT_ARG_OK() &&
+                           matches(*(argv+1), "packets") == 0) {
+                               NEXT_ARG();
+                               if (!NEXT_ARG_OK() ||
+                                   get_s32(&slot.max_packets, *(argv+1), 0)) {
+                                       explain1("slot packets");
+                                       return -1;
+                               }
+                               NEXT_ARG();
+                       }
+                       if (NEXT_ARG_OK() &&
+                           matches(*(argv+1), "bytes") == 0) {
+                               unsigned int max_bytes;
+                               NEXT_ARG();
+                               if (!NEXT_ARG_OK() ||
+                                   get_size(&max_bytes, *(argv+1))) {
+                                       explain1("slot bytes");
+                                       return -1;
+                               }
+                               slot.max_bytes = (int) max_bytes;
+                               NEXT_ARG();
+                       }
                } else if (strcmp(*argv, "help") == 0) {
                        explain();
                        return -1;
@@ -469,7 +538,7 @@ random_loss_model:
 
        if (present[TCA_NETEM_CORR] &&
            addattr_l(n, 1024, TCA_NETEM_CORR, &cor, sizeof(cor)) < 0)
-                       return -1;
+               return -1;
 
        if (present[TCA_NETEM_REORDER] &&
            addattr_l(n, 1024, TCA_NETEM_REORDER, &reorder, sizeof(reorder)) < 0)
@@ -478,12 +547,16 @@ random_loss_model:
        if (present[TCA_NETEM_ECN] &&
            addattr_l(n, 1024, TCA_NETEM_ECN, &present[TCA_NETEM_ECN],
                      sizeof(present[TCA_NETEM_ECN])) < 0)
-                       return -1;
+               return -1;
 
        if (present[TCA_NETEM_CORRUPT] &&
            addattr_l(n, 1024, TCA_NETEM_CORRUPT, &corrupt, sizeof(corrupt)) < 0)
                return -1;
 
+       if (present[TCA_NETEM_SLOT] &&
+           addattr_l(n, 1024, TCA_NETEM_SLOT, &slot, sizeof(slot)) < 0)
+               return -1;
+
        if (loss_type != NETEM_LOSS_UNSPEC) {
                struct rtattr *start;
 
@@ -491,11 +564,11 @@ random_loss_model:
                if (loss_type == NETEM_LOSS_GI) {
                        if (addattr_l(n, 1024, NETEM_LOSS_GI,
                                      &gimodel, sizeof(gimodel)) < 0)
-                           return -1;
+                               return -1;
                } else if (loss_type == NETEM_LOSS_GE) {
                        if (addattr_l(n, 1024, NETEM_LOSS_GE,
                                      &gemodel, sizeof(gemodel)) < 0)
-                           return -1;
+                               return -1;
                } else {
                        fprintf(stderr, "loss in the weeds!\n");
                        return -1;
@@ -524,6 +597,14 @@ random_loss_model:
                        return -1;
                free(dist_data);
        }
+
+       if (slot_dist_data) {
+               if (addattr_l(n, MAX_DIST * sizeof(slot_dist_data[0]),
+                             TCA_NETEM_SLOT_DIST,
+                             slot_dist_data, slot_dist_size * sizeof(slot_dist_data[0])) < 0)
+                       return -1;
+               free(slot_dist_data);
+       }
        tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
        return 0;
 }
@@ -538,7 +619,8 @@ static int netem_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt)
        int *ecn = NULL;
        struct tc_netem_qopt qopt;
        const struct tc_netem_rate *rate = NULL;
-       int len = RTA_PAYLOAD(opt) - sizeof(qopt);
+       const struct tc_netem_slot *slot = NULL;
+       int len;
        __u64 rate64 = 0;
 
        SPRINT_BUF(b1);
@@ -546,6 +628,7 @@ static int netem_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt)
        if (opt == NULL)
                return 0;
 
+       len = RTA_PAYLOAD(opt) - sizeof(qopt);
        if (len < 0) {
                fprintf(stderr, "options size error\n");
                return -1;
@@ -597,6 +680,11 @@ static int netem_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt)
                                return -1;
                        rate64 = rta_getattr_u64(tb[TCA_NETEM_RATE64]);
                }
+               if (tb[TCA_NETEM_SLOT]) {
+                       if (RTA_PAYLOAD(tb[TCA_NETEM_SLOT]) < sizeof(*slot))
+                               return -1;
+                       slot = RTA_DATA(tb[TCA_NETEM_SLOT]);
+               }
        }
 
        fprintf(f, "limit %d", qopt.limit);
@@ -629,7 +717,7 @@ static int netem_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt)
                fprintf(f, " loss gemodel p %s",
                        sprint_percent(gemodel->p, b1));
                fprintf(f, " r %s", sprint_percent(gemodel->r, b1));
-               fprintf(f, " 1-h %s", sprint_percent(max_percent_value -
+               fprintf(f, " 1-h %s", sprint_percent(UINT32_MAX -
                                                     gemodel->h, b1));
                fprintf(f, " 1-k %s", sprint_percent(gemodel->k1, b1));
        }
@@ -670,6 +758,20 @@ static int netem_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt)
                        fprintf(f, " celloverhead %d", rate->cell_overhead);
        }
 
+       if (slot) {
+               if (slot->dist_jitter > 0) {
+                   fprintf(f, " slot distribution %s", sprint_time64(slot->dist_delay, b1));
+                   fprintf(f, " %s", sprint_time64(slot->dist_jitter, b1));
+               } else {
+                   fprintf(f, " slot %s", sprint_time64(slot->min_delay, b1));
+                   fprintf(f, " %s", sprint_time64(slot->max_delay, b1));
+               }
+               if (slot->max_packets)
+                       fprintf(f, " packets %d", slot->max_packets);
+               if (slot->max_bytes)
+                       fprintf(f, " bytes %d", slot->max_bytes);
+       }
+
        if (ecn)
                fprintf(f, " ecn ");