tools: ynl: use strerror() if no extack of note provided
authorJakub Kicinski <kuba@kernel.org>
Sat, 2 Dec 2023 21:13:10 +0000 (13:13 -0800)
committerJakub Kicinski <kuba@kernel.org>
Wed, 6 Dec 2023 04:08:13 +0000 (20:08 -0800)
If kernel didn't give use any meaningful error - print
a strerror() to the ynl error message.

Reviewed-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Link: https://lore.kernel.org/r/20231202211310.342716-1-kuba@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
tools/net/ynl/lib/ynl.c

index 830d25097009a5965a756400d82d1c3ae4315588..587286de10b559a040e4068c7eee8a31274a1a21 100644 (file)
@@ -145,8 +145,10 @@ ynl_ext_ack_check(struct ynl_sock *ys, const struct nlmsghdr *nlh,
        const struct nlattr *attr;
        const char *str = NULL;
 
-       if (!(nlh->nlmsg_flags & NLM_F_ACK_TLVS))
+       if (!(nlh->nlmsg_flags & NLM_F_ACK_TLVS)) {
+               yerr_msg(ys, "%s", strerror(ys->err.code));
                return MNL_CB_OK;
+       }
 
        mnl_attr_for_each(attr, nlh, hlen) {
                unsigned int len, type;
@@ -249,6 +251,8 @@ ynl_ext_ack_check(struct ynl_sock *ys, const struct nlmsghdr *nlh,
                yerr_msg(ys, "Kernel %s: %s%s",
                         ys->err.code ? "error" : "warning",
                         bad_attr, miss_attr);
+       else
+               yerr_msg(ys, "%s", strerror(ys->err.code));
 
        return MNL_CB_OK;
 }