1 /*- 2 * BSD LICENSE 3 * 4 * Copyright(c) 2010-2014 Intel Corporation. All rights reserved. 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 11 * * Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * * Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in 15 * the documentation and/or other materials provided with the 16 * distribution. 17 * * Neither the name of Intel Corporation nor the names of its 18 * contributors may be used to endorse or promote products derived 19 * from this software without specific prior written permission. 20 * 21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 32 */ 33 #include <stdint.h> 34 #include <string.h> 35 #include <stdlib.h> 36 #include <stdarg.h> 37 #include <inttypes.h> 38 #include <stdio.h> 39 #include <termios.h> 40 #include <errno.h> 41 #include <sys/queue.h> 42 43 #include <rte_common.h> 44 #include <rte_memory.h> 45 #include <rte_memzone.h> 46 #include <rte_tailq.h> 47 #include <rte_eal.h> 48 #include <rte_atomic.h> 49 #include <rte_branch_prediction.h> 50 #include <rte_launch.h> 51 #include <rte_log.h> 52 #include <rte_per_lcore.h> 53 #include <rte_lcore.h> 54 #include <rte_ring.h> 55 #include <rte_debug.h> 56 #include <rte_mempool.h> 57 #include <rte_string_fns.h> 58 59 #include <cmdline_rdline.h> 60 #include <cmdline_parse.h> 61 #include <cmdline_parse_string.h> 62 #include <cmdline_socket.h> 63 #include <cmdline.h> 64 #include "mp_commands.h" 65 66 /**********************************************************/ 67 68 struct cmd_send_result { 69 cmdline_fixed_string_t action; 70 cmdline_fixed_string_t message; 71 }; 72 73 static void cmd_send_parsed(void *parsed_result, 74 __attribute__((unused)) struct cmdline *cl, 75 __attribute__((unused)) void *data) 76 { 77 void *msg = NULL; 78 struct cmd_send_result *res = parsed_result; 79 80 if (rte_mempool_get(message_pool, &msg) < 0) 81 rte_panic("Failed to get message buffer\n"); 82 rte_snprintf((char *)msg, string_size, "%s", res->message); 83 if (rte_ring_enqueue(send_ring, msg) < 0) { 84 printf("Failed to send message - message discarded\n"); 85 rte_mempool_put(message_pool, msg); 86 } 87 } 88 89 cmdline_parse_token_string_t cmd_send_action = 90 TOKEN_STRING_INITIALIZER(struct cmd_send_result, action, "send"); 91 cmdline_parse_token_string_t cmd_send_message = 92 TOKEN_STRING_INITIALIZER(struct cmd_send_result, message, NULL); 93 94 cmdline_parse_inst_t cmd_send = { 95 .f = cmd_send_parsed, /* function to call */ 96 .data = NULL, /* 2nd arg of func */ 97 .help_str = "send a string to another process", 98 .tokens = { /* token list, NULL terminated */ 99 (void *)&cmd_send_action, 100 (void *)&cmd_send_message, 101 NULL, 102 }, 103 }; 104 105 /**********************************************************/ 106 107 struct cmd_quit_result { 108 cmdline_fixed_string_t quit; 109 }; 110 111 static void cmd_quit_parsed(__attribute__((unused)) void *parsed_result, 112 struct cmdline *cl, 113 __attribute__((unused)) void *data) 114 { 115 quit = 1; 116 cmdline_quit(cl); 117 } 118 119 cmdline_parse_token_string_t cmd_quit_quit = 120 TOKEN_STRING_INITIALIZER(struct cmd_quit_result, quit, "quit"); 121 122 cmdline_parse_inst_t cmd_quit = { 123 .f = cmd_quit_parsed, /* function to call */ 124 .data = NULL, /* 2nd arg of func */ 125 .help_str = "close the application", 126 .tokens = { /* token list, NULL terminated */ 127 (void *)&cmd_quit_quit, 128 NULL, 129 }, 130 }; 131 132 /**********************************************************/ 133 134 struct cmd_help_result { 135 cmdline_fixed_string_t help; 136 }; 137 138 static void cmd_help_parsed(__attribute__((unused)) void *parsed_result, 139 struct cmdline *cl, 140 __attribute__((unused)) void *data) 141 { 142 cmdline_printf(cl, "Simple demo example of multi-process in RTE\n\n" 143 "This is a readline-like interface that can be used to\n" 144 "send commands to the simple app. Commands supported are:\n\n" 145 "- send [string]\n" "- help\n" "- quit\n\n"); 146 } 147 148 cmdline_parse_token_string_t cmd_help_help = 149 TOKEN_STRING_INITIALIZER(struct cmd_help_result, help, "help"); 150 151 cmdline_parse_inst_t cmd_help = { 152 .f = cmd_help_parsed, /* function to call */ 153 .data = NULL, /* 2nd arg of func */ 154 .help_str = "show help", 155 .tokens = { /* token list, NULL terminated */ 156 (void *)&cmd_help_help, 157 NULL, 158 }, 159 }; 160 161 /****** CONTEXT (list of instruction) */ 162 cmdline_parse_ctx_t simple_mp_ctx[] = { 163 (cmdline_parse_inst_t *)&cmd_send, 164 (cmdline_parse_inst_t *)&cmd_quit, 165 (cmdline_parse_inst_t *)&cmd_help, 166 NULL, 167 }; 168