2 * iplink_hsr.c HSR device support
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
9 * Authors: Arvid Brodin <arvid.brodin@alten.se>
11 * Based on iplink_vlan.c by Patrick McHardy <kaber@trash.net>
17 #include <sys/socket.h> /* Needed by linux/if.h for some reason */
19 #include <linux/if_arp.h>
22 #include "ip_common.h"
24 static void print_usage(FILE *f
)
27 "Usage:\tip link add name NAME type hsr slave1 SLAVE1-IF slave2 SLAVE2-IF\n"
28 "\t[ supervision ADDR-BYTE ] [version VERSION]\n"
31 " name of new hsr device (e.g. hsr0)\n"
32 "SLAVE1-IF, SLAVE2-IF\n"
33 " the two slave devices bound to the HSR device\n"
35 " 0-255; the last byte of the multicast address used for HSR supervision\n"
36 " frames (default = 0)\n"
38 " 0,1; the protocol version to be used. (default = 0)\n");
41 static void usage(void)
46 static int hsr_parse_opt(struct link_util
*lu
, int argc
, char **argv
,
50 unsigned char multicast_spec
;
51 unsigned char protocol_version
;
54 if (matches(*argv
, "supervision") == 0) {
56 if (get_u8(&multicast_spec
, *argv
, 0))
57 invarg("ADDR-BYTE is invalid", *argv
);
58 addattr_l(n
, 1024, IFLA_HSR_MULTICAST_SPEC
,
60 } else if (matches(*argv
, "version") == 0) {
62 if (!(get_u8(&protocol_version
, *argv
, 0) == 0 ||
63 get_u8(&protocol_version
, *argv
, 0) == 1))
64 invarg("version is invalid", *argv
);
65 addattr_l(n
, 1024, IFLA_HSR_VERSION
,
66 &protocol_version
, 1);
67 } else if (matches(*argv
, "slave1") == 0) {
69 ifindex
= ll_name_to_index(*argv
);
71 invarg("No such interface", *argv
);
72 addattr_l(n
, 1024, IFLA_HSR_SLAVE1
, &ifindex
, 4);
73 } else if (matches(*argv
, "slave2") == 0) {
75 ifindex
= ll_name_to_index(*argv
);
77 invarg("No such interface", *argv
);
78 addattr_l(n
, 1024, IFLA_HSR_SLAVE2
, &ifindex
, 4);
79 } else if (matches(*argv
, "help") == 0) {
83 fprintf(stderr
, "hsr: what is \"%s\"?\n", *argv
);
93 static void hsr_print_opt(struct link_util
*lu
, FILE *f
, struct rtattr
*tb
[])
100 if (tb
[IFLA_HSR_SLAVE1
] &&
101 RTA_PAYLOAD(tb
[IFLA_HSR_SLAVE1
]) < sizeof(__u32
))
103 if (tb
[IFLA_HSR_SLAVE2
] &&
104 RTA_PAYLOAD(tb
[IFLA_HSR_SLAVE2
]) < sizeof(__u32
))
106 if (tb
[IFLA_HSR_SEQ_NR
] &&
107 RTA_PAYLOAD(tb
[IFLA_HSR_SEQ_NR
]) < sizeof(__u16
))
109 if (tb
[IFLA_HSR_SUPERVISION_ADDR
] &&
110 RTA_PAYLOAD(tb
[IFLA_HSR_SUPERVISION_ADDR
]) < ETH_ALEN
)
113 fprintf(f
, "slave1 ");
114 if (tb
[IFLA_HSR_SLAVE1
])
116 ll_index_to_name(rta_getattr_u32(tb
[IFLA_HSR_SLAVE1
])));
118 fprintf(f
, "<none> ");
120 fprintf(f
, "slave2 ");
121 if (tb
[IFLA_HSR_SLAVE2
])
123 ll_index_to_name(rta_getattr_u32(tb
[IFLA_HSR_SLAVE2
])));
125 fprintf(f
, "<none> ");
127 if (tb
[IFLA_HSR_SEQ_NR
])
128 fprintf(f
, "sequence %d ",
129 rta_getattr_u16(tb
[IFLA_HSR_SEQ_NR
]));
131 if (tb
[IFLA_HSR_SUPERVISION_ADDR
])
132 fprintf(f
, "supervision %s ",
133 ll_addr_n2a(RTA_DATA(tb
[IFLA_HSR_SUPERVISION_ADDR
]),
134 RTA_PAYLOAD(tb
[IFLA_HSR_SUPERVISION_ADDR
]),
139 static void hsr_print_help(struct link_util
*lu
, int argc
, char **argv
,
145 struct link_util hsr_link_util
= {
147 .maxattr
= IFLA_HSR_MAX
,
148 .parse_opt
= hsr_parse_opt
,
149 .print_opt
= hsr_print_opt
,
150 .print_help
= hsr_print_help
,