clish_config_callback.c 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. /*
  2. * clish_config_callback.c
  3. *
  4. *
  5. * Callback hook to execute config operations.
  6. */
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <sys/types.h>
  10. #include <assert.h>
  11. #include <sys/socket.h>
  12. #include <sys/un.h>
  13. #include "private.h"
  14. #include "konf/net.h"
  15. #include "konf/buf.h"
  16. #include "konf/query.h"
  17. #include "clish/variable.h"
  18. static int send_request(konf_client_t * client, char *command);
  19. static int receive_answer(konf_client_t * client, konf_buf_t **data);
  20. static int process_answer(konf_client_t * client, char *str, konf_buf_t *buf, konf_buf_t **data);
  21. static int receive_data(konf_client_t * client, konf_buf_t *buf, konf_buf_t **data);
  22. /*--------------------------------------------------------- */
  23. bool_t
  24. clish_config_callback(const clish_shell_t * shell,
  25. const clish_command_t * cmd, clish_pargv_t * pargv)
  26. {
  27. unsigned i;
  28. char *line;
  29. char *command = NULL;
  30. konf_client_t *client;
  31. konf_buf_t *buf = NULL;
  32. const char *viewid = NULL;
  33. if (shell)
  34. viewid = clish_shell__get_viewid(shell);
  35. switch (clish_command__get_cfg_op(cmd)) {
  36. case CLISH_CONFIG_NONE:
  37. return BOOL_TRUE;
  38. case CLISH_CONFIG_SET:
  39. {
  40. char tmp[100];
  41. char *pattern;
  42. lub_string_cat(&command, "-s");
  43. pattern = clish_command__get_pattern(cmd, viewid, pargv);
  44. if (!pattern) {
  45. lub_string_free(command);
  46. return BOOL_FALSE;
  47. }
  48. line = clish_variable__get_line(cmd, pargv);
  49. lub_string_cat(&command, " -l \"");
  50. lub_string_cat(&command, line);
  51. lub_string_cat(&command, "\"");
  52. lub_string_free(line);
  53. lub_string_cat(&command, " -r \"");
  54. lub_string_cat(&command, pattern);
  55. lub_string_cat(&command, "\"");
  56. lub_string_free(pattern);
  57. if (clish_command__get_splitter(cmd) == BOOL_FALSE)
  58. lub_string_cat(&command, " -i");
  59. if (clish_command__get_unique(cmd) == BOOL_FALSE)
  60. lub_string_cat(&command, " -n");
  61. if (clish_command__get_priority(cmd) != 0) {
  62. snprintf(tmp, sizeof(tmp) - 1, " -p 0x%x",
  63. clish_command__get_priority(cmd));
  64. tmp[sizeof(tmp) - 1] = '\0';
  65. lub_string_cat(&command, tmp);
  66. }
  67. if (clish_command__is_seq(cmd)) {
  68. snprintf(tmp, sizeof(tmp) - 1, " -q %u",
  69. clish_command__get_seq(cmd,
  70. viewid, pargv));
  71. tmp[sizeof(tmp) - 1] = '\0';
  72. lub_string_cat(&command, tmp);
  73. }
  74. for (i = 0; i < clish_command__get_cfg_depth(cmd, viewid, pargv); i++) {
  75. const char *str =
  76. clish_shell__get_pwd_line(shell, i);
  77. if (!str)
  78. return BOOL_FALSE;
  79. lub_string_cat(&command, " \"");
  80. lub_string_cat(&command, str);
  81. lub_string_cat(&command, "\"");
  82. }
  83. break;
  84. }
  85. case CLISH_CONFIG_UNSET:
  86. {
  87. char tmp[100];
  88. char *pattern;
  89. lub_string_cat(&command, "-u");
  90. pattern = clish_command__get_pattern(cmd, viewid, pargv);
  91. if (!pattern) {
  92. lub_string_free(command);
  93. return BOOL_FALSE;
  94. }
  95. lub_string_cat(&command, " -r \"");
  96. lub_string_cat(&command, pattern);
  97. lub_string_cat(&command, "\"");
  98. lub_string_free(pattern);
  99. if (clish_command__get_priority(cmd) != 0) {
  100. snprintf(tmp, sizeof(tmp) - 1, " -p 0x%x",
  101. clish_command__get_priority(cmd));
  102. tmp[sizeof(tmp) - 1] = '\0';
  103. lub_string_cat(&command, tmp);
  104. }
  105. if (clish_command__is_seq(cmd)) {
  106. snprintf(tmp, sizeof(tmp) - 1, " -q %u",
  107. clish_command__get_seq(cmd,
  108. viewid, pargv));
  109. tmp[sizeof(tmp) - 1] = '\0';
  110. lub_string_cat(&command, tmp);
  111. }
  112. for (i = 0; i < clish_command__get_cfg_depth(cmd, viewid, pargv); i++) {
  113. const char *str =
  114. clish_shell__get_pwd_line(shell, i);
  115. if (!str)
  116. return BOOL_FALSE;
  117. lub_string_cat(&command, " \"");
  118. lub_string_cat(&command, str);
  119. lub_string_cat(&command, "\"");
  120. }
  121. break;
  122. }
  123. case CLISH_CONFIG_DUMP:
  124. {
  125. char *file;
  126. char tmp[100];
  127. lub_string_cat(&command, "-d");
  128. file = clish_command__get_file(cmd, viewid, pargv);
  129. if (file) {
  130. lub_string_cat(&command, " -f \"");
  131. if (file[0] != '\0')
  132. lub_string_cat(&command, file);
  133. else
  134. lub_string_cat(&command, "/tmp/running-config");
  135. lub_string_cat(&command, "\"");
  136. }
  137. if (clish_command__is_seq(cmd)) {
  138. snprintf(tmp, sizeof(tmp) - 1, " -q %u",
  139. clish_command__get_seq(cmd,
  140. viewid, pargv));
  141. tmp[sizeof(tmp) - 1] = '\0';
  142. lub_string_cat(&command, tmp);
  143. }
  144. for (i = 0; i < clish_command__get_cfg_depth(cmd, viewid, pargv); i++) {
  145. const char *str =
  146. clish_shell__get_pwd_line(shell, i);
  147. if (!str)
  148. return BOOL_FALSE;
  149. lub_string_cat(&command, " \"");
  150. lub_string_cat(&command, str);
  151. lub_string_cat(&command, "\"");
  152. }
  153. break;
  154. }
  155. case CLISH_CONFIG_COPY:
  156. {
  157. char *file;
  158. lub_string_cat(&command, "-d -f ");
  159. file = clish_command__get_file(cmd, viewid, pargv);
  160. lub_string_cat(&command, file);
  161. lub_string_free(file);
  162. break;
  163. }
  164. default:
  165. return BOOL_FALSE;
  166. };
  167. client = clish_shell__get_client(shell);
  168. #ifdef DEBUG
  169. fprintf(stderr, "CONFIG request: %s\n", command);
  170. #endif
  171. if (send_request(client, command) < 0) {
  172. fprintf(stderr, "Cannot write to the running-config.\n");
  173. }
  174. if (receive_answer(client, &buf) < 0) {
  175. fprintf(stderr, "Cannot get answer from config daemon.\n");
  176. }
  177. lub_string_free(command);
  178. switch (clish_command__get_cfg_op(cmd)) {
  179. case CLISH_CONFIG_DUMP:
  180. {
  181. char *filename;
  182. filename = clish_command__get_file(cmd, viewid, pargv);
  183. if (filename) {
  184. FILE *fd;
  185. char str[1024];
  186. if (!(fd = fopen(filename, "r")))
  187. break;
  188. while (fgets(str, sizeof(str), fd))
  189. fprintf(clish_shell__get_ostream(shell),
  190. "%s", str);
  191. fclose(fd);
  192. }
  193. if (buf) {
  194. char *str;
  195. konf_buf_lseek(buf, 0);
  196. while ((str = konf_buf_preparse(buf))) {
  197. if (strlen(str) == 0) {
  198. lub_string_free(str);
  199. break;
  200. }
  201. fprintf(clish_shell__get_ostream(shell),
  202. "%s\n", str);
  203. lub_string_free(str);
  204. }
  205. konf_buf_delete(buf);
  206. }
  207. break;
  208. }
  209. default:
  210. break;
  211. };
  212. return BOOL_TRUE;
  213. }
  214. /*--------------------------------------------------------- */
  215. static int send_request(konf_client_t * client, char *command)
  216. {
  217. if ((konf_client_connect(client) < 0))
  218. return -1;
  219. if (konf_client_send(client, command) < 0) {
  220. if (konf_client_reconnect(client) < 0)
  221. return -1;
  222. if (konf_client_send(client, command) < 0)
  223. return -1;
  224. }
  225. return 0;
  226. }
  227. static int receive_answer(konf_client_t * client, konf_buf_t **data)
  228. {
  229. konf_buf_t *buf;
  230. int nbytes;
  231. char *str;
  232. int retval = 0;
  233. int processed = 0;
  234. if ((konf_client_connect(client) < 0))
  235. return -1;
  236. buf = konf_buf_new(konf_client__get_sock(client));
  237. while ((!processed) && (nbytes = konf_buf_read(buf)) > 0) {
  238. while ((str = konf_buf_parse(buf))) {
  239. konf_buf_t *tmpdata = NULL;
  240. retval = process_answer(client, str, buf, &tmpdata);
  241. lub_string_free(str);
  242. if (retval < 0) {
  243. konf_buf_delete(buf);
  244. return retval;
  245. }
  246. if (retval == 0)
  247. processed = 1;
  248. if (tmpdata) {
  249. if (*data)
  250. konf_buf_delete(*data);
  251. *data = tmpdata;
  252. }
  253. }
  254. }
  255. konf_buf_delete(buf);
  256. return retval;
  257. }
  258. static int receive_data(konf_client_t * client, konf_buf_t *buf, konf_buf_t **data)
  259. {
  260. konf_buf_t *tmpdata;
  261. char *str;
  262. int retval = 0;
  263. int processed = 0;
  264. if ((konf_client_connect(client) < 0))
  265. return -1;
  266. tmpdata = konf_buf_new(konf_client__get_sock(client));
  267. do {
  268. while ((str = konf_buf_parse(buf))) {
  269. #ifdef DEBUG
  270. fprintf(stderr, "RECV DATA: [%s]\n", str);
  271. #endif
  272. konf_buf_add(tmpdata, str, strlen(str) + 1);
  273. if (strlen(str) == 0) {
  274. processed = 1;
  275. lub_string_free(str);
  276. break;
  277. }
  278. lub_string_free(str);
  279. }
  280. } while ((!processed) && (konf_buf_read(buf)) > 0);
  281. if (!processed) {
  282. konf_buf_delete(tmpdata);
  283. *data = NULL;
  284. return -1;
  285. }
  286. *data = tmpdata;
  287. return 0;
  288. }
  289. static int process_answer(konf_client_t * client, char *str, konf_buf_t *buf, konf_buf_t **data)
  290. {
  291. int res;
  292. konf_query_t *query;
  293. /* Parse query */
  294. query = konf_query_new();
  295. res = konf_query_parse_str(query, str);
  296. if (res < 0) {
  297. konf_query_free(query);
  298. #ifdef DEBUG
  299. fprintf(stderr, "CONFIG error: Cannot parse answer string.\n");
  300. #endif
  301. return -1;
  302. }
  303. #ifdef DEBUG
  304. fprintf(stderr, "CONFIG answer: %s\n", str);
  305. // konf_query_dump(query);
  306. #endif
  307. switch (konf_query__get_op(query)) {
  308. case KONF_QUERY_OP_OK:
  309. res = 0;
  310. break;
  311. case KONF_QUERY_OP_ERROR:
  312. res = -1;
  313. break;
  314. case KONF_QUERY_OP_STREAM:
  315. if (receive_data(client, buf, data) < 0)
  316. res = -1;
  317. else
  318. res = 1; /* wait for another answer */
  319. break;
  320. default:
  321. res = -1;
  322. break;
  323. }
  324. /* Free resources */
  325. konf_query_free(query);
  326. return res;
  327. }