]> git.proxmox.com Git - mirror_iproute2.git/blobdiff - ip/link_veth.c
man: tc-taprio.8: fix syntax error
[mirror_iproute2.git] / ip / link_veth.c
index 226b4ef4c7b54f5beef4a2014bd4d8207704985c..33e8f2b102e7f8178afe04694ebe8d62160317fb 100644 (file)
  */
 
 #include <string.h>
+#include <net/if.h>
+#include <linux/veth.h>
 
 #include "utils.h"
 #include "ip_common.h"
-#include "veth.h"
 
-#define        IFNAMSIZ        16
+static void print_usage(FILE *f)
+{
+       printf("Usage: ip link <options> type veth [peer <options>]\n"
+              "To get <options> type 'ip link add help'\n");
+}
 
 static void usage(void)
 {
-       printf("Usage: ip link <options> type veth "
-               "[peer <options>]\nTo get <options> type "
-               "'ip link add help'\n");
+       print_usage(stderr);
 }
 
 static int veth_parse_opt(struct link_util *lu, int argc, char **argv,
-               struct nlmsghdr *hdr)
+                         struct nlmsghdr *n)
 {
-       char *name, *type, *link, *dev;
-       int err, len;
-       struct rtattr * data;
+       char *type = NULL;
+       int err;
+       struct rtattr *data;
+       struct ifinfomsg *ifm, *peer_ifm;
+       unsigned int ifi_flags, ifi_change, ifi_index;
 
        if (strcmp(argv[0], "peer") != 0) {
                usage();
                return -1;
        }
 
-       data = NLMSG_TAIL(hdr);
-       addattr_l(hdr, 1024, VETH_INFO_PEER, NULL, 0);
+       ifm = NLMSG_DATA(n);
+       ifi_flags = ifm->ifi_flags;
+       ifi_change = ifm->ifi_change;
+       ifi_index = ifm->ifi_index;
+       ifm->ifi_flags = 0;
+       ifm->ifi_change = 0;
+       ifm->ifi_index = 0;
 
-       hdr->nlmsg_len += sizeof(struct ifinfomsg);
+       data = addattr_nest(n, 1024, VETH_INFO_PEER);
 
-       err = iplink_parse(argc - 1, argv + 1, (struct iplink_req *)hdr,
-                       &name, &type, &link, &dev);
+       n->nlmsg_len += sizeof(struct ifinfomsg);
+
+       err = iplink_parse(argc - 1, argv + 1, (struct iplink_req *)n, &type);
        if (err < 0)
                return err;
 
-       if (name) {
-               len = strlen(name) + 1;
-               if (len > IFNAMSIZ)
-                       invarg("\"name\" too long\n", *argv);
-               addattr_l(hdr, 1024, IFLA_IFNAME, name, len);
-       }
+       if (type)
+               duparg("type", argv[err]);
 
-       data->rta_len = (void *)NLMSG_TAIL(hdr) - (void *)data;
+       peer_ifm = RTA_DATA(data);
+       peer_ifm->ifi_index = ifm->ifi_index;
+       peer_ifm->ifi_flags = ifm->ifi_flags;
+       peer_ifm->ifi_change = ifm->ifi_change;
+       ifm->ifi_flags = ifi_flags;
+       ifm->ifi_change = ifi_change;
+       ifm->ifi_index = ifi_index;
+
+       addattr_nest_end(n, data);
        return argc - 1 - err;
 }
 
+static void veth_print_help(struct link_util *lu, int argc, char **argv,
+       FILE *f)
+{
+       print_usage(f);
+}
+
 struct link_util veth_link_util = {
        .id = "veth",
        .parse_opt = veth_parse_opt,
+       .print_help = veth_print_help,
 };