FD.io VPP  v16.06
Vector Packet Processing
version.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 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 #include <vlib/vlib.h>
16 #include <vppinfra/cpu.h>
17 #include <app/version.h>
18 
19 #if DPDK > 0
20 #include <rte_version.h>
21 #include <vnet/vnet.h>
22 #include <vnet/devices/dpdk/dpdk.h>
23 #endif /* DPDK */
24 
25 static char * vpe_version_string =
26  "vpp v" VPP_BUILD_VER
27  " built by " VPP_BUILD_USER
28  " on " VPP_BUILD_HOST
29  " at " VPP_BUILD_DATE;
30 
31 static char * vpe_compiler =
32 #if defined(__INTEL_COMPILER)
33 #define __(x) #x
34 #define _(x) __(x)
35  "icc " _(__INTEL_COMPILER) " (" __VERSION__ ")";
36 #undef _
37 #undef __
38 #elif defined(__clang__)
39  "Clang/LLVM " __clang_version__;
40 #elif defined (__GNUC__)
41  "GCC " __VERSION__;
42 #else
43  "unknown compiler";
44 #endif
45 
46 static clib_error_t *
48  unformat_input_t * input,
49  vlib_cli_command_t * cmd)
50 {
51  if (unformat (input, "verbose"))
52  {
53 #define _(a,b,c) vlib_cli_output (vm, "%-25s " b, a ":", c);
54  _("Version", "%s", "v" VPP_BUILD_VER);
55  _("Compiled by", "%s", VPP_BUILD_USER);
56  _("Compile host", "%s", VPP_BUILD_HOST);
57  _("Compile date", "%s", VPP_BUILD_DATE);
58  _("Compile location", "%s", VPP_BUILD_TOPDIR);
59  _("Compiler", "%s", vpe_compiler);
60  _("CPU model name", "%U", format_cpu_model_name);
61  _("CPU microarchitecture", "%U", format_cpu_uarch);
62  _("Current PID", "%d", getpid());
63 #if DPDK > 0
64  _("DPDK Version", "%s", rte_version());
65  _("DPDK EAL init args", "%s", dpdk_main.eal_init_args_str);
66 #endif
67 #undef _
68  }
69  else
71  return 0;
72 }
73 
74 VLIB_CLI_COMMAND (show_vpe_version_command, static) = {
75  .path = "show version",
76  .short_help = "show version information",
77  .function = show_vpe_version_command_fn,
78 };
79 
81 {
82  return VPP_BUILD_TOPDIR;
83 }
84 
85 char * vpe_api_get_version (void)
86 {
87  return VPP_BUILD_VER;
88 }
89 char * vpe_api_get_build_date (void)
90 {
91  return VPP_BUILD_DATE;
92 }
uword unformat(unformat_input_t *i, char *fmt,...)
Definition: unformat.c:942
dpdk_main_t dpdk_main
Definition: dpdk.h:415
static char * vpe_compiler
Definition: version.c:31
static char * vpe_version_string
Definition: version.c:25
char * vpe_api_get_version(void)
Definition: version.c:85
u8 * eal_init_args_str
Definition: dpdk.h:343
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:538
static clib_error_t * show_vpe_version_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: version.c:47
char * vpe_api_get_build_directory(void)
Definition: version.c:80
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:150
format_function_t format_cpu_uarch
Definition: cpu.h:19
char * vpe_api_get_build_date(void)
Definition: version.c:89
struct _unformat_input_t unformat_input_t
format_function_t format_cpu_model_name
Definition: cpu.h:20