blob: 25ea6ac44db955d8dd6a99ac6187c130e05a97b7 [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
David Aherna9195252018-04-17 17:33:07 -07002#include <linux/netlink.h>
3#include <linux/rtnetlink.h>
4#include <linux/types.h>
5#include <net/ip.h>
6#include <net/net_namespace.h>
7#include <net/tcp.h>
8
David Ahern767a2212018-10-04 20:07:51 -07009static int ip_metrics_convert(struct net *net, struct nlattr *fc_mx,
David Ahernd7e774f2018-11-06 12:51:15 -080010 int fc_mx_len, u32 *metrics,
11 struct netlink_ext_ack *extack)
David Aherna9195252018-04-17 17:33:07 -070012{
13 bool ecn_ca = false;
14 struct nlattr *nla;
15 int remaining;
16
17 if (!fc_mx)
18 return 0;
19
20 nla_for_each_attr(nla, fc_mx, fc_mx_len, remaining) {
21 int type = nla_type(nla);
22 u32 val;
23
24 if (!type)
25 continue;
David Ahernd7e774f2018-11-06 12:51:15 -080026 if (type > RTAX_MAX) {
27 NL_SET_ERR_MSG(extack, "Invalid metric type");
David Aherna9195252018-04-17 17:33:07 -070028 return -EINVAL;
David Ahernd7e774f2018-11-06 12:51:15 -080029 }
David Aherna9195252018-04-17 17:33:07 -070030
31 if (type == RTAX_CC_ALGO) {
32 char tmp[TCP_CA_NAME_MAX];
33
Francis Laniel872f6902020-11-15 18:08:06 +010034 nla_strscpy(tmp, nla, sizeof(tmp));
David Aherna9195252018-04-17 17:33:07 -070035 val = tcp_ca_get_key_by_name(net, tmp, &ecn_ca);
David Ahernd7e774f2018-11-06 12:51:15 -080036 if (val == TCP_CA_UNSPEC) {
37 NL_SET_ERR_MSG(extack, "Unknown tcp congestion algorithm");
David Aherna9195252018-04-17 17:33:07 -070038 return -EINVAL;
David Ahernd7e774f2018-11-06 12:51:15 -080039 }
David Aherna9195252018-04-17 17:33:07 -070040 } else {
David Ahernd7e774f2018-11-06 12:51:15 -080041 if (nla_len(nla) != sizeof(u32)) {
42 NL_SET_ERR_MSG_ATTR(extack, nla,
43 "Invalid attribute in metrics");
Eric Dumazet5b5e7a02018-06-05 06:06:19 -070044 return -EINVAL;
David Ahernd7e774f2018-11-06 12:51:15 -080045 }
David Aherna9195252018-04-17 17:33:07 -070046 val = nla_get_u32(nla);
47 }
48 if (type == RTAX_ADVMSS && val > 65535 - 40)
49 val = 65535 - 40;
50 if (type == RTAX_MTU && val > 65535 - 15)
51 val = 65535 - 15;
52 if (type == RTAX_HOPLIMIT && val > 255)
53 val = 255;
David Ahernd7e774f2018-11-06 12:51:15 -080054 if (type == RTAX_FEATURES && (val & ~RTAX_FEATURE_MASK)) {
55 NL_SET_ERR_MSG(extack, "Unknown flag set in feature mask in metrics attribute");
David Aherna9195252018-04-17 17:33:07 -070056 return -EINVAL;
David Ahernd7e774f2018-11-06 12:51:15 -080057 }
David Aherna9195252018-04-17 17:33:07 -070058 metrics[type - 1] = val;
59 }
60
61 if (ecn_ca)
62 metrics[RTAX_FEATURES - 1] |= DST_FEATURE_ECN_CA;
63
64 return 0;
65}
David Ahern767a2212018-10-04 20:07:51 -070066
67struct dst_metrics *ip_fib_metrics_init(struct net *net, struct nlattr *fc_mx,
David Ahernd7e774f2018-11-06 12:51:15 -080068 int fc_mx_len,
69 struct netlink_ext_ack *extack)
David Ahern767a2212018-10-04 20:07:51 -070070{
71 struct dst_metrics *fib_metrics;
72 int err;
73
74 if (!fc_mx)
75 return (struct dst_metrics *)&dst_default_metrics;
76
77 fib_metrics = kzalloc(sizeof(*fib_metrics), GFP_KERNEL);
78 if (unlikely(!fib_metrics))
79 return ERR_PTR(-ENOMEM);
80
David Ahernd7e774f2018-11-06 12:51:15 -080081 err = ip_metrics_convert(net, fc_mx, fc_mx_len, fib_metrics->metrics,
82 extack);
David Ahern767a2212018-10-04 20:07:51 -070083 if (!err) {
84 refcount_set(&fib_metrics->refcnt, 1);
85 } else {
86 kfree(fib_metrics);
87 fib_metrics = ERR_PTR(err);
88 }
89
90 return fib_metrics;
91}
92EXPORT_SYMBOL_GPL(ip_fib_metrics_init);