konfd.c 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339
  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 <unistd.h>
  10. #include <sys/types.h>
  11. #include <sys/wait.h>
  12. #include <errno.h>
  13. #include <assert.h>
  14. #include <sys/socket.h>
  15. #include <sys/un.h>
  16. #include <string.h>
  17. #include <sys/select.h>
  18. #include <signal.h>
  19. #include "clish/private.h"
  20. #include "konf/tree.h"
  21. #include "konf/query.h"
  22. #include "konf/buf.h"
  23. #include "lub/argv.h"
  24. #include "lub/string.h"
  25. #define KONFD_SOCKET_PATH "/tmp/konfd.socket"
  26. #define KONFD_CONFIG_PATH "/tmp/running-config"
  27. #ifndef UNIX_PATH_MAX
  28. #define UNIX_PATH_MAX 108
  29. #endif
  30. #define MAXMSG 1024
  31. /* Global signal vars */
  32. static volatile int sigterm = 0;
  33. static void sighandler(int signo);
  34. static char * process_query(int sock, konf_tree_t * conf, char *str);
  35. int answer_send(int sock, char *command);
  36. static int dump_running_config(int sock, konf_tree_t *conf, konf_query_t *query);
  37. /*--------------------------------------------------------- */
  38. int main(int argc, char **argv)
  39. {
  40. int retval = 0;
  41. unsigned i;
  42. char *str;
  43. konf_tree_t *conf;
  44. lub_bintree_t bufs;
  45. konf_buf_t *tbuf;
  46. /* Network vars */
  47. int sock;
  48. struct sockaddr_un laddr;
  49. struct sockaddr_un raddr;
  50. fd_set active_fd_set, read_fd_set;
  51. /* Signal vars */
  52. struct sigaction sig_act;
  53. sigset_t sig_set;
  54. /* Set signal handler */
  55. sigemptyset(&sig_set);
  56. sigaddset(&sig_set, SIGTERM);
  57. sigaddset(&sig_set, SIGINT);
  58. sigaddset(&sig_set, SIGQUIT);
  59. sig_act.sa_flags = 0;
  60. sig_act.sa_mask = sig_set;
  61. sig_act.sa_handler = &sighandler;
  62. sigaction(SIGTERM, &sig_act, NULL);
  63. sigaction(SIGINT, &sig_act, NULL);
  64. sigaction(SIGQUIT, &sig_act, NULL);
  65. /* Configuration tree */
  66. conf = konf_tree_new("", 0);
  67. /* Initialize the tree of buffers */
  68. lub_bintree_init(&bufs,
  69. konf_buf_bt_offset(),
  70. konf_buf_bt_compare, konf_buf_bt_getkey);
  71. /* Create listen socket */
  72. if ((sock = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) {
  73. fprintf(stderr, "Cannot create socket: %s\n", strerror(errno));
  74. /* syslog(LOG_ERR, "Cannot create socket: %s\n", strerror(errno));
  75. */ return -1;
  76. }
  77. unlink(KONFD_SOCKET_PATH);
  78. laddr.sun_family = AF_UNIX;
  79. strncpy(laddr.sun_path, KONFD_SOCKET_PATH, UNIX_PATH_MAX);
  80. laddr.sun_path[UNIX_PATH_MAX - 1] = '\0';
  81. if (bind(sock, (struct sockaddr *)&laddr, sizeof(laddr))) {
  82. fprintf(stderr, "Can't bind()\n");
  83. /* syslog(LOG_ERR, "Can't bind()\n");
  84. */ return -1;
  85. }
  86. listen(sock, 5);
  87. /* Initialize the set of active sockets. */
  88. FD_ZERO(&active_fd_set);
  89. FD_SET(sock, &active_fd_set);
  90. /* Main loop */
  91. while (!sigterm) {
  92. int num;
  93. /* Block until input arrives on one or more active sockets. */
  94. read_fd_set = active_fd_set;
  95. num = select(FD_SETSIZE, &read_fd_set, NULL, NULL, NULL);
  96. if (num < 0) {
  97. if (EINTR == errno)
  98. continue;
  99. break;
  100. }
  101. if (0 == num)
  102. continue;
  103. /* Service all the sockets with input pending. */
  104. for (i = 0; i < FD_SETSIZE; ++i) {
  105. if (FD_ISSET(i, &read_fd_set)) {
  106. if (i == sock) {
  107. /* Connection request on original socket. */
  108. int new;
  109. socklen_t size;
  110. size = sizeof(raddr);
  111. new = accept(sock, (struct sockaddr *)
  112. &raddr, &size);
  113. if (new < 0) {
  114. fprintf(stderr, "accept");
  115. continue;
  116. }
  117. fprintf(stderr, "Server: connect %u\n", new);
  118. konf_buftree_remove(&bufs, new);
  119. tbuf = konf_buf_new(new);
  120. /* insert it into the binary tree for this conf */
  121. lub_bintree_insert(&bufs, tbuf);
  122. FD_SET(new, &active_fd_set);
  123. } else {
  124. int nbytes;
  125. /* Data arriving on an already-connected socket. */
  126. if ((nbytes = konf_buftree_read(&bufs, i)) <= 0) {
  127. close(i);
  128. FD_CLR(i, &active_fd_set);
  129. konf_buftree_remove(&bufs, i);
  130. continue;
  131. }
  132. while ((str = konf_buftree_parse(&bufs, i))) {
  133. char *answer;
  134. if (!(answer = process_query(i, conf, str)))
  135. answer = lub_string_dup("-e");
  136. lub_string_free(str);
  137. answer_send(i, answer);
  138. lub_string_free(answer);
  139. }
  140. }
  141. }
  142. }
  143. }
  144. /* Free resources */
  145. konf_tree_delete(conf);
  146. /* delete each buf */
  147. while ((tbuf = lub_bintree_findfirst(&bufs))) {
  148. /* remove the buf from the tree */
  149. lub_bintree_remove(&bufs, tbuf);
  150. /* release the instance */
  151. konf_buf_delete(tbuf);
  152. }
  153. return retval;
  154. }
  155. static char * process_query(int sock, konf_tree_t * conf, char *str)
  156. {
  157. unsigned i;
  158. int res;
  159. konf_tree_t *iconf;
  160. konf_tree_t *tmpconf;
  161. konf_query_t *query;
  162. char *retval = NULL;
  163. konf_query_op_t ret;
  164. /* Parse query */
  165. query = konf_query_new();
  166. res = konf_query_parse_str(query, str);
  167. if (res < 0) {
  168. konf_query_free(query);
  169. return NULL;
  170. }
  171. #ifdef DEBUG
  172. fprintf(stderr, "----------------------\n");
  173. fprintf(stderr, "REQUEST: %s\n", str);
  174. konf_query_dump(query);
  175. #endif
  176. /* Go through the pwd */
  177. iconf = conf;
  178. for (i = 0; i < konf_query__get_pwdc(query); i++) {
  179. if (!
  180. (iconf =
  181. konf_tree_find_conf(iconf, konf_query__get_pwd(query, i), 0, 0))) {
  182. iconf = NULL;
  183. break;
  184. }
  185. }
  186. if (!iconf) {
  187. fprintf(stderr, "Unknown path\n");
  188. konf_query_free(query);
  189. return NULL;
  190. }
  191. switch (konf_query__get_op(query)) {
  192. case KONF_QUERY_OP_SET:
  193. if (konf_query__get_unique(query)) {
  194. if (konf_tree_find_conf(iconf,
  195. konf_query__get_line(query), 0, 0)) {
  196. ret = KONF_QUERY_OP_OK;
  197. break;
  198. }
  199. konf_tree_del_pattern(iconf,
  200. konf_query__get_pattern(query),
  201. konf_query__get_priority(query),
  202. konf_query__get_seq(query),
  203. konf_query__get_seq_num(query));
  204. }
  205. tmpconf = konf_tree_new_conf(iconf,
  206. konf_query__get_line(query), konf_query__get_priority(query),
  207. konf_query__get_seq(query), konf_query__get_seq_num(query));
  208. if (!tmpconf) {
  209. ret = KONF_QUERY_OP_ERROR;
  210. break;
  211. }
  212. konf_tree__set_splitter(tmpconf, konf_query__get_splitter(query));
  213. ret = KONF_QUERY_OP_OK;
  214. break;
  215. case KONF_QUERY_OP_UNSET:
  216. konf_tree_del_pattern(iconf,
  217. konf_query__get_pattern(query), konf_query__get_priority(query),
  218. konf_query__get_seq(query), konf_query__get_seq_num(query));
  219. ret = KONF_QUERY_OP_OK;
  220. break;
  221. case KONF_QUERY_OP_DUMP:
  222. if (dump_running_config(sock, iconf, query))
  223. ret = KONF_QUERY_OP_ERROR;
  224. else
  225. ret = KONF_QUERY_OP_OK;
  226. break;
  227. default:
  228. ret = KONF_QUERY_OP_ERROR;
  229. break;
  230. }
  231. #ifdef DEBUG
  232. /* Print whole tree */
  233. konf_tree_fprintf(conf, stderr, NULL, -1, BOOL_TRUE, 0);
  234. #endif
  235. /* Free resources */
  236. konf_query_free(query);
  237. switch (ret) {
  238. case KONF_QUERY_OP_OK:
  239. lub_string_cat(&retval, "-o");
  240. break;
  241. case KONF_QUERY_OP_ERROR:
  242. lub_string_cat(&retval, "-e");
  243. break;
  244. default:
  245. lub_string_cat(&retval, "-e");
  246. break;
  247. };
  248. return retval;
  249. }
  250. /*
  251. * Signal handler for temination signals (like SIGTERM, SIGINT, ...)
  252. */
  253. static void sighandler(int signo)
  254. {
  255. sigterm = 1;
  256. }
  257. int answer_send(int sock, char *command)
  258. {
  259. return send(sock, command, strlen(command) + 1, MSG_NOSIGNAL);
  260. }
  261. static int dump_running_config(int sock, konf_tree_t *conf, konf_query_t *query)
  262. {
  263. FILE *fd;
  264. char *filename;
  265. int dupsock = -1;
  266. if ((filename = konf_query__get_path(query))) {
  267. if (!(fd = fopen(filename, "w")))
  268. return -1;
  269. } else {
  270. if ((dupsock = dup(sock)) < 0)
  271. return -1;
  272. fd = fdopen(dupsock, "w");
  273. }
  274. if (!filename) {
  275. fprintf(fd, "-t\n");
  276. #ifdef DEBUG
  277. fprintf(stderr, "ANSWER: -t\n");
  278. #endif
  279. }
  280. konf_tree_fprintf(conf,
  281. fd,
  282. konf_query__get_pattern(query),
  283. konf_query__get_pwdc(query) - 1,
  284. konf_query__get_seq(query),
  285. 0);
  286. if (!filename) {
  287. fprintf(fd, "\n");
  288. #ifdef DEBUG
  289. fprintf(stderr, "SEND DATA: \n");
  290. #endif
  291. }
  292. fclose(fd);
  293. return 0;
  294. }