PPPoE usses a midchain adjacency stack on an interface-tx DPO
[vpp.git] / src / plugins / pppoe / pppoe_tap.c
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2017 Intel and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *------------------------------------------------------------------
16  */
17
18 #include <pppoe/pppoe.h>
19 #include <vnet/unix/tapcli.h>
20
21 static clib_error_t *
22 pppoe_add_del_tap_command_fn (vlib_main_t * vm,
23                               unformat_input_t * input,
24                               vlib_cli_command_t * cmd)
25 {
26   unformat_input_t _line_input, *line_input = &_line_input;
27   pppoe_main_t *pem = &pppoe_main;
28   u8 is_add = 1;
29   u8 tap_if_index_set = 0;
30   u32 tap_if_index = 0;
31   clib_error_t *error = NULL;
32
33   /* Get a line of input. */
34   if (!unformat_user (input, unformat_line_input, line_input))
35     return 0;
36
37   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
38     {
39       if (unformat (line_input, "del"))
40         {
41           is_add = 0;
42         }
43       else if (unformat (line_input, "tap-if-index %d", &tap_if_index))
44         tap_if_index_set = 1;
45       else
46         {
47           error = clib_error_return (0, "parse error: '%U'",
48                                      format_unformat_error, line_input);
49           goto done;
50         }
51     }
52
53   if (tap_if_index_set == 0)
54     {
55       error = clib_error_return (0, "tap if index not specified");
56       goto done;
57     }
58
59   if (is_add)
60     {
61       pem->tap_if_index = tap_if_index;
62     }
63   else
64     {
65       pem->tap_if_index = ~0;
66     }
67
68 done:
69   unformat_free (line_input);
70
71   return error;
72 }
73
74 /* *INDENT-OFF* */
75 VLIB_CLI_COMMAND (create_pppoe_tap_cmd, static) =
76 {
77     .path = "create pppoe tap",
78     .short_help = "create pppoe tap if-name <intfc> [del]",
79     .function = pppoe_add_del_tap_command_fn,
80 };
81 /* *INDENT-ON* */
82
83 /*
84  * fd.io coding-style-patch-verification: ON
85  *
86  * Local Variables:
87  * eval: (c-set-style "gnu")
88  * End:
89  */