blob: 046fff44731c338beadea6b435ded3fee6af9822 [file] [log] [blame]
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vnet/adj/adj.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010017#include <vnet/adj/adj_internal.h>
18
19/**
20 * adj_rewrite_add_and_lock
21 *
22 * A rewrite sub-type has the rewrite string provided, but no key
23 */
24adj_index_t
25adj_rewrite_add_and_lock (fib_protocol_t nh_proto,
26 fib_link_t link_type,
27 u32 sw_if_index,
28 u8 *rewrite)
29{
30 ip_adjacency_t *adj;
31
32 adj = adj_alloc(nh_proto);
33
34 adj->lookup_next_index = IP_LOOKUP_NEXT_REWRITE;
Neale Rannsb80c5362016-10-08 13:03:40 +010035 memset(&adj->sub_type.nbr.next_hop, 0, sizeof(adj->sub_type.nbr.next_hop));
Neale Ranns0bfe5d82016-08-25 15:29:12 +010036 adj->ia_link = link_type;
Neale Rannsb80c5362016-10-08 13:03:40 +010037 adj->ia_nh_proto = nh_proto;
Neale Ranns0bfe5d82016-08-25 15:29:12 +010038 adj->rewrite_header.sw_if_index = sw_if_index;
39
40 ASSERT(NULL != rewrite);
41
42 vnet_rewrite_for_sw_interface(vnet_get_main(),
Neale Rannsb80c5362016-10-08 13:03:40 +010043 link_type,
Neale Ranns0bfe5d82016-08-25 15:29:12 +010044 adj->rewrite_header.sw_if_index,
Neale Rannsb80c5362016-10-08 13:03:40 +010045 adj_get_rewrite_node(link_type),
Neale Ranns0bfe5d82016-08-25 15:29:12 +010046 rewrite,
47 &adj->rewrite_header,
48 sizeof (adj->rewrite_data));
49
Neale Ranns6c3ebcc2016-10-02 21:20:15 +010050 adj_lock(adj_get_index(adj));
Neale Ranns0bfe5d82016-08-25 15:29:12 +010051
Neale Ranns6c3ebcc2016-10-02 21:20:15 +010052 return (adj_get_index(adj));
Neale Ranns0bfe5d82016-08-25 15:29:12 +010053}