Commit 42ecedd4 authored by Roopa Prabhu's avatar Roopa Prabhu Committed by Stephen Hemminger

fix ip -force -batch to continue on errors

This patch replaces exits with returns in several
iproute2 commands. This fixes `ip -batch -force`
to not exit but continue on errors.

$cat c.txt
route del 1.2.3.0/24 dev eth0
route del 1.2.4.0/24 dev eth0
route del 1.2.5.0/24 dev eth0
route add 1.2.3.0/24 dev eth0

$ip -force -batch c.txt
RTNETLINK answers: No such process
Command failed c.txt:2
RTNETLINK answers: No such process
Command failed c.txt:3
Reported-by: default avatarSven-Haegar Koch <haegar@sdinet.de>
Signed-off-by: default avatarRoopa Prabhu <roopa@cumulusnetworks.com>
parent 822e9609
...@@ -320,7 +320,7 @@ static int fdb_modify(int cmd, int flags, int argc, char **argv) ...@@ -320,7 +320,7 @@ static int fdb_modify(int cmd, int flags, int argc, char **argv)
if (d == NULL || addr == NULL) { if (d == NULL || addr == NULL) {
fprintf(stderr, "Device and address are required arguments.\n"); fprintf(stderr, "Device and address are required arguments.\n");
exit(-1); return -1;
} }
/* Assume self */ /* Assume self */
...@@ -335,7 +335,7 @@ static int fdb_modify(int cmd, int flags, int argc, char **argv) ...@@ -335,7 +335,7 @@ static int fdb_modify(int cmd, int flags, int argc, char **argv)
abuf, abuf+1, abuf+2, abuf, abuf+1, abuf+2,
abuf+3, abuf+4, abuf+5) != 6) { abuf+3, abuf+4, abuf+5) != 6) {
fprintf(stderr, "Invalid mac address %s\n", addr); fprintf(stderr, "Invalid mac address %s\n", addr);
exit(-1); return -1;
} }
addattr_l(&req.n, sizeof(req), NDA_LLADDR, abuf, ETH_ALEN); addattr_l(&req.n, sizeof(req), NDA_LLADDR, abuf, ETH_ALEN);
...@@ -363,7 +363,7 @@ static int fdb_modify(int cmd, int flags, int argc, char **argv) ...@@ -363,7 +363,7 @@ static int fdb_modify(int cmd, int flags, int argc, char **argv)
} }
if (rtnl_talk(&rth, &req.n, 0, 0, NULL) < 0) if (rtnl_talk(&rth, &req.n, 0, 0, NULL) < 0)
exit(2); return -1;
return 0; return 0;
} }
......
...@@ -284,31 +284,31 @@ static int brlink_modify(int argc, char **argv) ...@@ -284,31 +284,31 @@ static int brlink_modify(int argc, char **argv)
} else if (strcmp(*argv, "guard") == 0) { } else if (strcmp(*argv, "guard") == 0) {
NEXT_ARG(); NEXT_ARG();
if (!on_off("guard", &bpdu_guard, *argv)) if (!on_off("guard", &bpdu_guard, *argv))
exit(-1); return -1;
} else if (strcmp(*argv, "hairpin") == 0) { } else if (strcmp(*argv, "hairpin") == 0) {
NEXT_ARG(); NEXT_ARG();
if (!on_off("hairping", &hairpin, *argv)) if (!on_off("hairping", &hairpin, *argv))
exit(-1); return -1;
} else if (strcmp(*argv, "fastleave") == 0) { } else if (strcmp(*argv, "fastleave") == 0) {
NEXT_ARG(); NEXT_ARG();
if (!on_off("fastleave", &fast_leave, *argv)) if (!on_off("fastleave", &fast_leave, *argv))
exit(-1); return -1;
} else if (strcmp(*argv, "root_block") == 0) { } else if (strcmp(*argv, "root_block") == 0) {
NEXT_ARG(); NEXT_ARG();
if (!on_off("root_block", &root_block, *argv)) if (!on_off("root_block", &root_block, *argv))
exit(-1); return -1;
} else if (strcmp(*argv, "learning") == 0) { } else if (strcmp(*argv, "learning") == 0) {
NEXT_ARG(); NEXT_ARG();
if (!on_off("learning", &learning, *argv)) if (!on_off("learning", &learning, *argv))
exit(-1); return -1;
} else if (strcmp(*argv, "learning_sync") == 0) { } else if (strcmp(*argv, "learning_sync") == 0) {
NEXT_ARG(); NEXT_ARG();
if (!on_off("learning_sync", &learning_sync, *argv)) if (!on_off("learning_sync", &learning_sync, *argv))
exit(-1); return -1;
} else if (strcmp(*argv, "flood") == 0) { } else if (strcmp(*argv, "flood") == 0) {
NEXT_ARG(); NEXT_ARG();
if (!on_off("flood", &flood, *argv)) if (!on_off("flood", &flood, *argv))
exit(-1); return -1;
} else if (strcmp(*argv, "cost") == 0) { } else if (strcmp(*argv, "cost") == 0) {
NEXT_ARG(); NEXT_ARG();
cost = atoi(*argv); cost = atoi(*argv);
...@@ -327,7 +327,7 @@ static int brlink_modify(int argc, char **argv) ...@@ -327,7 +327,7 @@ static int brlink_modify(int argc, char **argv)
if (state == nstates) { if (state == nstates) {
fprintf(stderr, fprintf(stderr,
"Error: invalid STP port state\n"); "Error: invalid STP port state\n");
exit(-1); return -1;
} }
} }
} else if (strcmp(*argv, "hwmode") == 0) { } else if (strcmp(*argv, "hwmode") == 0) {
...@@ -341,7 +341,7 @@ static int brlink_modify(int argc, char **argv) ...@@ -341,7 +341,7 @@ static int brlink_modify(int argc, char **argv)
fprintf(stderr, fprintf(stderr,
"Mode argument must be \"vepa\" or " "Mode argument must be \"vepa\" or "
"\"veb\".\n"); "\"veb\".\n");
exit(-1); return -1;
} }
} else if (strcmp(*argv, "self") == 0) { } else if (strcmp(*argv, "self") == 0) {
flags |= BRIDGE_FLAGS_SELF; flags |= BRIDGE_FLAGS_SELF;
...@@ -354,14 +354,14 @@ static int brlink_modify(int argc, char **argv) ...@@ -354,14 +354,14 @@ static int brlink_modify(int argc, char **argv)
} }
if (d == NULL) { if (d == NULL) {
fprintf(stderr, "Device is a required argument.\n"); fprintf(stderr, "Device is a required argument.\n");
exit(-1); return -1;
} }
req.ifm.ifi_index = ll_name_to_index(d); req.ifm.ifi_index = ll_name_to_index(d);
if (req.ifm.ifi_index == 0) { if (req.ifm.ifi_index == 0) {
fprintf(stderr, "Cannot find bridge device \"%s\"\n", d); fprintf(stderr, "Cannot find bridge device \"%s\"\n", d);
exit(-1); return -1;
} }
/* Nested PROTINFO attribute. Contains: port flags, cost, priority and /* Nested PROTINFO attribute. Contains: port flags, cost, priority and
...@@ -416,7 +416,7 @@ static int brlink_modify(int argc, char **argv) ...@@ -416,7 +416,7 @@ static int brlink_modify(int argc, char **argv)
} }
if (rtnl_talk(&rth, &req.n, 0, 0, NULL) < 0) if (rtnl_talk(&rth, &req.n, 0, 0, NULL) < 0)
exit(2); return -1;
return 0; return 0;
} }
......
...@@ -145,12 +145,12 @@ static int mdb_show(int argc, char **argv) ...@@ -145,12 +145,12 @@ static int mdb_show(int argc, char **argv)
if (rtnl_wilddump_request(&rth, PF_BRIDGE, RTM_GETMDB) < 0) { if (rtnl_wilddump_request(&rth, PF_BRIDGE, RTM_GETMDB) < 0) {
perror("Cannot send dump request"); perror("Cannot send dump request");
exit(1); return -1;
} }
if (rtnl_dump_filter(&rth, print_mdb, stdout) < 0) { if (rtnl_dump_filter(&rth, print_mdb, stdout) < 0) {
fprintf(stderr, "Dump terminated\n"); fprintf(stderr, "Dump terminated\n");
exit(1); return -1;
} }
return 0; return 0;
...@@ -198,7 +198,7 @@ static int mdb_modify(int cmd, int flags, int argc, char **argv) ...@@ -198,7 +198,7 @@ static int mdb_modify(int cmd, int flags, int argc, char **argv)
if (d == NULL || grp == NULL || p == NULL) { if (d == NULL || grp == NULL || p == NULL) {
fprintf(stderr, "Device, group address and port name are required arguments.\n"); fprintf(stderr, "Device, group address and port name are required arguments.\n");
exit(-1); return -1;
} }
req.bpm.ifindex = ll_name_to_index(d); req.bpm.ifindex = ll_name_to_index(d);
...@@ -225,7 +225,7 @@ static int mdb_modify(int cmd, int flags, int argc, char **argv) ...@@ -225,7 +225,7 @@ static int mdb_modify(int cmd, int flags, int argc, char **argv)
addattr_l(&req.n, sizeof(req), MDBA_SET_ENTRY, &entry, sizeof(entry)); addattr_l(&req.n, sizeof(req), MDBA_SET_ENTRY, &entry, sizeof(entry));
if (rtnl_talk(&rth, &req.n, 0, 0, NULL) < 0) if (rtnl_talk(&rth, &req.n, 0, 0, NULL) < 0)
exit(2); return -1;
return 0; return 0;
} }
......
...@@ -80,7 +80,7 @@ static int vlan_modify(int cmd, int argc, char **argv) ...@@ -80,7 +80,7 @@ static int vlan_modify(int cmd, int argc, char **argv)
if (d == NULL || vid == -1) { if (d == NULL || vid == -1) {
fprintf(stderr, "Device and VLAN ID are required arguments.\n"); fprintf(stderr, "Device and VLAN ID are required arguments.\n");
exit(-1); return -1;
} }
req.ifm.ifi_index = ll_name_to_index(d); req.ifm.ifi_index = ll_name_to_index(d);
...@@ -132,7 +132,7 @@ static int vlan_modify(int cmd, int argc, char **argv) ...@@ -132,7 +132,7 @@ static int vlan_modify(int cmd, int argc, char **argv)
addattr_nest_end(&req.n, afspec); addattr_nest_end(&req.n, afspec);
if (rtnl_talk(&rth, &req.n, 0, 0, NULL) < 0) if (rtnl_talk(&rth, &req.n, 0, 0, NULL) < 0)
exit(2); return -1;
return 0; return 0;
} }
......
...@@ -1059,7 +1059,7 @@ static int iproute_modify(int cmd, unsigned flags, int argc, char **argv) ...@@ -1059,7 +1059,7 @@ static int iproute_modify(int cmd, unsigned flags, int argc, char **argv)
req.r.rtm_family = AF_INET; req.r.rtm_family = AF_INET;
if (rtnl_talk(&rth, &req.n, 0, 0, NULL) < 0) if (rtnl_talk(&rth, &req.n, 0, 0, NULL) < 0)
exit(2); return -1;
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment