blob: ee1312e3498298f87f386b337c8f1ba87f4cc124 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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/*
16 * unix.h: Unix specific main state
17 *
18 * Copyright (c) 2008 Eliot Dresselhaus
19 *
20 * Permission is hereby granted, free of charge, to any person obtaining
21 * a copy of this software and associated documentation files (the
22 * "Software"), to deal in the Software without restriction, including
23 * without limitation the rights to use, copy, modify, merge, publish,
24 * distribute, sublicense, and/or sell copies of the Software, and to
25 * permit persons to whom the Software is furnished to do so, subject to
26 * the following conditions:
27 *
28 * The above copyright notice and this permission notice shall be
29 * included in all copies or substantial portions of the Software.
30 *
31 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38 */
39
40#ifndef included_unix_unix_h
41#define included_unix_unix_h
42
43#include <vppinfra/socket.h>
Chris Luke0aca5eb2016-04-25 13:48:54 -040044#include <termios.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070045
Chris Luke475674e2017-07-05 18:02:53 -040046
Ed Warnickecb9cada2015-12-08 15:45:58 -070047struct unix_file;
Dave Barach9b8ffd92016-07-08 08:13:45 -040048typedef clib_error_t *(unix_file_function_t) (struct unix_file * f);
Ed Warnickecb9cada2015-12-08 15:45:58 -070049
Dave Barach9b8ffd92016-07-08 08:13:45 -040050typedef struct unix_file
51{
Ed Warnickecb9cada2015-12-08 15:45:58 -070052 /* Unix file descriptor from open/socket. */
53 u32 file_descriptor;
54
55 u32 flags;
56#define UNIX_FILE_DATA_AVAILABLE_TO_WRITE (1 << 0)
Damjan Marion83243a02016-02-29 13:09:30 +010057#define UNIX_FILE_EVENT_EDGE_TRIGGERED (1 << 1)
Ed Warnickecb9cada2015-12-08 15:45:58 -070058
59 /* Data available for function's use. */
60 uword private_data;
61
62 /* Functions to be called when read/write data becomes ready. */
Dave Barach9b8ffd92016-07-08 08:13:45 -040063 unix_file_function_t *read_function, *write_function, *error_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -070064} unix_file_t;
65
Dave Barach9b8ffd92016-07-08 08:13:45 -040066typedef struct
67{
Ed Warnickecb9cada2015-12-08 15:45:58 -070068 f64 time;
Dave Barach9b8ffd92016-07-08 08:13:45 -040069 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -070070} unix_error_history_t;
71
Dave Barach9b8ffd92016-07-08 08:13:45 -040072typedef enum
73{
Ed Warnickecb9cada2015-12-08 15:45:58 -070074 UNIX_FILE_UPDATE_ADD,
75 UNIX_FILE_UPDATE_MODIFY,
76 UNIX_FILE_UPDATE_DELETE,
77} unix_file_update_type_t;
78
Dave Barach9b8ffd92016-07-08 08:13:45 -040079typedef struct
80{
Ed Warnickecb9cada2015-12-08 15:45:58 -070081 /* Back pointer to main structure. */
Dave Barach9b8ffd92016-07-08 08:13:45 -040082 vlib_main_t *vlib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070083
84 u32 flags;
85 /* Run interactively or as daemon (background process). */
86#define UNIX_FLAG_INTERACTIVE (1 << 0)
87#define UNIX_FLAG_NODAEMON (1 << 1)
88
89 /* Pool of files to poll for input/output. */
Dave Barach9b8ffd92016-07-08 08:13:45 -040090 unix_file_t *file_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -070091
92 /* CLI listen socket. */
93 clib_socket_t cli_listen_socket;
94
Dave Barach9b8ffd92016-07-08 08:13:45 -040095 void (*file_update) (unix_file_t * file,
96 unix_file_update_type_t update_type);
Ed Warnickecb9cada2015-12-08 15:45:58 -070097
98 /* Circular buffer of last unix errors. */
99 unix_error_history_t error_history[128];
100 u32 error_history_index;
101 u64 n_total_errors;
102
103 /* startup-config filename */
104 u8 *startup_config_filename;
105
Damjan Marion57d963f2017-07-20 19:17:06 +0200106 /* runtime directory path */
107 u8 *runtime_dir;
108
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109 /* unix config complete */
110 volatile int unix_config_complete;
111
112 /* CLI log file. GIGO. */
113 u8 *log_filename;
114 int log_fd;
Chris Luke572d8122016-04-25 13:49:07 -0400115
Chris Luke0aca5eb2016-04-25 13:48:54 -0400116 /* Don't put CLI connections into character mode */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700117 int cli_line_mode;
Chris Luke0aca5eb2016-04-25 13:48:54 -0400118
119 /* Maximum amount of command line history to keep per session */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120 u32 cli_history_limit;
Chris Luke0aca5eb2016-04-25 13:48:54 -0400121
Chris Luke572d8122016-04-25 13:49:07 -0400122 /* Suppress the welcome banner at CLI session start */
123 int cli_no_banner;
124
Chris Luke7afda3a2016-04-25 13:49:22 -0400125 /* Maximum pager buffer size */
126 u32 cli_pager_buffer_limit;
127
128 /* Suppress the pager */
129 int cli_no_pager;
130
Chris Luke0aca5eb2016-04-25 13:48:54 -0400131 /* Store the original state of stdin when it's a tty */
132 struct termios tio_stdin;
133 int tio_isset;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134} unix_main_t;
135
136/* Global main structure. */
137extern unix_main_t unix_main;
138
139always_inline uword
140unix_file_add (unix_main_t * um, unix_file_t * template)
141{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400142 unix_file_t *f;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700143 pool_get (um->file_pool, f);
144 f[0] = template[0];
145 um->file_update (f, UNIX_FILE_UPDATE_ADD);
146 return f - um->file_pool;
147}
148
149always_inline void
150unix_file_del (unix_main_t * um, unix_file_t * f)
151{
152 um->file_update (f, UNIX_FILE_UPDATE_DELETE);
153 close (f->file_descriptor);
154 f->file_descriptor = ~0;
155 pool_put (um->file_pool, f);
156}
157
Damjan Mariona9a54c12017-06-05 21:54:46 +0200158always_inline void
159unix_file_del_by_index (unix_main_t * um, uword index)
160{
161 unix_file_t *uf;
162 uf = pool_elt_at_index (um->file_pool, index);
163 unix_file_del (um, uf);
164}
165
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400167unix_file_set_data_available_to_write (u32 unix_file_index,
168 uword is_available)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700169{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400170 unix_file_t *uf = pool_elt_at_index (unix_main.file_pool, unix_file_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171 uword was_available = (uf->flags & UNIX_FILE_DATA_AVAILABLE_TO_WRITE);
172 if ((was_available != 0) != (is_available != 0))
173 {
174 uf->flags ^= UNIX_FILE_DATA_AVAILABLE_TO_WRITE;
175 unix_main.file_update (uf, UNIX_FILE_UPDATE_MODIFY);
176 }
177 return was_available != 0;
178}
179
180always_inline void
181unix_save_error (unix_main_t * um, clib_error_t * error)
182{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400183 unix_error_history_t *eh = um->error_history + um->error_history_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184 clib_error_free_vector (eh->error);
185 eh->error = error;
186 eh->time = vlib_time_now (um->vlib_main);
187 um->n_total_errors += 1;
188 if (++um->error_history_index >= ARRAY_LEN (um->error_history))
189 um->error_history_index = 0;
190}
191
192/* Main function for Unix VLIB. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400193int vlib_unix_main (int argc, char *argv[]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700194
195/* Call to allocate/initialize physical DMA memory subsystem.
196 This is not an init function so that users can explicitly enable/disable
197 physmem when its not needed. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400198clib_error_t *unix_physmem_init (vlib_main_t * vm,
199 int fail_if_physical_memory_not_present);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700200
Damjan Marionb4d89272016-05-12 22:14:45 +0200201static inline int
202unix_physmem_is_fake (vlib_main_t * vm)
203{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400204 vlib_physmem_main_t *vpm = &vm->physmem_main;
Damjan Marionb4d89272016-05-12 22:14:45 +0200205 return vpm->is_fake;
206}
207
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208/* Set prompt for CLI. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400209void vlib_unix_cli_set_prompt (char *prompt);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700210
Dave Barach9b8ffd92016-07-08 08:13:45 -0400211static inline unix_main_t *
212vlib_unix_get_main (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700213{
214 return &unix_main;
215}
216
Damjan Marion57d963f2017-07-20 19:17:06 +0200217static inline char *
218vlib_unix_get_runtime_dir (void)
219{
220 return (char *) unix_main.runtime_dir;
221}
222
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223/* thread stack array; vec_len = max number of threads */
Damjan Marion6a7acc22016-12-19 16:28:36 +0100224extern u8 **vlib_thread_stacks;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225
Damjan Mariona42cd342016-04-13 18:03:20 +0200226/* utils */
227
Dave Barach9b8ffd92016-07-08 08:13:45 -0400228clib_error_t *vlib_sysfs_write (char *file_name, char *fmt, ...);
Damjan Mariona42cd342016-04-13 18:03:20 +0200229
Dave Barach9b8ffd92016-07-08 08:13:45 -0400230clib_error_t *vlib_sysfs_read (char *file_name, char *fmt, ...);
Damjan Marion5a206ea2016-05-12 22:11:03 +0200231
Dave Barach9b8ffd92016-07-08 08:13:45 -0400232u8 *vlib_sysfs_link_to_name (char *link);
Damjan Mariona42cd342016-04-13 18:03:20 +0200233
Damjan Marion20f64412016-09-27 17:51:13 +0200234int vlib_sysfs_get_free_hugepages (unsigned int numa_node, int page_size);
235
Dave Barach9b8ffd92016-07-08 08:13:45 -0400236clib_error_t *foreach_directory_file (char *dir_name,
237 clib_error_t * (*f) (void *arg,
238 u8 * path_name,
239 u8 * file_name),
240 void *arg, int scan_dirs);
Damjan Mariona42cd342016-04-13 18:03:20 +0200241
Damjan Marion57d963f2017-07-20 19:17:06 +0200242clib_error_t *vlib_unix_recursive_mkdir (char *path);
Chris Luke475674e2017-07-05 18:02:53 -0400243
Ed Warnickecb9cada2015-12-08 15:45:58 -0700244#endif /* included_unix_unix_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400245
246/*
247 * fd.io coding-style-patch-verification: ON
248 *
249 * Local Variables:
250 * eval: (c-set-style "gnu")
251 * End:
252 */