Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 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 | /* |
| 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 Luke | 0aca5eb | 2016-04-25 13:48:54 -0400 | [diff] [blame] | 44 | #include <termios.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 45 | |
Chris Luke | 475674e | 2017-07-05 18:02:53 -0400 | [diff] [blame] | 46 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 47 | struct unix_file; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 48 | typedef clib_error_t *(unix_file_function_t) (struct unix_file * f); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 49 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 50 | typedef struct unix_file |
| 51 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 52 | /* 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 Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 57 | #define UNIX_FILE_EVENT_EDGE_TRIGGERED (1 << 1) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 58 | |
| 59 | /* Data available for function's use. */ |
| 60 | uword private_data; |
| 61 | |
| 62 | /* Functions to be called when read/write data becomes ready. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 63 | unix_file_function_t *read_function, *write_function, *error_function; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 64 | } unix_file_t; |
| 65 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 66 | typedef struct |
| 67 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 68 | f64 time; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 69 | clib_error_t *error; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 70 | } unix_error_history_t; |
| 71 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 72 | typedef enum |
| 73 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 74 | UNIX_FILE_UPDATE_ADD, |
| 75 | UNIX_FILE_UPDATE_MODIFY, |
| 76 | UNIX_FILE_UPDATE_DELETE, |
| 77 | } unix_file_update_type_t; |
| 78 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 79 | typedef struct |
| 80 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 81 | /* Back pointer to main structure. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 82 | vlib_main_t *vlib_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 83 | |
| 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 Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 90 | unix_file_t *file_pool; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 91 | |
| 92 | /* CLI listen socket. */ |
| 93 | clib_socket_t cli_listen_socket; |
| 94 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 95 | void (*file_update) (unix_file_t * file, |
| 96 | unix_file_update_type_t update_type); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 97 | |
| 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 Marion | 57d963f | 2017-07-20 19:17:06 +0200 | [diff] [blame] | 106 | /* runtime directory path */ |
| 107 | u8 *runtime_dir; |
| 108 | |
Pierre Pfister | 9a244bb | 2017-07-27 22:57:34 -0400 | [diff] [blame] | 109 | /* pidfile filename */ |
| 110 | u8 *pidfile; |
| 111 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 112 | /* unix config complete */ |
| 113 | volatile int unix_config_complete; |
| 114 | |
| 115 | /* CLI log file. GIGO. */ |
| 116 | u8 *log_filename; |
| 117 | int log_fd; |
Chris Luke | 572d812 | 2016-04-25 13:49:07 -0400 | [diff] [blame] | 118 | |
Chris Luke | 0aca5eb | 2016-04-25 13:48:54 -0400 | [diff] [blame] | 119 | /* Don't put CLI connections into character mode */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 120 | int cli_line_mode; |
Chris Luke | 0aca5eb | 2016-04-25 13:48:54 -0400 | [diff] [blame] | 121 | |
| 122 | /* Maximum amount of command line history to keep per session */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 123 | u32 cli_history_limit; |
Chris Luke | 0aca5eb | 2016-04-25 13:48:54 -0400 | [diff] [blame] | 124 | |
Chris Luke | 572d812 | 2016-04-25 13:49:07 -0400 | [diff] [blame] | 125 | /* Suppress the welcome banner at CLI session start */ |
| 126 | int cli_no_banner; |
| 127 | |
Chris Luke | 7afda3a | 2016-04-25 13:49:22 -0400 | [diff] [blame] | 128 | /* Maximum pager buffer size */ |
| 129 | u32 cli_pager_buffer_limit; |
| 130 | |
| 131 | /* Suppress the pager */ |
| 132 | int cli_no_pager; |
| 133 | |
Chris Luke | 0aca5eb | 2016-04-25 13:48:54 -0400 | [diff] [blame] | 134 | /* Store the original state of stdin when it's a tty */ |
| 135 | struct termios tio_stdin; |
| 136 | int tio_isset; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 137 | } unix_main_t; |
| 138 | |
| 139 | /* Global main structure. */ |
| 140 | extern unix_main_t unix_main; |
| 141 | |
| 142 | always_inline uword |
| 143 | unix_file_add (unix_main_t * um, unix_file_t * template) |
| 144 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 145 | unix_file_t *f; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 146 | pool_get (um->file_pool, f); |
| 147 | f[0] = template[0]; |
| 148 | um->file_update (f, UNIX_FILE_UPDATE_ADD); |
| 149 | return f - um->file_pool; |
| 150 | } |
| 151 | |
| 152 | always_inline void |
| 153 | unix_file_del (unix_main_t * um, unix_file_t * f) |
| 154 | { |
| 155 | um->file_update (f, UNIX_FILE_UPDATE_DELETE); |
| 156 | close (f->file_descriptor); |
| 157 | f->file_descriptor = ~0; |
| 158 | pool_put (um->file_pool, f); |
| 159 | } |
| 160 | |
Damjan Marion | a9a54c1 | 2017-06-05 21:54:46 +0200 | [diff] [blame] | 161 | always_inline void |
| 162 | unix_file_del_by_index (unix_main_t * um, uword index) |
| 163 | { |
| 164 | unix_file_t *uf; |
| 165 | uf = pool_elt_at_index (um->file_pool, index); |
| 166 | unix_file_del (um, uf); |
| 167 | } |
| 168 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 169 | always_inline uword |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 170 | unix_file_set_data_available_to_write (u32 unix_file_index, |
| 171 | uword is_available) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 172 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 173 | unix_file_t *uf = pool_elt_at_index (unix_main.file_pool, unix_file_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 174 | uword was_available = (uf->flags & UNIX_FILE_DATA_AVAILABLE_TO_WRITE); |
| 175 | if ((was_available != 0) != (is_available != 0)) |
| 176 | { |
| 177 | uf->flags ^= UNIX_FILE_DATA_AVAILABLE_TO_WRITE; |
| 178 | unix_main.file_update (uf, UNIX_FILE_UPDATE_MODIFY); |
| 179 | } |
| 180 | return was_available != 0; |
| 181 | } |
| 182 | |
| 183 | always_inline void |
| 184 | unix_save_error (unix_main_t * um, clib_error_t * error) |
| 185 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 186 | unix_error_history_t *eh = um->error_history + um->error_history_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 187 | clib_error_free_vector (eh->error); |
| 188 | eh->error = error; |
| 189 | eh->time = vlib_time_now (um->vlib_main); |
| 190 | um->n_total_errors += 1; |
| 191 | if (++um->error_history_index >= ARRAY_LEN (um->error_history)) |
| 192 | um->error_history_index = 0; |
| 193 | } |
| 194 | |
| 195 | /* Main function for Unix VLIB. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 196 | int vlib_unix_main (int argc, char *argv[]); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 197 | |
Damjan Marion | 49d66f1 | 2017-07-20 18:10:35 +0200 | [diff] [blame] | 198 | clib_error_t *unix_physmem_init (vlib_main_t * vm); |
Damjan Marion | b4d8927 | 2016-05-12 22:14:45 +0200 | [diff] [blame] | 199 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 200 | /* Set prompt for CLI. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 201 | void vlib_unix_cli_set_prompt (char *prompt); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 202 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 203 | static inline unix_main_t * |
| 204 | vlib_unix_get_main (void) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 205 | { |
| 206 | return &unix_main; |
| 207 | } |
| 208 | |
Damjan Marion | 57d963f | 2017-07-20 19:17:06 +0200 | [diff] [blame] | 209 | static inline char * |
| 210 | vlib_unix_get_runtime_dir (void) |
| 211 | { |
| 212 | return (char *) unix_main.runtime_dir; |
| 213 | } |
| 214 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 215 | /* thread stack array; vec_len = max number of threads */ |
Damjan Marion | 6a7acc2 | 2016-12-19 16:28:36 +0100 | [diff] [blame] | 216 | extern u8 **vlib_thread_stacks; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 217 | |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 218 | /* utils */ |
| 219 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 220 | clib_error_t *foreach_directory_file (char *dir_name, |
| 221 | clib_error_t * (*f) (void *arg, |
| 222 | u8 * path_name, |
| 223 | u8 * file_name), |
| 224 | void *arg, int scan_dirs); |
Damjan Marion | a42cd34 | 2016-04-13 18:03:20 +0200 | [diff] [blame] | 225 | |
Damjan Marion | 57d963f | 2017-07-20 19:17:06 +0200 | [diff] [blame] | 226 | clib_error_t *vlib_unix_recursive_mkdir (char *path); |
Chris Luke | 475674e | 2017-07-05 18:02:53 -0400 | [diff] [blame] | 227 | |
Pierre Pfister | 9a244bb | 2017-07-27 22:57:34 -0400 | [diff] [blame] | 228 | clib_error_t *vlib_unix_validate_runtime_file (unix_main_t * um, |
| 229 | const char *path, |
| 230 | u8 ** full_path); |
| 231 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 232 | #endif /* included_unix_unix_h */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 233 | |
| 234 | /* |
| 235 | * fd.io coding-style-patch-verification: ON |
| 236 | * |
| 237 | * Local Variables: |
| 238 | * eval: (c-set-style "gnu") |
| 239 | * End: |
| 240 | */ |