ipaddress: Make print_linkinfo_brief() static
It shares lot of code with print_linkinfo(): drop duplicated part, change parameters list, make it static and call from print_linkinfo() after common path. While there move SPRINT_BUF() to the function scope from blocks to avoid duplication and use "%s" to print "\n" to help compiler optimize exit for both print_linkinfo_brief() and normal paths. Signed-off-by: Serhey Popovych <serhe.popovych@gmail.com> Signed-off-by: David Ahern <dsahern@gmail.com>
This commit is contained in:
parent
f5b50a18ae
commit
c956e9a934
|
|
@ -29,8 +29,6 @@ struct link_filter {
|
||||||
int get_operstate(const char *name);
|
int get_operstate(const char *name);
|
||||||
int print_linkinfo(const struct sockaddr_nl *who,
|
int print_linkinfo(const struct sockaddr_nl *who,
|
||||||
struct nlmsghdr *n, void *arg);
|
struct nlmsghdr *n, void *arg);
|
||||||
int print_linkinfo_brief(const struct sockaddr_nl *who,
|
|
||||||
struct nlmsghdr *n, void *arg);
|
|
||||||
int print_addrinfo(const struct sockaddr_nl *who,
|
int print_addrinfo(const struct sockaddr_nl *who,
|
||||||
struct nlmsghdr *n, void *arg);
|
struct nlmsghdr *n, void *arg);
|
||||||
int print_addrlabel(const struct sockaddr_nl *who,
|
int print_addrlabel(const struct sockaddr_nl *who,
|
||||||
|
|
|
||||||
|
|
@ -752,63 +752,12 @@ static void print_link_stats(FILE *fp, struct nlmsghdr *n)
|
||||||
fprintf(fp, "%s", _SL_);
|
fprintf(fp, "%s", _SL_);
|
||||||
}
|
}
|
||||||
|
|
||||||
int print_linkinfo_brief(const struct sockaddr_nl *who,
|
static int print_linkinfo_brief(FILE *fp, const char *name,
|
||||||
struct nlmsghdr *n, void *arg)
|
const struct ifinfomsg *ifi,
|
||||||
|
struct rtattr *tb[])
|
||||||
{
|
{
|
||||||
FILE *fp = (FILE *)arg;
|
|
||||||
struct ifinfomsg *ifi = NLMSG_DATA(n);
|
|
||||||
struct rtattr *tb[IFLA_MAX+1];
|
|
||||||
int len = n->nlmsg_len;
|
|
||||||
const char *name;
|
|
||||||
unsigned int m_flag = 0;
|
unsigned int m_flag = 0;
|
||||||
|
|
||||||
if (n->nlmsg_type != RTM_NEWLINK && n->nlmsg_type != RTM_DELLINK)
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
len -= NLMSG_LENGTH(sizeof(*ifi));
|
|
||||||
if (len < 0)
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
if (filter.ifindex && ifi->ifi_index != filter.ifindex)
|
|
||||||
return -1;
|
|
||||||
if (filter.up && !(ifi->ifi_flags&IFF_UP))
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
parse_rtattr(tb, IFLA_MAX, IFLA_RTA(ifi), len);
|
|
||||||
|
|
||||||
name = get_ifname_rta(ifi->ifi_index, tb[IFLA_IFNAME]);
|
|
||||||
if (!name)
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
if (filter.label &&
|
|
||||||
(!filter.family || filter.family == AF_PACKET) &&
|
|
||||||
fnmatch(filter.label, name, 0))
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
if (tb[IFLA_GROUP]) {
|
|
||||||
int group = rta_getattr_u32(tb[IFLA_GROUP]);
|
|
||||||
|
|
||||||
if (filter.group != -1 && group != filter.group)
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (tb[IFLA_MASTER]) {
|
|
||||||
int master = rta_getattr_u32(tb[IFLA_MASTER]);
|
|
||||||
|
|
||||||
if (filter.master > 0 && master != filter.master)
|
|
||||||
return -1;
|
|
||||||
} else if (filter.master > 0)
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
if (filter.kind && match_link_kind(tb, filter.kind, 0))
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
if (filter.slave_kind && match_link_kind(tb, filter.slave_kind, 1))
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
if (n->nlmsg_type == RTM_DELLINK)
|
|
||||||
print_bool(PRINT_ANY, "deleted", "Deleted ", true);
|
|
||||||
|
|
||||||
m_flag = print_name_and_link("%-16s ", COLOR_NONE, name, tb);
|
m_flag = print_name_and_link("%-16s ", COLOR_NONE, name, tb);
|
||||||
|
|
||||||
if (tb[IFLA_OPERSTATE])
|
if (tb[IFLA_OPERSTATE])
|
||||||
|
|
@ -868,6 +817,7 @@ int print_linkinfo(const struct sockaddr_nl *who,
|
||||||
int len = n->nlmsg_len;
|
int len = n->nlmsg_len;
|
||||||
const char *name;
|
const char *name;
|
||||||
unsigned int m_flag = 0;
|
unsigned int m_flag = 0;
|
||||||
|
SPRINT_BUF(b1);
|
||||||
|
|
||||||
if (n->nlmsg_type != RTM_NEWLINK && n->nlmsg_type != RTM_DELLINK)
|
if (n->nlmsg_type != RTM_NEWLINK && n->nlmsg_type != RTM_DELLINK)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
@ -916,6 +866,9 @@ int print_linkinfo(const struct sockaddr_nl *who,
|
||||||
if (n->nlmsg_type == RTM_DELLINK)
|
if (n->nlmsg_type == RTM_DELLINK)
|
||||||
print_bool(PRINT_ANY, "deleted", "Deleted ", true);
|
print_bool(PRINT_ANY, "deleted", "Deleted ", true);
|
||||||
|
|
||||||
|
if (brief)
|
||||||
|
return print_linkinfo_brief(fp, name, ifi, tb);
|
||||||
|
|
||||||
print_int(PRINT_ANY, "ifindex", "%d: ", ifi->ifi_index);
|
print_int(PRINT_ANY, "ifindex", "%d: ", ifi->ifi_index);
|
||||||
|
|
||||||
m_flag = print_name_and_link("%s: ", COLOR_IFNAME, name, tb);
|
m_flag = print_name_and_link("%s: ", COLOR_IFNAME, name, tb);
|
||||||
|
|
@ -949,7 +902,6 @@ int print_linkinfo(const struct sockaddr_nl *who,
|
||||||
print_linkmode(fp, tb[IFLA_LINKMODE]);
|
print_linkmode(fp, tb[IFLA_LINKMODE]);
|
||||||
|
|
||||||
if (tb[IFLA_GROUP]) {
|
if (tb[IFLA_GROUP]) {
|
||||||
SPRINT_BUF(b1);
|
|
||||||
int group = rta_getattr_u32(tb[IFLA_GROUP]);
|
int group = rta_getattr_u32(tb[IFLA_GROUP]);
|
||||||
|
|
||||||
print_string(PRINT_ANY,
|
print_string(PRINT_ANY,
|
||||||
|
|
@ -965,8 +917,6 @@ int print_linkinfo(const struct sockaddr_nl *who,
|
||||||
print_link_event(fp, rta_getattr_u32(tb[IFLA_EVENT]));
|
print_link_event(fp, rta_getattr_u32(tb[IFLA_EVENT]));
|
||||||
|
|
||||||
if (!filter.family || filter.family == AF_PACKET || show_details) {
|
if (!filter.family || filter.family == AF_PACKET || show_details) {
|
||||||
SPRINT_BUF(b1);
|
|
||||||
|
|
||||||
print_string(PRINT_FP, NULL, "%s", _SL_);
|
print_string(PRINT_FP, NULL, "%s", _SL_);
|
||||||
print_string(PRINT_ANY,
|
print_string(PRINT_ANY,
|
||||||
"link_type",
|
"link_type",
|
||||||
|
|
@ -1066,7 +1016,6 @@ int print_linkinfo(const struct sockaddr_nl *who,
|
||||||
rta_getattr_str(tb[IFLA_PHYS_PORT_NAME]));
|
rta_getattr_str(tb[IFLA_PHYS_PORT_NAME]));
|
||||||
|
|
||||||
if (tb[IFLA_PHYS_PORT_ID]) {
|
if (tb[IFLA_PHYS_PORT_ID]) {
|
||||||
SPRINT_BUF(b1);
|
|
||||||
print_string(PRINT_ANY,
|
print_string(PRINT_ANY,
|
||||||
"phys_port_id",
|
"phys_port_id",
|
||||||
"portid %s ",
|
"portid %s ",
|
||||||
|
|
@ -1077,7 +1026,6 @@ int print_linkinfo(const struct sockaddr_nl *who,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (tb[IFLA_PHYS_SWITCH_ID]) {
|
if (tb[IFLA_PHYS_SWITCH_ID]) {
|
||||||
SPRINT_BUF(b1);
|
|
||||||
print_string(PRINT_ANY,
|
print_string(PRINT_ANY,
|
||||||
"phys_switch_id",
|
"phys_switch_id",
|
||||||
"switchid %s ",
|
"switchid %s ",
|
||||||
|
|
@ -1116,7 +1064,7 @@ int print_linkinfo(const struct sockaddr_nl *who,
|
||||||
close_json_array(PRINT_JSON, NULL);
|
close_json_array(PRINT_JSON, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
print_string(PRINT_FP, NULL, "\n", NULL);
|
print_string(PRINT_FP, NULL, "%s", "\n");
|
||||||
fflush(fp);
|
fflush(fp);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
@ -1971,14 +1919,10 @@ static int ipaddr_list_flush_or_save(int argc, char **argv, int action)
|
||||||
for (l = linfo.head; l; l = l->next) {
|
for (l = linfo.head; l; l = l->next) {
|
||||||
struct nlmsghdr *n = &l->h;
|
struct nlmsghdr *n = &l->h;
|
||||||
struct ifinfomsg *ifi = NLMSG_DATA(n);
|
struct ifinfomsg *ifi = NLMSG_DATA(n);
|
||||||
int res;
|
int res = 0;
|
||||||
|
|
||||||
open_json_object(NULL);
|
open_json_object(NULL);
|
||||||
if (brief)
|
if (brief || !no_link)
|
||||||
res = print_linkinfo_brief(NULL, n, stdout);
|
|
||||||
else if (no_link)
|
|
||||||
res = 0;
|
|
||||||
else
|
|
||||||
res = print_linkinfo(NULL, n, stdout);
|
res = print_linkinfo(NULL, n, stdout);
|
||||||
if (res >= 0 && filter.family != AF_PACKET)
|
if (res >= 0 && filter.family != AF_PACKET)
|
||||||
print_selected_addrinfo(ifi, ainfo->head, stdout);
|
print_selected_addrinfo(ifi, ainfo->head, stdout);
|
||||||
|
|
|
||||||
|
|
@ -1075,10 +1075,7 @@ int iplink_get(unsigned int flags, char *name, __u32 filt_mask)
|
||||||
return -2;
|
return -2;
|
||||||
|
|
||||||
open_json_object(NULL);
|
open_json_object(NULL);
|
||||||
if (brief)
|
print_linkinfo(NULL, answer, stdout);
|
||||||
print_linkinfo_brief(NULL, answer, stdout);
|
|
||||||
else
|
|
||||||
print_linkinfo(NULL, answer, stdout);
|
|
||||||
close_json_object();
|
close_json_object();
|
||||||
|
|
||||||
free(answer);
|
free(answer);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue