Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 1 | /*! |
| 2 | * \file test-client.c |
| 3 | * \brief Testing client sending JSON requsts to the mod_netconf socket |
| 4 | * \author Radek Krejci <rkrejci@cesnet.cz> |
Tomas Cejka | 94da2c5 | 2013-01-08 18:20:30 +0100 | [diff] [blame] | 5 | * \author Tomas Cejka <cejkat@cesnet.cz> |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 6 | * \date 2012 |
Tomas Cejka | 94da2c5 | 2013-01-08 18:20:30 +0100 | [diff] [blame] | 7 | * \date 2013 |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 8 | */ |
| 9 | /* |
| 10 | * Copyright (C) 2012 CESNET |
| 11 | * |
| 12 | * LICENSE TERMS |
| 13 | * |
| 14 | * Redistribution and use in source and binary forms, with or without |
| 15 | * modification, are permitted provided that the following conditions |
| 16 | * are met: |
| 17 | * 1. Redistributions of source code must retain the above copyright |
| 18 | * notice, this list of conditions and the following disclaimer. |
| 19 | * 2. Redistributions in binary form must reproduce the above copyright |
| 20 | * notice, this list of conditions and the following disclaimer in |
| 21 | * the documentation and/or other materials provided with the |
| 22 | * distribution. |
| 23 | * 3. Neither the name of the Company nor the names of its contributors |
| 24 | * may be used to endorse or promote products derived from this |
| 25 | * software without specific prior written permission. |
| 26 | * |
| 27 | * ALTERNATIVELY, provided that this notice is retained in full, this |
| 28 | * product may be distributed under the terms of the GNU General Public |
| 29 | * License (GPL) version 2 or later, in which case the provisions |
| 30 | * of the GPL apply INSTEAD OF those given above. |
| 31 | * |
| 32 | * This software is provided ``as is'', and any express or implied |
| 33 | * warranties, including, but not limited to, the implied warranties of |
| 34 | * merchantability and fitness for a particular purpose are disclaimed. |
| 35 | * In no event shall the company or contributors be liable for any |
| 36 | * direct, indirect, incidental, special, exemplary, or consequential |
| 37 | * damages (including, but not limited to, procurement of substitute |
| 38 | * goods or services; loss of use, data, or profits; or business |
| 39 | * interruption) however caused and on any theory of liability, whether |
| 40 | * in contract, strict liability, or tort (including negligence or |
| 41 | * otherwise) arising in any way out of the use of this software, even |
| 42 | * if advised of the possibility of such damage. |
| 43 | * |
| 44 | */ |
| 45 | |
David Kupka | 1e3e4c8 | 2012-09-04 09:32:15 +0200 | [diff] [blame] | 46 | #define _GNU_SOURCE |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 47 | #include <unistd.h> |
| 48 | #include <stdio.h> |
| 49 | #include <stdlib.h> |
| 50 | #include <string.h> |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 51 | #include <err.h> |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 52 | #include <errno.h> |
| 53 | #include <sys/types.h> |
| 54 | #include <sys/socket.h> |
| 55 | #include <sys/un.h> |
| 56 | #include <json/json.h> |
David Kupka | 1e3e4c8 | 2012-09-04 09:32:15 +0200 | [diff] [blame] | 57 | #include <ctype.h> |
Tomas Cejka | 94da2c5 | 2013-01-08 18:20:30 +0100 | [diff] [blame] | 58 | #include "message_type.h" |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 59 | |
Tomas Cejka | 689a104 | 2013-01-16 15:08:25 +0100 | [diff] [blame] | 60 | static const char rcsid[] __attribute__((used)) ="$Id: "__FILE__": "RCSID" $"; |
| 61 | |
Radek Krejci | 6cb0898 | 2012-07-25 18:01:06 +0200 | [diff] [blame] | 62 | #define SOCKET_FILENAME "/tmp/mod_netconf.sock" |
David Kupka | 1e3e4c8 | 2012-09-04 09:32:15 +0200 | [diff] [blame] | 63 | #define BUFFER_SIZE 40960 |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 64 | |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 65 | void print_help(char* progname) |
| 66 | { |
| 67 | printf("Usage: %s <command>\n", progname); |
| 68 | printf("Available commands:\n"); |
| 69 | printf("\tconnect\n"); |
| 70 | printf("\tdisconnect\n"); |
| 71 | printf("\tcopy-config\n"); |
| 72 | printf("\tdelete-config\n"); |
| 73 | printf("\tedit-config\n"); |
| 74 | printf("\tget\n"); |
| 75 | printf("\tget-config\n"); |
| 76 | printf("\tkill-session\n"); |
| 77 | printf("\tlock\n"); |
| 78 | printf("\tunlock\n"); |
Radek Krejci | 9e04c7b | 2012-07-26 15:54:25 +0200 | [diff] [blame] | 79 | printf("\tinfo\n"); |
Radek Krejci | 80c10d9 | 2012-07-30 08:38:50 +0200 | [diff] [blame] | 80 | printf("\tgeneric\n"); |
Tomas Cejka | 94da2c5 | 2013-01-08 18:20:30 +0100 | [diff] [blame] | 81 | printf("\tgetschema\n"); |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 82 | } |
| 83 | |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 84 | /** |
| 85 | * \brief Get multiline input text. |
| 86 | * |
| 87 | * Print given prompt and read text ending with CTRL+D. |
| 88 | * Output string is terminated by 0. Ending '\n' is removed. |
| 89 | * |
| 90 | * On error, err is called! |
| 91 | * |
| 92 | * \param[out] output - pointer to memory where string is stored |
| 93 | * \param[out] size - size of string return by getdelim() |
| 94 | * \param[in] prompt - text printed as a prompt |
| 95 | */ |
| 96 | void readmultiline(char **output, size_t *size, const char *prompt) |
| 97 | { |
| 98 | printf(prompt); |
| 99 | if (getdelim (output, size, 'D' - 0x40, stdin) == -1) { |
| 100 | if (errno) { |
| 101 | err(errno, "Cannot read input."); |
| 102 | } |
| 103 | *output = (char *) malloc(sizeof(char)); |
| 104 | **output = 0; |
| 105 | return; |
| 106 | } |
| 107 | (*output)[(*size)-1] = 0; /* input text end "sanitation" */ |
| 108 | (*output)[(strlen(*output))-1] = 0; /* input text end "sanitation" */ |
| 109 | } |
| 110 | |
| 111 | /** |
| 112 | * \brief Get input text. |
| 113 | * |
| 114 | * Print given prompt and read one line of text. |
| 115 | * Output string is terminated by 0. Ending '\n' is removed. |
| 116 | * |
| 117 | * On error, err is called! |
| 118 | * |
| 119 | * \param[out] output - pointer to memory where string is stored |
| 120 | * \param[out] size - size of string return by getline() |
| 121 | * \param[in] prompt - text printed as a prompt |
| 122 | */ |
| 123 | void readline(char **output, size_t *size, const char *prompt) |
| 124 | { |
| 125 | printf(prompt); |
| 126 | if (getline (output, size, stdin) == -1) { |
| 127 | if (errno) { |
| 128 | err(errno, "Cannot read input."); |
| 129 | } |
| 130 | } |
| 131 | (*output)[(*size)-1] = 0; /* input text end "sanitation" */ |
| 132 | (*output)[(strlen(*output))-1] = 0; /* input text end "sanitation" */ |
| 133 | } |
| 134 | |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 135 | int main (int argc, char* argv[]) |
| 136 | { |
Kupka David | 00b9c5c | 2012-09-05 09:45:50 +0200 | [diff] [blame] | 137 | json_object* msg = NULL, *reply = NULL, *capabilities = NULL; |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 138 | const char* msg_text; |
| 139 | int sock; |
| 140 | struct sockaddr_un addr; |
| 141 | size_t len; |
David Kupka | 1e3e4c8 | 2012-09-04 09:32:15 +0200 | [diff] [blame] | 142 | char *buffer; |
| 143 | char* line = NULL, *chunked_msg_text; |
Radek Krejci | 9e04c7b | 2012-07-26 15:54:25 +0200 | [diff] [blame] | 144 | int i, alen; |
David Kupka | 1e3e4c8 | 2012-09-04 09:32:15 +0200 | [diff] [blame] | 145 | int buffer_size, buffer_len, ret, chunk_len; |
| 146 | char c, chunk_len_str[12]; |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 147 | |
| 148 | if (argc != 2) { |
| 149 | print_help(argv[0]); |
| 150 | return (2); |
| 151 | } |
| 152 | |
| 153 | /* connect to the daemon */ |
| 154 | sock = socket(PF_UNIX, SOCK_STREAM, 0); |
| 155 | if (sock == -1) { |
| 156 | fprintf(stderr, "Creating socket failed (%s)", strerror(errno)); |
| 157 | return (EXIT_FAILURE); |
| 158 | } |
| 159 | addr.sun_family = AF_UNIX; |
| 160 | strncpy(addr.sun_path, SOCKET_FILENAME, sizeof(addr.sun_path)); |
| 161 | len = strlen(addr.sun_path) + sizeof(addr.sun_family); |
| 162 | if (connect(sock, (struct sockaddr *) &addr, len) == -1) { |
| 163 | fprintf(stderr, "Connecting to mod_netconf (%s) failed (%s)", SOCKET_FILENAME, strerror(errno)); |
| 164 | close(sock); |
| 165 | return (EXIT_FAILURE); |
| 166 | } |
| 167 | |
| 168 | line = malloc(sizeof(char) * BUFFER_SIZE); |
| 169 | |
| 170 | if (strcmp(argv[1], "connect") == 0) { |
Radek Krejci | aa422df | 2012-07-25 18:04:59 +0200 | [diff] [blame] | 171 | /* |
| 172 | * create NETCONF session |
| 173 | */ |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 174 | msg = json_object_new_object(); |
| 175 | json_object_object_add(msg, "type", json_object_new_int(MSG_CONNECT)); |
Tomas Cejka | 4243446 | 2012-09-05 18:11:43 +0200 | [diff] [blame] | 176 | readline(&line, &len, "Hostname: "); |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 177 | json_object_object_add(msg, "host", json_object_new_string(line)); |
Tomas Cejka | 4243446 | 2012-09-05 18:11:43 +0200 | [diff] [blame] | 178 | readline(&line, &len, "Port: "); |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 179 | json_object_object_add(msg, "port", json_object_new_string(line)); |
Tomas Cejka | 4243446 | 2012-09-05 18:11:43 +0200 | [diff] [blame] | 180 | readline(&line, &len, "Username: "); |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 181 | json_object_object_add(msg, "user", json_object_new_string(line)); |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 182 | system("stty -echo"); |
Tomas Cejka | 4243446 | 2012-09-05 18:11:43 +0200 | [diff] [blame] | 183 | readline(&line, &len, "Password: "); |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 184 | system("stty echo"); |
| 185 | printf("\n"); |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 186 | json_object_object_add(msg, "pass", json_object_new_string(line)); |
Tomas Cejka | 4243446 | 2012-09-05 18:11:43 +0200 | [diff] [blame] | 187 | |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 188 | /* clean read password - it is needless because we have a copy in json... :-( */ |
| 189 | memset(line, 'X', len); |
| 190 | free(line); |
| 191 | line = NULL; |
| 192 | |
| 193 | printf("Supported capabilities\n"); |
| 194 | capabilities = json_object_new_array(); |
| 195 | json_object_object_add(msg, "capabilities", capabilities); |
| 196 | while (1) { |
| 197 | readline(&line, &len, "Next capability (empty for end): "); |
| 198 | if (strlen(line) == 0) { |
| 199 | break; |
| 200 | } |
| 201 | json_object_array_add (capabilities, json_object_new_string(line)); |
| 202 | } |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 203 | } else if (strcmp(argv[1], "disconnect") == 0) { |
Radek Krejci | aa422df | 2012-07-25 18:04:59 +0200 | [diff] [blame] | 204 | /* |
| 205 | * Close NETCONF session |
| 206 | */ |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 207 | msg = json_object_new_object(); |
| 208 | json_object_object_add(msg, "type", json_object_new_int(MSG_DISCONNECT)); |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 209 | readline(&line, &len, "Session: "); |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 210 | json_object_object_add(msg, "session", json_object_new_string(line)); |
| 211 | } else if (strcmp(argv[1], "copy-config") == 0) { |
Radek Krejci | aa422df | 2012-07-25 18:04:59 +0200 | [diff] [blame] | 212 | /* |
| 213 | * NETCONF <copy-config> |
| 214 | */ |
Radek Krejci | 035bf4e | 2012-07-25 10:59:09 +0200 | [diff] [blame] | 215 | msg = json_object_new_object(); |
| 216 | json_object_object_add(msg, "type", json_object_new_int(MSG_COPYCONFIG)); |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 217 | readline(&line, &len, "Session: "); |
Radek Krejci | 035bf4e | 2012-07-25 10:59:09 +0200 | [diff] [blame] | 218 | json_object_object_add(msg, "session", json_object_new_string(line)); |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 219 | readline(&line, &len, "Source (running|startup|candidate): "); |
Radek Krejci | ae021c1 | 2012-07-25 18:03:52 +0200 | [diff] [blame] | 220 | if (strlen(line) > 0) { |
| 221 | json_object_object_add(msg, "source", json_object_new_string(line)); |
| 222 | } else { |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 223 | readmultiline(&line, &len, "Configuration data (ending with CTRL+D): "); |
Radek Krejci | ae021c1 | 2012-07-25 18:03:52 +0200 | [diff] [blame] | 224 | json_object_object_add(msg, "config", json_object_new_string(line)); |
| 225 | } |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 226 | readline(&line, &len, "Target (running|startup|candidate): "); |
Radek Krejci | 035bf4e | 2012-07-25 10:59:09 +0200 | [diff] [blame] | 227 | json_object_object_add(msg, "target", json_object_new_string(line)); |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 228 | } else if (strcmp(argv[1], "delete-config") == 0) { |
Radek Krejci | aa422df | 2012-07-25 18:04:59 +0200 | [diff] [blame] | 229 | /* |
| 230 | * NETCONF <delete-config> |
| 231 | */ |
| 232 | msg = json_object_new_object(); |
| 233 | json_object_object_add(msg, "type", json_object_new_int(MSG_DELETECONFIG)); |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 234 | readline(&line, &len, "Session: "); |
Radek Krejci | aa422df | 2012-07-25 18:04:59 +0200 | [diff] [blame] | 235 | json_object_object_add(msg, "session", json_object_new_string(line)); |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 236 | readline(&line, &len, "Target (running|startup|candidate): "); |
Radek Krejci | aa422df | 2012-07-25 18:04:59 +0200 | [diff] [blame] | 237 | json_object_object_add(msg, "target", json_object_new_string(line)); |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 238 | } else if (strcmp(argv[1], "edit-config") == 0) { |
Radek Krejci | aa422df | 2012-07-25 18:04:59 +0200 | [diff] [blame] | 239 | /* |
| 240 | * NETCONF <edit-config> |
| 241 | */ |
| 242 | msg = json_object_new_object(); |
| 243 | json_object_object_add(msg, "type", json_object_new_int(MSG_EDITCONFIG)); |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 244 | readline(&line, &len, "Session: "); |
Radek Krejci | aa422df | 2012-07-25 18:04:59 +0200 | [diff] [blame] | 245 | json_object_object_add(msg, "session", json_object_new_string(line)); |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 246 | readline(&line, &len, "Target (running|startup|candidate): "); |
Radek Krejci | aa422df | 2012-07-25 18:04:59 +0200 | [diff] [blame] | 247 | json_object_object_add(msg, "target", json_object_new_string(line)); |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 248 | readline(&line, &len, "Default operation (merge|replace|none): "); |
Radek Krejci | aa422df | 2012-07-25 18:04:59 +0200 | [diff] [blame] | 249 | if (strlen(line) > 0) { |
| 250 | json_object_object_add(msg, "default-operation", json_object_new_string(line)); |
| 251 | } |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 252 | readline(&line, &len, "Error option (stop-on-error|continue-on-error|rollback-on-error): "); |
Radek Krejci | aa422df | 2012-07-25 18:04:59 +0200 | [diff] [blame] | 253 | if (strlen(line) > 0) { |
| 254 | json_object_object_add(msg, "error-option", json_object_new_string(line)); |
| 255 | } |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 256 | readmultiline(&line, &len, "Configuration data (ending with CTRL+D): "); |
Radek Krejci | b1e08f4 | 2012-07-26 10:54:28 +0200 | [diff] [blame] | 257 | json_object_object_add(msg, "config", json_object_new_string(line)); |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 258 | } else if (strcmp(argv[1], "get") == 0) { |
Radek Krejci | aa422df | 2012-07-25 18:04:59 +0200 | [diff] [blame] | 259 | /* |
| 260 | * NETCONF <get> |
| 261 | */ |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 262 | msg = json_object_new_object(); |
| 263 | json_object_object_add(msg, "type", json_object_new_int(MSG_GET)); |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 264 | readline(&line, &len, "Session: "); |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 265 | json_object_object_add(msg, "session", json_object_new_string(line)); |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 266 | readmultiline(&line, &len, "Filter (ending with CTRL+D): "); |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 267 | if (strlen(line) > 0) { |
| 268 | json_object_object_add(msg, "filter", json_object_new_string(line)); |
| 269 | } |
| 270 | } else if (strcmp(argv[1], "get-config") == 0) { |
Radek Krejci | aa422df | 2012-07-25 18:04:59 +0200 | [diff] [blame] | 271 | /* |
| 272 | * NETCONF <get-config> |
| 273 | */ |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 274 | msg = json_object_new_object(); |
| 275 | json_object_object_add(msg, "type", json_object_new_int(MSG_GETCONFIG)); |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 276 | readline(&line, &len, "Session: "); |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 277 | json_object_object_add(msg, "session", json_object_new_string(line)); |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 278 | readline(&line, &len, "Source (running|startup|candidate): "); |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 279 | json_object_object_add(msg, "source", json_object_new_string(line)); |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 280 | readmultiline(&line, &len, "Filter (ending with CTRL+D): "); |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 281 | if (strlen(line) > 0) { |
| 282 | json_object_object_add(msg, "filter", json_object_new_string(line)); |
| 283 | } |
| 284 | } else if (strcmp(argv[1], "kill-session") == 0) { |
Radek Krejci | aa422df | 2012-07-25 18:04:59 +0200 | [diff] [blame] | 285 | /* |
| 286 | * NETCONF <kill-session> |
| 287 | */ |
| 288 | msg = json_object_new_object(); |
| 289 | json_object_object_add(msg, "type", json_object_new_int(MSG_KILL)); |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 290 | readline(&line, &len, "Session: "); |
Radek Krejci | aa422df | 2012-07-25 18:04:59 +0200 | [diff] [blame] | 291 | json_object_object_add(msg, "session", json_object_new_string(line)); |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 292 | readline(&line, &len, "Kill session with ID: "); |
Radek Krejci | aa422df | 2012-07-25 18:04:59 +0200 | [diff] [blame] | 293 | json_object_object_add(msg, "session-id", json_object_new_string(line)); |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 294 | } else if (strcmp(argv[1], "lock") == 0) { |
Radek Krejci | aa422df | 2012-07-25 18:04:59 +0200 | [diff] [blame] | 295 | /* |
| 296 | * NETCONF <lock> |
| 297 | */ |
| 298 | msg = json_object_new_object(); |
| 299 | json_object_object_add(msg, "type", json_object_new_int(MSG_LOCK)); |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 300 | readline(&line, &len, "Session: "); |
Radek Krejci | aa422df | 2012-07-25 18:04:59 +0200 | [diff] [blame] | 301 | json_object_object_add(msg, "session", json_object_new_string(line)); |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 302 | readline(&line, &len, "Target (running|startup|candidate): "); |
Radek Krejci | aa422df | 2012-07-25 18:04:59 +0200 | [diff] [blame] | 303 | json_object_object_add(msg, "target", json_object_new_string(line)); |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 304 | } else if (strcmp(argv[1], "unlock") == 0) { |
Radek Krejci | aa422df | 2012-07-25 18:04:59 +0200 | [diff] [blame] | 305 | /* |
| 306 | * NETCONF <unlock> |
| 307 | */ |
| 308 | msg = json_object_new_object(); |
| 309 | json_object_object_add(msg, "type", json_object_new_int(MSG_UNLOCK)); |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 310 | readline(&line, &len,"Session: "); |
Radek Krejci | aa422df | 2012-07-25 18:04:59 +0200 | [diff] [blame] | 311 | json_object_object_add(msg, "session", json_object_new_string(line)); |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 312 | readline(&line, &len, "Target (running|startup|candidate): "); |
Radek Krejci | aa422df | 2012-07-25 18:04:59 +0200 | [diff] [blame] | 313 | json_object_object_add(msg, "target", json_object_new_string(line)); |
Radek Krejci | 9e04c7b | 2012-07-26 15:54:25 +0200 | [diff] [blame] | 314 | } else if (strcmp(argv[1], "info") == 0) { |
| 315 | /* |
| 316 | * Get information about NETCONF session |
| 317 | */ |
| 318 | msg = json_object_new_object(); |
| 319 | json_object_object_add(msg, "type", json_object_new_int(MSG_INFO)); |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 320 | readline(&line, &len, "Session: "); |
Radek Krejci | 9e04c7b | 2012-07-26 15:54:25 +0200 | [diff] [blame] | 321 | json_object_object_add(msg, "session", json_object_new_string(line)); |
Radek Krejci | 80c10d9 | 2012-07-30 08:38:50 +0200 | [diff] [blame] | 322 | } else if (strcmp(argv[1], "generic") == 0) { |
| 323 | /* |
| 324 | * Generic NETCONF request |
| 325 | */ |
| 326 | msg = json_object_new_object(); |
| 327 | json_object_object_add(msg, "type", json_object_new_int(MSG_GENERIC)); |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 328 | readline(&line, &len, "Session: "); |
Radek Krejci | 80c10d9 | 2012-07-30 08:38:50 +0200 | [diff] [blame] | 329 | json_object_object_add(msg, "session", json_object_new_string(line)); |
Tomas Cejka | b272bf1 | 2012-09-05 16:49:12 +0200 | [diff] [blame] | 330 | readmultiline(&line, &len, "NETCONF <rpc> content (ending with CTRL+D): "); |
Radek Krejci | 80c10d9 | 2012-07-30 08:38:50 +0200 | [diff] [blame] | 331 | json_object_object_add(msg, "content", json_object_new_string(line)); |
Tomas Cejka | 94da2c5 | 2013-01-08 18:20:30 +0100 | [diff] [blame] | 332 | } else if (strcmp(argv[1], "getschema") == 0) { |
| 333 | /* |
| 334 | * Get information about NETCONF session |
| 335 | */ |
| 336 | msg = json_object_new_object(); |
| 337 | json_object_object_add(msg, "type", json_object_new_int(MSG_GETSCHEMA)); |
| 338 | readline(&line, &len, "Session: "); |
| 339 | json_object_object_add(msg, "session", json_object_new_string(line)); |
| 340 | readline(&line, &len, "Identificator: "); |
| 341 | json_object_object_add(msg, "identifier", json_object_new_string(line)); |
| 342 | readline(&line, &len, "Format [YIN]: "); |
| 343 | json_object_object_add(msg, "format", json_object_new_string(line)); |
| 344 | readline(&line, &len, "Version: "); |
| 345 | json_object_object_add(msg, "version", json_object_new_string(line)); |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 346 | } else { |
Radek Krejci | aa422df | 2012-07-25 18:04:59 +0200 | [diff] [blame] | 347 | /* |
| 348 | * Unknown request |
| 349 | */ |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 350 | fprintf(stderr, "Unknown command %s\n", argv[1]); |
| 351 | close(sock); |
| 352 | return (EXIT_FAILURE); |
| 353 | } |
| 354 | |
| 355 | /* send the message */ |
| 356 | if (msg != NULL) { |
| 357 | msg_text = json_object_to_json_string(msg); |
David Kupka | 1e3e4c8 | 2012-09-04 09:32:15 +0200 | [diff] [blame] | 358 | asprintf (&chunked_msg_text, "\n#%d\n%s\n##\n", (int)strlen(msg_text), msg_text); |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 359 | |
Radek Krejci | 035bf4e | 2012-07-25 10:59:09 +0200 | [diff] [blame] | 360 | if (json_object_object_get(msg, "pass") == NULL) { |
| 361 | /* print message only if it does not contain password */ |
| 362 | printf("Sending: %s\n", msg_text); |
| 363 | } |
David Kupka | 1e3e4c8 | 2012-09-04 09:32:15 +0200 | [diff] [blame] | 364 | send(sock, chunked_msg_text, strlen(chunked_msg_text) + 1, 0); |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 365 | |
| 366 | json_object_put(msg); |
David Kupka | 1e3e4c8 | 2012-09-04 09:32:15 +0200 | [diff] [blame] | 367 | free (chunked_msg_text); |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 368 | } else { |
| 369 | close(sock); |
| 370 | return (EXIT_FAILURE); |
| 371 | } |
| 372 | |
David Kupka | 1e3e4c8 | 2012-09-04 09:32:15 +0200 | [diff] [blame] | 373 | /* read json in chunked framing */ |
| 374 | buffer_size = 0; |
| 375 | buffer_len = 0; |
| 376 | buffer = NULL; |
| 377 | while (1) { |
| 378 | /* read chunk length */ |
| 379 | if ((ret = recv (sock, &c, 1, 0)) != 1 || c != '\n') { |
| 380 | free (buffer); |
| 381 | buffer = NULL; |
| 382 | break; |
| 383 | } |
| 384 | if ((ret = recv (sock, &c, 1, 0)) != 1 || c != '#') { |
| 385 | free (buffer); |
| 386 | buffer = NULL; |
| 387 | break; |
| 388 | } |
| 389 | i=0; |
| 390 | memset (chunk_len_str, 0, 12); |
| 391 | while ((ret = recv (sock, &c, 1, 0) == 1 && (isdigit(c) || c == '#'))) { |
| 392 | if (i==0 && c == '#') { |
| 393 | if (recv (sock, &c, 1, 0) != 1 || c != '\n') { |
| 394 | /* end but invalid */ |
| 395 | free (buffer); |
| 396 | buffer = NULL; |
| 397 | } |
| 398 | /* end of message, double-loop break */ |
| 399 | goto msg_complete; |
| 400 | } |
| 401 | chunk_len_str[i++] = c; |
| 402 | } |
| 403 | if (c != '\n') { |
| 404 | free (buffer); |
| 405 | buffer = NULL; |
| 406 | break; |
| 407 | } |
| 408 | if ((chunk_len = atoi (chunk_len_str)) == 0) { |
| 409 | free (buffer); |
| 410 | buffer = NULL; |
| 411 | break; |
| 412 | } |
| 413 | buffer_size += chunk_len+1; |
| 414 | buffer = realloc (buffer, sizeof(char)*buffer_size); |
| 415 | if ((ret = recv (sock, buffer+buffer_len, chunk_len, 0)) == -1 || ret != chunk_len) { |
| 416 | free (buffer); |
| 417 | buffer = NULL; |
| 418 | break; |
| 419 | } |
| 420 | buffer_len += ret; |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 421 | } |
David Kupka | 1e3e4c8 | 2012-09-04 09:32:15 +0200 | [diff] [blame] | 422 | msg_complete: |
| 423 | |
| 424 | if (buffer != NULL) { |
| 425 | reply = json_tokener_parse(buffer); |
| 426 | free (buffer); |
| 427 | } else { |
| 428 | reply = NULL; |
| 429 | } |
| 430 | |
Radek Krejci | 035bf4e | 2012-07-25 10:59:09 +0200 | [diff] [blame] | 431 | printf("Received:\n"); |
| 432 | if (reply == NULL) { |
| 433 | printf("(null)\n"); |
| 434 | } else { |
| 435 | json_object_object_foreach(reply, key, value) { |
| 436 | printf("Key: %s, Value: ", key); |
| 437 | switch (json_object_get_type(value)) { |
| 438 | case json_type_string: |
| 439 | printf("%s\n", json_object_get_string(value)); |
| 440 | break; |
| 441 | case json_type_int: |
| 442 | printf("%d\n", json_object_get_int(value)); |
| 443 | break; |
Radek Krejci | 9e04c7b | 2012-07-26 15:54:25 +0200 | [diff] [blame] | 444 | case json_type_array: |
| 445 | printf("\n"); |
| 446 | alen = json_object_array_length(value); |
| 447 | for (i = 0; i < alen; i++) { |
| 448 | printf("\t(%d) %s\n", i, json_object_get_string(json_object_array_get_idx(value, i))); |
| 449 | } |
| 450 | break; |
Radek Krejci | 035bf4e | 2012-07-25 10:59:09 +0200 | [diff] [blame] | 451 | default: |
| 452 | printf("\n"); |
| 453 | break; |
| 454 | } |
| 455 | } |
| 456 | json_object_put(reply); |
| 457 | } |
Radek Krejci | 8fd1f5e | 2012-07-24 17:33:36 +0200 | [diff] [blame] | 458 | close(sock); |
| 459 | free(line); |
| 460 | |
| 461 | return (EXIT_SUCCESS); |
| 462 | } |