Skip to content

Commit

Permalink
mpls: Use definition for reserved label checks
Browse files Browse the repository at this point in the history
In multiple locations there are checks for whether the label in hand
is a reserved label or not using the arbritray value of 16. Factor
this out into a #define for better maintainability and for
documentation.

Signed-off-by: Robert Shearman <[email protected]>
Acked-by: Roopa Prabhu <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
rshearman authored and davem330 committed Aug 4, 2015
1 parent c961b1c commit a6affd2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
2 changes: 2 additions & 0 deletions include/uapi/linux/mpls.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,6 @@ struct mpls_label {
#define MPLS_LABEL_OAMALERT 14 /* RFC3429 */
#define MPLS_LABEL_EXTENSION 15 /* RFC7274 */

#define MPLS_LABEL_FIRST_UNRESERVED 16 /* RFC3032 */

#endif /* _UAPI_MPLS_H */
21 changes: 11 additions & 10 deletions net/mpls/af_mpls.c
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ static void mpls_notify_route(struct net *net, unsigned index,
struct mpls_route *rt = new ? new : old;
unsigned nlm_flags = (old && new) ? NLM_F_REPLACE : 0;
/* Ignore reserved labels for now */
if (rt && (index >= 16))
if (rt && (index >= MPLS_LABEL_FIRST_UNRESERVED))
rtmsg_lfib(event, index, rt, nlh, net, portid, nlm_flags);
}

Expand Down Expand Up @@ -327,7 +327,8 @@ static unsigned find_free_label(struct net *net)

platform_label = rtnl_dereference(net->mpls.platform_label);
platform_labels = net->mpls.platform_labels;
for (index = 16; index < platform_labels; index++) {
for (index = MPLS_LABEL_FIRST_UNRESERVED; index < platform_labels;
index++) {
if (!rtnl_dereference(platform_label[index]))
return index;
}
Expand Down Expand Up @@ -436,8 +437,8 @@ static int mpls_route_add(struct mpls_route_config *cfg)
index = find_free_label(net);
}

/* The first 16 labels are reserved, and may not be set */
if (index < 16)
/* Reserved labels may not be set */
if (index < MPLS_LABEL_FIRST_UNRESERVED)
goto errout;

/* The full 20 bit range may not be supported. */
Expand Down Expand Up @@ -516,8 +517,8 @@ static int mpls_route_del(struct mpls_route_config *cfg)

index = cfg->rc_label;

/* The first 16 labels are reserved, and may not be removed */
if (index < 16)
/* Reserved labels may not be removed */
if (index < MPLS_LABEL_FIRST_UNRESERVED)
goto errout;

/* The full 20 bit range may not be supported */
Expand Down Expand Up @@ -835,8 +836,8 @@ static int rtm_to_route_config(struct sk_buff *skb, struct nlmsghdr *nlh,
&cfg->rc_label))
goto errout;

/* The first 16 labels are reserved, and may not be set */
if (cfg->rc_label < 16)
/* Reserved labels may not be set */
if (cfg->rc_label < MPLS_LABEL_FIRST_UNRESERVED)
goto errout;

break;
Expand Down Expand Up @@ -961,8 +962,8 @@ static int mpls_dump_routes(struct sk_buff *skb, struct netlink_callback *cb)
ASSERT_RTNL();

index = cb->args[0];
if (index < 16)
index = 16;
if (index < MPLS_LABEL_FIRST_UNRESERVED)
index = MPLS_LABEL_FIRST_UNRESERVED;

platform_label = rtnl_dereference(net->mpls.platform_label);
platform_labels = net->mpls.platform_labels;
Expand Down

0 comments on commit a6affd2

Please sign in to comment.