Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 1 | /** |
| 2 | * \file session_server.c |
| 3 | * \author Michal Vasko <mvasko@cesnet.cz> |
| 4 | * \brief libnetconf2 server session manipulation functions |
| 5 | * |
| 6 | * Copyright (c) 2015 CESNET, z.s.p.o. |
| 7 | * |
| 8 | * Redistribution and use in source and binary forms, with or without |
| 9 | * modification, are permitted provided that the following conditions |
| 10 | * are met: |
| 11 | * 1. Redistributions of source code must retain the above copyright |
| 12 | * notice, this list of conditions and the following disclaimer. |
| 13 | * 2. 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 | * 3. Neither the name of the Company nor the names of its contributors |
| 18 | * may be used to endorse or promote products derived from this |
| 19 | * software without specific prior written permission. |
| 20 | * |
| 21 | */ |
| 22 | |
| 23 | #include <stdint.h> |
| 24 | #include <stdlib.h> |
| 25 | #include <errno.h> |
| 26 | #include <string.h> |
| 27 | #include <poll.h> |
| 28 | #include <sys/types.h> |
| 29 | #include <sys/socket.h> |
| 30 | #include <netinet/in.h> |
| 31 | #include <arpa/inet.h> |
| 32 | #include <unistd.h> |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 33 | #include <pthread.h> |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 34 | #include <time.h> |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 35 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 36 | #include "libnetconf.h" |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 37 | #include "session_server.h" |
| 38 | |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 39 | struct nc_server_opts server_opts = { |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 40 | .endpt_array_lock = PTHREAD_RWLOCK_INITIALIZER |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 41 | }; |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 42 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 43 | extern struct nc_server_ssh_opts ssh_ch_opts; |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 44 | extern pthread_mutex_t ssh_ch_opts_lock; |
| 45 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 46 | extern struct nc_server_tls_opts tls_ch_opts; |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 47 | extern pthread_mutex_t tls_ch_opts_lock; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 48 | |
| 49 | struct nc_endpt * |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 50 | nc_server_endpt_lock(const char *name, NC_TRANSPORT_IMPL ti) |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 51 | { |
| 52 | uint16_t i; |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 53 | struct nc_endpt *endpt = NULL; |
| 54 | |
| 55 | /* READ LOCK */ |
| 56 | pthread_rwlock_rdlock(&server_opts.endpt_array_lock); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 57 | |
| 58 | for (i = 0; i < server_opts.endpt_count; ++i) { |
| 59 | if ((server_opts.binds[i].ti == ti) && !strcmp(server_opts.endpts[i].name, name)) { |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 60 | endpt = &server_opts.endpts[i]; |
| 61 | break; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 62 | } |
| 63 | } |
| 64 | |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 65 | if (!endpt) { |
| 66 | ERR("Endpoint \"%s\" was not found.", name); |
| 67 | /* READ UNLOCK */ |
| 68 | pthread_rwlock_unlock(&server_opts.endpt_array_lock); |
| 69 | return NULL; |
| 70 | } |
| 71 | |
| 72 | /* ENDPT LOCK */ |
| 73 | pthread_mutex_lock(&endpt->endpt_lock); |
| 74 | |
| 75 | return endpt; |
| 76 | } |
| 77 | |
| 78 | void |
| 79 | nc_server_endpt_unlock(struct nc_endpt *endpt) |
| 80 | { |
| 81 | /* ENDPT UNLOCK */ |
| 82 | pthread_mutex_unlock(&endpt->endpt_lock); |
| 83 | |
| 84 | /* READ UNLOCK */ |
| 85 | pthread_rwlock_rdlock(&server_opts.endpt_array_lock); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 86 | } |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 87 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 88 | API void |
| 89 | nc_session_set_term_reason(struct nc_session *session, NC_SESSION_TERM_REASON reason) |
| 90 | { |
| 91 | if (!session || !reason) { |
| 92 | ERRARG; |
| 93 | return; |
| 94 | } |
| 95 | |
| 96 | session->term_reason = reason; |
| 97 | } |
| 98 | |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 99 | int |
Michal Vasko | f05562c | 2016-01-20 12:06:43 +0100 | [diff] [blame] | 100 | nc_sock_listen(const char *address, uint16_t port) |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 101 | { |
| 102 | const int optVal = 1; |
| 103 | const socklen_t optLen = sizeof(optVal); |
| 104 | int is_ipv4, sock; |
| 105 | struct sockaddr_storage saddr; |
| 106 | |
| 107 | struct sockaddr_in *saddr4; |
| 108 | struct sockaddr_in6 *saddr6; |
| 109 | |
| 110 | |
| 111 | if (!strchr(address, ':')) { |
| 112 | is_ipv4 = 1; |
| 113 | } else { |
| 114 | is_ipv4 = 0; |
| 115 | } |
| 116 | |
| 117 | sock = socket((is_ipv4 ? AF_INET : AF_INET6), SOCK_STREAM, 0); |
| 118 | if (sock == -1) { |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 119 | ERR("Failed to create socket (%s).", strerror(errno)); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 120 | goto fail; |
| 121 | } |
| 122 | |
| 123 | if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *)&optVal, optLen)) { |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 124 | ERR("Could not set socket SO_REUSEADDR socket option (%s).", strerror(errno)); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 125 | goto fail; |
| 126 | } |
| 127 | |
| 128 | bzero(&saddr, sizeof(struct sockaddr_storage)); |
| 129 | if (is_ipv4) { |
| 130 | saddr4 = (struct sockaddr_in *)&saddr; |
| 131 | |
| 132 | saddr4->sin_family = AF_INET; |
| 133 | saddr4->sin_port = htons(port); |
| 134 | |
| 135 | if (inet_pton(AF_INET, address, &saddr4->sin_addr) != 1) { |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 136 | ERR("Failed to convert IPv4 address \"%s\".", address); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 137 | goto fail; |
| 138 | } |
| 139 | |
| 140 | if (bind(sock, (struct sockaddr *)saddr4, sizeof(struct sockaddr_in)) == -1) { |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 141 | ERR("Could not bind \"%s\" port %d (%s).", address, port, strerror(errno)); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 142 | goto fail; |
| 143 | } |
| 144 | |
| 145 | } else { |
| 146 | saddr6 = (struct sockaddr_in6 *)&saddr; |
| 147 | |
| 148 | saddr6->sin6_family = AF_INET6; |
| 149 | saddr6->sin6_port = htons(port); |
| 150 | |
| 151 | if (inet_pton(AF_INET6, address, &saddr6->sin6_addr) != 1) { |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 152 | ERR("Failed to convert IPv6 address \"%s\".", address); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 153 | goto fail; |
| 154 | } |
| 155 | |
| 156 | if (bind(sock, (struct sockaddr *)saddr6, sizeof(struct sockaddr_in6)) == -1) { |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 157 | ERR("Could not bind \"%s\" port %d (%s).", address, port, strerror(errno)); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 158 | goto fail; |
| 159 | } |
| 160 | } |
| 161 | |
Michal Vasko | fb89d77 | 2016-01-08 12:25:35 +0100 | [diff] [blame] | 162 | if (listen(sock, NC_REVERSE_QUEUE) == -1) { |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 163 | ERR("Unable to start listening on \"%s\" port %d (%s).", address, port, strerror(errno)); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 164 | goto fail; |
| 165 | } |
| 166 | |
| 167 | return sock; |
| 168 | |
| 169 | fail: |
| 170 | if (sock > -1) { |
| 171 | close(sock); |
| 172 | } |
| 173 | |
| 174 | return -1; |
| 175 | } |
| 176 | |
| 177 | int |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 178 | nc_sock_accept_binds(struct nc_bind *binds, uint16_t bind_count, int timeout, char **host, uint16_t *port, uint16_t *idx) |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 179 | { |
| 180 | uint16_t i; |
| 181 | struct pollfd *pfd; |
| 182 | struct sockaddr_storage saddr; |
| 183 | socklen_t saddr_len = sizeof(saddr); |
| 184 | int ret, sock = -1; |
| 185 | |
| 186 | pfd = malloc(bind_count * sizeof *pfd); |
| 187 | for (i = 0; i < bind_count; ++i) { |
| 188 | pfd[i].fd = binds[i].sock; |
| 189 | pfd[i].events = POLLIN; |
| 190 | pfd[i].revents = 0; |
| 191 | } |
| 192 | |
| 193 | /* poll for a new connection */ |
| 194 | errno = 0; |
| 195 | ret = poll(pfd, bind_count, timeout); |
| 196 | if (!ret) { |
| 197 | /* we timeouted */ |
| 198 | free(pfd); |
| 199 | return 0; |
| 200 | } else if (ret == -1) { |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 201 | ERR("Poll failed (%s).", strerror(errno)); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 202 | free(pfd); |
| 203 | return -1; |
| 204 | } |
| 205 | |
| 206 | for (i = 0; i < bind_count; ++i) { |
| 207 | if (pfd[i].revents & POLLIN) { |
| 208 | sock = pfd[i].fd; |
| 209 | break; |
| 210 | } |
| 211 | } |
| 212 | free(pfd); |
| 213 | |
| 214 | if (sock == -1) { |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 215 | ERRINT; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 216 | return -1; |
| 217 | } |
| 218 | |
| 219 | ret = accept(sock, (struct sockaddr *)&saddr, &saddr_len); |
Michal Vasko | 3f6cc4a | 2016-01-21 15:58:53 +0100 | [diff] [blame] | 220 | if (ret < 0) { |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 221 | ERR("Accept failed (%s).", strerror(errno)); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 222 | return -1; |
| 223 | } |
| 224 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 225 | if (idx) { |
| 226 | *idx = i; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 227 | } |
| 228 | |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 229 | /* host was requested */ |
| 230 | if (host) { |
| 231 | if (saddr.ss_family == AF_INET) { |
| 232 | *host = malloc(15); |
| 233 | if (!inet_ntop(AF_INET, &((struct sockaddr_in *)&saddr)->sin_addr.s_addr, *host, 15)) { |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 234 | ERR("inet_ntop failed (%s).", strerror(errno)); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 235 | free(*host); |
| 236 | *host = NULL; |
| 237 | } |
| 238 | |
| 239 | if (port) { |
| 240 | *port = ntohs(((struct sockaddr_in *)&saddr)->sin_port); |
| 241 | } |
| 242 | } else if (saddr.ss_family == AF_INET6) { |
| 243 | *host = malloc(40); |
| 244 | if (!inet_ntop(AF_INET6, ((struct sockaddr_in6 *)&saddr)->sin6_addr.s6_addr, *host, 40)) { |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 245 | ERR("inet_ntop failed (%s).", strerror(errno)); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 246 | free(*host); |
| 247 | *host = NULL; |
| 248 | } |
| 249 | |
| 250 | if (port) { |
| 251 | *port = ntohs(((struct sockaddr_in6 *)&saddr)->sin6_port); |
| 252 | } |
| 253 | } else { |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 254 | ERR("Source host of an unknown protocol family."); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 255 | } |
| 256 | } |
| 257 | |
| 258 | return ret; |
| 259 | } |
| 260 | |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 261 | static struct nc_server_reply * |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 262 | nc_clb_default_get_schema(struct lyd_node *rpc, struct nc_session *UNUSED(session)) |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 263 | { |
| 264 | const char *identifier = NULL, *version = NULL, *format = NULL; |
| 265 | char *model_data = NULL; |
| 266 | const struct lys_module *module; |
| 267 | struct nc_server_error *err; |
| 268 | struct lyd_node *child, *data = NULL; |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 269 | const struct lys_node *sdata = NULL; |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 270 | |
| 271 | LY_TREE_FOR(rpc->child, child) { |
| 272 | if (!strcmp(child->schema->name, "identifier")) { |
| 273 | identifier = ((struct lyd_node_leaf_list *)child)->value_str; |
| 274 | } else if (!strcmp(child->schema->name, "version")) { |
| 275 | version = ((struct lyd_node_leaf_list *)child)->value_str; |
| 276 | } else if (!strcmp(child->schema->name, "format")) { |
| 277 | format = ((struct lyd_node_leaf_list *)child)->value_str; |
| 278 | } |
| 279 | } |
| 280 | |
| 281 | /* check version */ |
| 282 | if (version && (strlen(version) != 10) && strcmp(version, "1.0")) { |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 283 | err = nc_err(NC_ERR_INVALID_VALUE, NC_ERR_TYPE_APP); |
| 284 | nc_err_set_msg(err, "The requested version is not supported.", "en"); |
| 285 | return nc_server_reply_err(err); |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 286 | } |
| 287 | |
| 288 | /* check and get module with the name identifier */ |
| 289 | module = ly_ctx_get_module(server_opts.ctx, identifier, version); |
| 290 | if (!module) { |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 291 | err = nc_err(NC_ERR_INVALID_VALUE, NC_ERR_TYPE_APP); |
| 292 | nc_err_set_msg(err, "The requested schema was not found.", "en"); |
| 293 | return nc_server_reply_err(err); |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 294 | } |
| 295 | |
| 296 | /* check format */ |
| 297 | if (!format || !strcmp(format, "yang")) { |
| 298 | lys_print_mem(&model_data, module, LYS_OUT_YANG, NULL); |
| 299 | } else if (!strcmp(format, "yin")) { |
| 300 | lys_print_mem(&model_data, module, LYS_OUT_YIN, NULL); |
| 301 | } else { |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 302 | err = nc_err(NC_ERR_INVALID_VALUE, NC_ERR_TYPE_APP); |
| 303 | nc_err_set_msg(err, "The requested format is not supported.", "en"); |
| 304 | return nc_server_reply_err(err); |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 305 | } |
| 306 | |
Michal Vasko | 0473c4c | 2016-01-19 10:40:06 +0100 | [diff] [blame] | 307 | module = ly_ctx_get_module(server_opts.ctx, "ietf-netconf-monitoring", NULL); |
| 308 | if (module) { |
| 309 | sdata = lys_get_node(module, "/get-schema/output/data"); |
| 310 | } |
| 311 | if (model_data && sdata) { |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 312 | nc_ctx_lock(-1, NULL); |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 313 | data = lyd_output_new_anyxml(sdata, model_data); |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 314 | nc_ctx_unlock(); |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 315 | } |
| 316 | free(model_data); |
| 317 | if (!data) { |
| 318 | ERRINT; |
| 319 | return NULL; |
| 320 | } |
| 321 | |
| 322 | return nc_server_reply_data(data, NC_PARAMTYPE_FREE); |
| 323 | } |
| 324 | |
| 325 | static struct nc_server_reply * |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 326 | nc_clb_default_close_session(struct lyd_node *UNUSED(rpc), struct nc_session *session) |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 327 | { |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 328 | session->term_reason = NC_SESSION_TERM_CLOSED; |
| 329 | return nc_server_reply_ok(); |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 330 | } |
| 331 | |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 332 | API int |
| 333 | nc_server_init(struct ly_ctx *ctx) |
| 334 | { |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 335 | const struct lys_node *rpc; |
Michal Vasko | 0473c4c | 2016-01-19 10:40:06 +0100 | [diff] [blame] | 336 | const struct lys_module *mod; |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 337 | |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 338 | if (!ctx) { |
| 339 | ERRARG; |
| 340 | return -1; |
| 341 | } |
| 342 | |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 343 | /* set default <get-schema> callback if not specified */ |
Michal Vasko | 0473c4c | 2016-01-19 10:40:06 +0100 | [diff] [blame] | 344 | rpc = NULL; |
| 345 | mod = ly_ctx_get_module(ctx, "ietf-netconf-monitoring", NULL); |
| 346 | if (mod) { |
| 347 | rpc = lys_get_node(mod, "/get-schema"); |
| 348 | } |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 349 | if (rpc && !rpc->private) { |
| 350 | lys_set_private(rpc, nc_clb_default_get_schema); |
| 351 | } |
| 352 | |
| 353 | /* set default <close-session> callback if not specififed */ |
Michal Vasko | 0473c4c | 2016-01-19 10:40:06 +0100 | [diff] [blame] | 354 | rpc = NULL; |
| 355 | mod = ly_ctx_get_module(ctx, "ietf-netconf", NULL); |
| 356 | if (mod) { |
| 357 | rpc = lys_get_node(mod, "/close-session"); |
| 358 | } |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 359 | if (rpc && !rpc->private) { |
| 360 | lys_set_private(rpc, nc_clb_default_close_session); |
| 361 | } |
| 362 | |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 363 | server_opts.ctx = ctx; |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 364 | |
| 365 | server_opts.new_session_id = 1; |
| 366 | pthread_spin_init(&server_opts.sid_lock, PTHREAD_PROCESS_PRIVATE); |
| 367 | |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 368 | return 0; |
| 369 | } |
| 370 | |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 371 | API void |
| 372 | nc_server_destroy(void) |
| 373 | { |
| 374 | pthread_spin_destroy(&server_opts.sid_lock); |
| 375 | |
| 376 | #if defined(ENABLE_SSH) || defined(ENABLE_TLS) |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 377 | nc_server_del_endpt(NULL, 0); |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 378 | #endif |
| 379 | } |
| 380 | |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 381 | API int |
| 382 | nc_server_set_capab_withdefaults(NC_WD_MODE basic_mode, int also_supported) |
| 383 | { |
| 384 | if (!basic_mode || (basic_mode == NC_WD_ALL_TAG) |
| 385 | || (also_supported && !(also_supported & (NC_WD_ALL | NC_WD_ALL_TAG | NC_WD_TRIM | NC_WD_EXPLICIT)))) { |
| 386 | ERRARG; |
| 387 | return -1; |
| 388 | } |
| 389 | |
| 390 | server_opts.wd_basic_mode = basic_mode; |
| 391 | server_opts.wd_also_supported = also_supported; |
| 392 | return 0; |
| 393 | } |
| 394 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 395 | API void |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 396 | nc_server_set_capab_interleave(int interleave_support) |
| 397 | { |
| 398 | if (interleave_support) { |
| 399 | server_opts.interleave_capab = 1; |
| 400 | } else { |
| 401 | server_opts.interleave_capab = 0; |
| 402 | } |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 403 | } |
| 404 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 405 | API void |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 406 | nc_server_set_hello_timeout(uint16_t hello_timeout) |
| 407 | { |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 408 | server_opts.hello_timeout = hello_timeout; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 409 | } |
| 410 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 411 | API void |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 412 | nc_server_set_idle_timeout(uint16_t idle_timeout) |
| 413 | { |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 414 | server_opts.idle_timeout = idle_timeout; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 415 | } |
| 416 | |
| 417 | API int |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 418 | nc_accept_inout(int fdin, int fdout, const char *username, struct nc_session **session) |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 419 | { |
Michal Vasko | 7f1c78b | 2016-01-19 09:52:14 +0100 | [diff] [blame] | 420 | if (!server_opts.ctx || (fdin < 0) || (fdout < 0) || !username || !session) { |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 421 | ERRARG; |
| 422 | return -1; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 423 | } |
| 424 | |
| 425 | /* prepare session structure */ |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 426 | *session = calloc(1, sizeof **session); |
| 427 | if (!(*session)) { |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 428 | ERRMEM; |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 429 | return -1; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 430 | } |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 431 | (*session)->status = NC_STATUS_STARTING; |
| 432 | (*session)->side = NC_SERVER; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 433 | |
| 434 | /* transport specific data */ |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 435 | (*session)->ti_type = NC_TI_FD; |
| 436 | (*session)->ti.fd.in = fdin; |
| 437 | (*session)->ti.fd.out = fdout; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 438 | |
| 439 | /* assign context (dicionary needed for handshake) */ |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 440 | (*session)->flags = NC_SESSION_SHAREDCTX; |
| 441 | (*session)->ctx = server_opts.ctx; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 442 | |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 443 | /* assign new SID atomically */ |
| 444 | pthread_spin_lock(&server_opts.sid_lock); |
| 445 | (*session)->id = server_opts.new_session_id++; |
| 446 | pthread_spin_unlock(&server_opts.sid_lock); |
| 447 | |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 448 | /* NETCONF handshake */ |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 449 | if (nc_handshake(*session)) { |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 450 | goto fail; |
| 451 | } |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 452 | (*session)->status = NC_STATUS_RUNNING; |
Michal Vasko | 5e6f4cc | 2016-01-20 13:27:44 +0100 | [diff] [blame] | 453 | (*session)->last_rpc = time(NULL); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 454 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 455 | return 0; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 456 | |
| 457 | fail: |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 458 | nc_session_free(*session); |
| 459 | *session = NULL; |
| 460 | return -1; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 461 | } |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 462 | |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 463 | API struct nc_pollsession * |
| 464 | nc_ps_new(void) |
| 465 | { |
| 466 | return calloc(1, sizeof(struct nc_pollsession)); |
| 467 | } |
| 468 | |
| 469 | API void |
| 470 | nc_ps_free(struct nc_pollsession *ps) |
| 471 | { |
Michal Vasko | 7f1c78b | 2016-01-19 09:52:14 +0100 | [diff] [blame] | 472 | if (!ps) { |
| 473 | return; |
| 474 | } |
| 475 | |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 476 | free(ps->pfds); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 477 | free(ps->sessions); |
| 478 | free(ps); |
| 479 | } |
| 480 | |
| 481 | API int |
| 482 | nc_ps_add_session(struct nc_pollsession *ps, struct nc_session *session) |
| 483 | { |
| 484 | if (!ps || !session) { |
| 485 | ERRARG; |
| 486 | return -1; |
| 487 | } |
| 488 | |
| 489 | ++ps->session_count; |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 490 | ps->pfds = realloc(ps->pfds, ps->session_count * sizeof *ps->pfds); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 491 | ps->sessions = realloc(ps->sessions, ps->session_count * sizeof *ps->sessions); |
| 492 | |
| 493 | switch (session->ti_type) { |
| 494 | case NC_TI_FD: |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 495 | ps->pfds[ps->session_count - 1].fd = session->ti.fd.in; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 496 | break; |
| 497 | |
| 498 | #ifdef ENABLE_SSH |
| 499 | case NC_TI_LIBSSH: |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 500 | ps->pfds[ps->session_count - 1].fd = ssh_get_fd(session->ti.libssh.session); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 501 | break; |
| 502 | #endif |
| 503 | |
| 504 | #ifdef ENABLE_TLS |
| 505 | case NC_TI_OPENSSL: |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 506 | ps->pfds[ps->session_count - 1].fd = SSL_get_rfd(session->ti.tls); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 507 | break; |
| 508 | #endif |
| 509 | |
| 510 | default: |
| 511 | ERRINT; |
| 512 | return -1; |
| 513 | } |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 514 | ps->pfds[ps->session_count - 1].events = POLLIN; |
| 515 | ps->pfds[ps->session_count - 1].revents = 0; |
| 516 | ps->sessions[ps->session_count - 1] = session; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 517 | |
| 518 | return 0; |
| 519 | } |
| 520 | |
| 521 | API int |
| 522 | nc_ps_del_session(struct nc_pollsession *ps, struct nc_session *session) |
| 523 | { |
| 524 | uint16_t i; |
| 525 | |
| 526 | if (!ps || !session) { |
| 527 | ERRARG; |
| 528 | return -1; |
| 529 | } |
| 530 | |
| 531 | for (i = 0; i < ps->session_count; ++i) { |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 532 | if (ps->sessions[i] == session) { |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 533 | --ps->session_count; |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 534 | ps->sessions[i] = ps->sessions[ps->session_count]; |
| 535 | memcpy(&ps->pfds[i], &ps->pfds[ps->session_count], sizeof *ps->pfds); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 536 | return 0; |
| 537 | } |
| 538 | } |
| 539 | |
Michal Vasko | f0537d8 | 2016-01-29 14:42:38 +0100 | [diff] [blame] | 540 | return -1; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 541 | } |
| 542 | |
| 543 | /* must be called holding the session lock! */ |
| 544 | static NC_MSG_TYPE |
| 545 | nc_recv_rpc(struct nc_session *session, struct nc_server_rpc **rpc) |
| 546 | { |
| 547 | struct lyxml_elem *xml = NULL; |
| 548 | NC_MSG_TYPE msgtype; |
| 549 | |
| 550 | if (!session || !rpc) { |
| 551 | ERRARG; |
| 552 | return NC_MSG_ERROR; |
| 553 | } else if ((session->status != NC_STATUS_RUNNING) || (session->side != NC_SERVER)) { |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 554 | ERR("Session %u: invalid session to receive RPCs.", session->id); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 555 | return NC_MSG_ERROR; |
| 556 | } |
| 557 | |
| 558 | msgtype = nc_read_msg(session, &xml); |
| 559 | |
| 560 | switch (msgtype) { |
| 561 | case NC_MSG_RPC: |
| 562 | *rpc = malloc(sizeof **rpc); |
Michal Vasko | ca4a242 | 2016-02-02 12:17:14 +0100 | [diff] [blame^] | 563 | |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 564 | nc_ctx_lock(-1, NULL); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 565 | (*rpc)->tree = lyd_parse_xml(server_opts.ctx, &xml->child, LYD_OPT_DESTRUCT | LYD_OPT_RPC); |
Michal Vasko | ca4a242 | 2016-02-02 12:17:14 +0100 | [diff] [blame^] | 566 | if (!(*rpc)->tree) { |
| 567 | ERR("Session %u: received message failed to be parsed into a known RPC.", session->id); |
| 568 | msgtype = NC_MSG_NONE; |
| 569 | } |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 570 | nc_ctx_unlock(); |
Michal Vasko | ca4a242 | 2016-02-02 12:17:14 +0100 | [diff] [blame^] | 571 | |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 572 | (*rpc)->root = xml; |
| 573 | break; |
| 574 | case NC_MSG_HELLO: |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 575 | ERR("Session %u: received another <hello> message.", session->id); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 576 | goto error; |
| 577 | case NC_MSG_REPLY: |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 578 | ERR("Session %u: received <rpc-reply> from NETCONF client.", session->id); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 579 | goto error; |
| 580 | case NC_MSG_NOTIF: |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 581 | ERR("Session %u: received <notification> from NETCONF client.", session->id); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 582 | goto error; |
| 583 | default: |
| 584 | /* NC_MSG_ERROR - pass it out; |
| 585 | * NC_MSG_WOULDBLOCK and NC_MSG_NONE is not returned by nc_read_msg() |
| 586 | */ |
| 587 | break; |
| 588 | } |
| 589 | |
| 590 | return msgtype; |
| 591 | |
| 592 | error: |
| 593 | /* cleanup */ |
| 594 | lyxml_free(server_opts.ctx, xml); |
| 595 | |
| 596 | return NC_MSG_ERROR; |
| 597 | } |
| 598 | |
| 599 | /* must be called holding the session lock! */ |
| 600 | static NC_MSG_TYPE |
| 601 | nc_send_reply(struct nc_session *session, struct nc_server_rpc *rpc) |
| 602 | { |
| 603 | nc_rpc_clb clb; |
| 604 | struct nc_server_reply *reply; |
| 605 | int ret; |
| 606 | |
| 607 | /* no callback, reply with a not-implemented error */ |
Michal Vasko | ca4a242 | 2016-02-02 12:17:14 +0100 | [diff] [blame^] | 608 | if (!rpc->tree || !rpc->tree->schema->private) { |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 609 | reply = nc_server_reply_err(nc_err(NC_ERR_OP_NOT_SUPPORTED, NC_ERR_TYPE_PROT)); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 610 | } else { |
| 611 | clb = (nc_rpc_clb)rpc->tree->schema->private; |
| 612 | reply = clb(rpc->tree, session); |
| 613 | } |
| 614 | |
| 615 | if (!reply) { |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 616 | reply = nc_server_reply_err(nc_err(NC_ERR_OP_FAILED, NC_ERR_TYPE_APP)); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 617 | } |
| 618 | |
| 619 | ret = nc_write_msg(session, NC_MSG_REPLY, rpc->root, reply); |
| 620 | |
| 621 | /* special case if term_reason was set in callback, last reply was sent (needed for <close-session> if nothing else) */ |
| 622 | if ((session->status == NC_STATUS_RUNNING) && (session->term_reason != NC_SESSION_TERM_NONE)) { |
| 623 | session->status = NC_STATUS_INVALID; |
| 624 | } |
| 625 | |
| 626 | if (ret == -1) { |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 627 | ERR("Session %u: failed to write reply.", session->id); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 628 | nc_server_reply_free(reply); |
| 629 | return NC_MSG_ERROR; |
| 630 | } |
| 631 | nc_server_reply_free(reply); |
| 632 | |
| 633 | return NC_MSG_REPLY; |
| 634 | } |
| 635 | |
| 636 | API int |
| 637 | nc_ps_poll(struct nc_pollsession *ps, int timeout) |
| 638 | { |
| 639 | int ret; |
Michal Vasko | 3512e40 | 2016-01-28 16:22:34 +0100 | [diff] [blame] | 640 | uint16_t i; |
Michal Vasko | 5e6f4cc | 2016-01-20 13:27:44 +0100 | [diff] [blame] | 641 | time_t cur_time; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 642 | NC_MSG_TYPE msgtype; |
| 643 | struct nc_session *session; |
| 644 | struct nc_server_rpc *rpc; |
Michal Vasko | 96164bf | 2016-01-21 15:41:58 +0100 | [diff] [blame] | 645 | struct timespec old_ts; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 646 | |
| 647 | if (!ps || !ps->session_count) { |
| 648 | ERRARG; |
| 649 | return -1; |
| 650 | } |
| 651 | |
Michal Vasko | 5e6f4cc | 2016-01-20 13:27:44 +0100 | [diff] [blame] | 652 | cur_time = time(NULL); |
| 653 | |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 654 | for (i = 0; i < ps->session_count; ++i) { |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 655 | if (ps->sessions[i]->status != NC_STATUS_RUNNING) { |
| 656 | ERR("Session %u: session not running.", ps->sessions[i]->id); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 657 | return -1; |
| 658 | } |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 659 | |
Michal Vasko | 5e6f4cc | 2016-01-20 13:27:44 +0100 | [diff] [blame] | 660 | /* TODO invalidate only sessions without subscription */ |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 661 | if (server_opts.idle_timeout && (ps->sessions[i]->last_rpc + server_opts.idle_timeout >= cur_time)) { |
| 662 | ERR("Session %u: session idle timeout elapsed.", ps->sessions[i]->id); |
| 663 | ps->sessions[i]->status = NC_STATUS_INVALID; |
| 664 | ps->sessions[i]->term_reason = NC_SESSION_TERM_TIMEOUT; |
Michal Vasko | 5e6f4cc | 2016-01-20 13:27:44 +0100 | [diff] [blame] | 665 | return 3; |
| 666 | } |
| 667 | |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 668 | if (ps->pfds[i].revents) { |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 669 | break; |
| 670 | } |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 671 | } |
| 672 | |
| 673 | if (timeout > 0) { |
| 674 | clock_gettime(CLOCK_MONOTONIC_RAW, &old_ts); |
| 675 | } |
| 676 | |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 677 | if (i == ps->session_count) { |
Michal Vasko | 3512e40 | 2016-01-28 16:22:34 +0100 | [diff] [blame] | 678 | #ifdef ENABLE_SSH |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 679 | retry_poll: |
Michal Vasko | 3512e40 | 2016-01-28 16:22:34 +0100 | [diff] [blame] | 680 | #endif |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 681 | /* no leftover event */ |
| 682 | i = 0; |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 683 | ret = poll(ps->pfds, ps->session_count, timeout); |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 684 | if (ret < 1) { |
| 685 | return ret; |
| 686 | } |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 687 | } |
| 688 | |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 689 | /* find the first fd with POLLIN, we don't care if there are more now */ |
| 690 | for (; i < ps->session_count; ++i) { |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 691 | if (ps->pfds[i].revents & POLLHUP) { |
| 692 | ERR("Session %u: communication socket unexpectedly closed.", ps->sessions[i]->id); |
| 693 | ps->sessions[i]->status = NC_STATUS_INVALID; |
| 694 | ps->sessions[i]->term_reason = NC_SESSION_TERM_DROPPED; |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 695 | return 3; |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 696 | } else if (ps->pfds[i].revents & POLLERR) { |
| 697 | ERR("Session %u: communication socket error.", ps->sessions[i]->id); |
| 698 | ps->sessions[i]->status = NC_STATUS_INVALID; |
| 699 | ps->sessions[i]->term_reason = NC_SESSION_TERM_OTHER; |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 700 | return 3; |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 701 | } else if (ps->pfds[i].revents & POLLIN) { |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 702 | #ifdef ENABLE_SSH |
Michal Vasko | 96164bf | 2016-01-21 15:41:58 +0100 | [diff] [blame] | 703 | if (ps->sessions[i]->ti_type == NC_TI_LIBSSH) { |
Michal Vasko | 3512e40 | 2016-01-28 16:22:34 +0100 | [diff] [blame] | 704 | uint16_t j; |
| 705 | |
Michal Vasko | 96164bf | 2016-01-21 15:41:58 +0100 | [diff] [blame] | 706 | /* things are not that simple with SSH... */ |
| 707 | ret = nc_ssh_pollin(ps->sessions[i], &timeout); |
| 708 | |
| 709 | /* clear POLLIN on sessions sharing this session's SSH session */ |
| 710 | if ((ret == 1) || (ret >= 4)) { |
| 711 | for (j = i + 1; j < ps->session_count; ++j) { |
| 712 | if (ps->pfds[j].fd == ps->pfds[i].fd) { |
| 713 | ps->pfds[j].revents = 0; |
| 714 | } |
| 715 | } |
| 716 | } |
| 717 | |
| 718 | /* actual event happened */ |
| 719 | if ((ret <= 0) || (ret >= 3)) { |
| 720 | ps->pfds[i].revents = 0; |
| 721 | return ret; |
| 722 | |
| 723 | /* event occurred on some other channel */ |
| 724 | } else if (ret == 2) { |
| 725 | ps->pfds[i].revents = 0; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 726 | if (i == ps->session_count - 1) { |
| 727 | /* last session and it is not the right channel, ... */ |
| 728 | if (timeout > 0) { |
| 729 | /* ... decrease timeout, wait it all out and try again, last time */ |
Michal Vasko | 96164bf | 2016-01-21 15:41:58 +0100 | [diff] [blame] | 730 | nc_subtract_elapsed(&timeout, &old_ts); |
| 731 | usleep(timeout * 1000); |
| 732 | timeout = 0; |
| 733 | goto retry_poll; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 734 | } else if (!timeout) { |
| 735 | /* ... timeout is 0, so that is it */ |
| 736 | return 0; |
| 737 | } else { |
| 738 | /* ... retry polling reasonable time apart */ |
| 739 | usleep(NC_TIMEOUT_STEP); |
| 740 | goto retry_poll; |
| 741 | } |
| 742 | } |
| 743 | /* check other sessions */ |
| 744 | continue; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 745 | } |
| 746 | } |
| 747 | #endif /* ENABLE_SSH */ |
| 748 | |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 749 | /* we are going to process it now */ |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 750 | ps->pfds[i].revents = 0; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 751 | break; |
| 752 | } |
| 753 | } |
| 754 | |
| 755 | if (i == ps->session_count) { |
| 756 | ERRINT; |
| 757 | return -1; |
| 758 | } |
| 759 | |
| 760 | /* this is the session with some data available for reading */ |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 761 | session = ps->sessions[i]; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 762 | |
| 763 | if (timeout > 0) { |
Michal Vasko | 96164bf | 2016-01-21 15:41:58 +0100 | [diff] [blame] | 764 | nc_subtract_elapsed(&timeout, &old_ts); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 765 | } |
| 766 | |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 767 | /* reading an RPC and sending a reply must be atomic (no other RPC should be read) */ |
Michal Vasko | 7f1c78b | 2016-01-19 09:52:14 +0100 | [diff] [blame] | 768 | ret = nc_timedlock(session->ti_lock, timeout, NULL); |
| 769 | if (ret != 1) { |
| 770 | /* error or timeout */ |
| 771 | return ret; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 772 | } |
| 773 | |
| 774 | msgtype = nc_recv_rpc(session, &rpc); |
| 775 | if (msgtype == NC_MSG_ERROR) { |
Michal Vasko | 7f1c78b | 2016-01-19 09:52:14 +0100 | [diff] [blame] | 776 | pthread_mutex_unlock(session->ti_lock); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 777 | if (session->status != NC_STATUS_RUNNING) { |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 778 | return 3; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 779 | } |
| 780 | return -1; |
| 781 | } |
| 782 | |
Michal Vasko | ca4a242 | 2016-02-02 12:17:14 +0100 | [diff] [blame^] | 783 | /* NC_MSG_NONE is not a real (known) RPC */ |
| 784 | if (msgtype == NC_MSG_RPC) { |
| 785 | session->last_rpc = time(NULL); |
| 786 | } |
| 787 | |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 788 | /* process RPC */ |
| 789 | msgtype = nc_send_reply(session, rpc); |
| 790 | |
Michal Vasko | 7f1c78b | 2016-01-19 09:52:14 +0100 | [diff] [blame] | 791 | pthread_mutex_unlock(session->ti_lock); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 792 | |
| 793 | if (msgtype == NC_MSG_ERROR) { |
Michal Vasko | ca4a242 | 2016-02-02 12:17:14 +0100 | [diff] [blame^] | 794 | nc_server_rpc_free(rpc, server_opts.ctx); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 795 | return -1; |
| 796 | } |
Michal Vasko | ca4a242 | 2016-02-02 12:17:14 +0100 | [diff] [blame^] | 797 | nc_server_rpc_free(rpc, server_opts.ctx); |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 798 | |
Michal Vasko | bd8b4e1 | 2016-01-22 16:11:20 +0100 | [diff] [blame] | 799 | /* status change takes precedence over leftover events (return 2) */ |
| 800 | if (session->status != NC_STATUS_RUNNING) { |
| 801 | return 3; |
| 802 | } |
| 803 | |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 804 | /* is there some other socket waiting? */ |
| 805 | for (++i; i < ps->session_count; ++i) { |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 806 | if (ps->pfds[i].revents) { |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 807 | return 2; |
| 808 | } |
| 809 | } |
| 810 | |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 811 | return 1; |
| 812 | } |
| 813 | |
Michal Vasko | d09eae6 | 2016-02-01 10:32:52 +0100 | [diff] [blame] | 814 | API void |
| 815 | nc_ps_clear(struct nc_pollsession *ps) |
| 816 | { |
| 817 | uint16_t i; |
| 818 | struct nc_session *session; |
| 819 | |
Michal Vasko | 9a25e93 | 2016-02-01 10:36:42 +0100 | [diff] [blame] | 820 | if (!ps) { |
| 821 | ERRARG; |
| 822 | return; |
| 823 | } |
| 824 | |
Michal Vasko | d09eae6 | 2016-02-01 10:32:52 +0100 | [diff] [blame] | 825 | for (i = 0; i < ps->session_count; ) { |
| 826 | if (ps->sessions[i]->status != NC_STATUS_RUNNING) { |
| 827 | session = ps->sessions[i]; |
| 828 | nc_ps_del_session(ps, session); |
| 829 | nc_session_free(session); |
| 830 | continue; |
| 831 | } |
| 832 | |
| 833 | ++i; |
| 834 | } |
| 835 | } |
| 836 | |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 837 | API int |
| 838 | nc_ctx_lock(int timeout, int *elapsed) |
| 839 | { |
| 840 | return nc_timedlock(&server_opts.ctx_lock, timeout, elapsed); |
| 841 | } |
| 842 | |
| 843 | API int |
| 844 | nc_ctx_unlock(void) |
| 845 | { |
| 846 | int ret; |
| 847 | |
| 848 | ret = pthread_mutex_unlock(&server_opts.ctx_lock); |
| 849 | |
| 850 | if (ret) { |
| 851 | ERR("Mutex unlock failed (%s).", strerror(ret)); |
| 852 | return -1; |
| 853 | } |
| 854 | |
| 855 | return 0; |
| 856 | } |
| 857 | |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 858 | #if defined(ENABLE_SSH) || defined(ENABLE_TLS) |
| 859 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 860 | int |
| 861 | nc_server_add_endpt_listen(const char *name, const char *address, uint16_t port, NC_TRANSPORT_IMPL ti) |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 862 | { |
| 863 | int sock; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 864 | uint16_t i; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 865 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 866 | if (!name || !address || !port) { |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 867 | ERRARG; |
| 868 | return -1; |
| 869 | } |
| 870 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 871 | /* READ LOCK */ |
| 872 | pthread_rwlock_rdlock(&server_opts.endpt_array_lock); |
| 873 | |
| 874 | /* check name uniqueness */ |
| 875 | for (i = 0; i < server_opts.endpt_count; ++i) { |
| 876 | if (!strcmp(server_opts.endpts[i].name, name)) { |
| 877 | ERR("Endpoint \"%s\" already exists.", name); |
Michal Vasko | 9faf1c8 | 2016-02-01 13:26:19 +0100 | [diff] [blame] | 878 | /* READ UNLOCK */ |
| 879 | pthread_rwlock_unlock(&server_opts.endpt_array_lock); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 880 | return -1; |
| 881 | } |
| 882 | } |
| 883 | |
| 884 | /* READ UNLOCK */ |
| 885 | pthread_rwlock_unlock(&server_opts.endpt_array_lock); |
| 886 | |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 887 | sock = nc_sock_listen(address, port); |
| 888 | if (sock == -1) { |
| 889 | return -1; |
| 890 | } |
| 891 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 892 | /* WRITE LOCK */ |
| 893 | pthread_rwlock_wrlock(&server_opts.endpt_array_lock); |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 894 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 895 | ++server_opts.endpt_count; |
| 896 | server_opts.binds = realloc(server_opts.binds, server_opts.endpt_count * sizeof *server_opts.binds); |
| 897 | server_opts.endpts = realloc(server_opts.endpts, server_opts.endpt_count * sizeof *server_opts.endpts); |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 898 | |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 899 | nc_ctx_lock(-1, NULL); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 900 | server_opts.endpts[server_opts.endpt_count - 1].name = lydict_insert(server_opts.ctx, name, 0); |
| 901 | server_opts.binds[server_opts.endpt_count - 1].address = lydict_insert(server_opts.ctx, address, 0); |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 902 | nc_ctx_unlock(); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 903 | server_opts.binds[server_opts.endpt_count - 1].port = port; |
| 904 | server_opts.binds[server_opts.endpt_count - 1].sock = sock; |
| 905 | server_opts.binds[server_opts.endpt_count - 1].ti = ti; |
| 906 | switch (ti) { |
| 907 | #ifdef ENABLE_SSH |
| 908 | case NC_TI_LIBSSH: |
| 909 | server_opts.endpts[server_opts.endpt_count - 1].ti_opts = calloc(1, sizeof(struct nc_server_ssh_opts)); |
| 910 | break; |
| 911 | #endif |
| 912 | #ifdef ENABLE_TLS |
| 913 | case NC_TI_OPENSSL: |
| 914 | server_opts.endpts[server_opts.endpt_count - 1].ti_opts = calloc(1, sizeof(struct nc_server_tls_opts)); |
| 915 | break; |
| 916 | #endif |
| 917 | default: |
| 918 | ERRINT; |
| 919 | server_opts.endpts[server_opts.endpt_count - 1].ti_opts = NULL; |
| 920 | break; |
| 921 | } |
| 922 | pthread_mutex_init(&server_opts.endpts[server_opts.endpt_count - 1].endpt_lock, NULL); |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 923 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 924 | /* WRITE UNLOCK */ |
| 925 | pthread_rwlock_unlock(&server_opts.endpt_array_lock); |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 926 | |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 927 | return 0; |
| 928 | } |
| 929 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 930 | int |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 931 | nc_server_endpt_set_address_port(const char *endpt_name, const char *address, uint16_t port, NC_TRANSPORT_IMPL ti) |
| 932 | { |
| 933 | struct nc_endpt *endpt; |
| 934 | struct nc_bind *bind = NULL; |
| 935 | uint16_t i; |
| 936 | int sock; |
| 937 | |
| 938 | if (!endpt_name || (!address && !port) || (address && port) || !ti) { |
| 939 | ERRARG; |
| 940 | return -1; |
| 941 | } |
| 942 | |
| 943 | endpt = nc_server_endpt_lock(endpt_name, ti); |
| 944 | if (!endpt) { |
| 945 | return -1; |
| 946 | } |
| 947 | |
| 948 | /* we need to learn the index, to get the bind :-/ */ |
| 949 | for (i = 0; i < server_opts.endpt_count; ++i) { |
| 950 | if (&server_opts.endpts[i] == endpt) { |
| 951 | bind = &server_opts.binds[i]; |
| 952 | } |
| 953 | } |
| 954 | if (!bind) { |
| 955 | ERRINT; |
Michal Vasko | 7a93af7 | 2016-02-01 16:00:15 +0100 | [diff] [blame] | 956 | nc_server_endpt_unlock(endpt); |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 957 | return -1; |
| 958 | } |
| 959 | |
| 960 | if (address) { |
| 961 | sock = nc_sock_listen(address, bind->port); |
| 962 | } else { |
| 963 | sock = nc_sock_listen(bind->address, port); |
| 964 | } |
| 965 | if (sock == -1) { |
Michal Vasko | 7a93af7 | 2016-02-01 16:00:15 +0100 | [diff] [blame] | 966 | nc_server_endpt_unlock(endpt); |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 967 | return -1; |
| 968 | } |
| 969 | |
| 970 | /* close old socket, update parameters */ |
| 971 | close(bind->sock); |
| 972 | bind->sock = sock; |
| 973 | if (address) { |
| 974 | lydict_remove(server_opts.ctx, bind->address); |
| 975 | bind->address = lydict_insert(server_opts.ctx, address, 0); |
| 976 | } else { |
| 977 | bind->port = port; |
| 978 | } |
| 979 | |
Michal Vasko | 7a93af7 | 2016-02-01 16:00:15 +0100 | [diff] [blame] | 980 | nc_server_endpt_unlock(endpt); |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 981 | return 0; |
| 982 | } |
| 983 | |
| 984 | int |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 985 | nc_server_del_endpt(const char *name, NC_TRANSPORT_IMPL ti) |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 986 | { |
| 987 | uint32_t i; |
| 988 | int ret = -1; |
| 989 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 990 | /* WRITE LOCK */ |
| 991 | pthread_rwlock_wrlock(&server_opts.endpt_array_lock); |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 992 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 993 | if (!name && !ti) { |
| 994 | /* remove all */ |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 995 | nc_ctx_lock(-1, NULL); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 996 | for (i = 0; i < server_opts.endpt_count; ++i) { |
| 997 | lydict_remove(server_opts.ctx, server_opts.endpts[i].name); |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 998 | lydict_remove(server_opts.ctx, server_opts.binds[i].address); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 999 | close(server_opts.binds[i].sock); |
| 1000 | pthread_mutex_destroy(&server_opts.endpts[i].endpt_lock); |
| 1001 | switch (server_opts.binds[i].ti) { |
| 1002 | #ifdef ENABLE_SSH |
| 1003 | case NC_TI_LIBSSH: |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 1004 | nc_server_ssh_clear_opts(server_opts.endpts[i].ti_opts); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1005 | break; |
| 1006 | #endif |
| 1007 | #ifdef ENABLE_TLS |
| 1008 | case NC_TI_OPENSSL: |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 1009 | nc_server_tls_clear_opts(server_opts.endpts[i].ti_opts); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1010 | break; |
| 1011 | #endif |
| 1012 | default: |
| 1013 | ERRINT; |
| 1014 | break; |
| 1015 | } |
| 1016 | free(server_opts.endpts[i].ti_opts); |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1017 | |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1018 | ret = 0; |
| 1019 | } |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 1020 | nc_ctx_unlock(); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1021 | free(server_opts.endpts); |
| 1022 | server_opts.endpts = NULL; |
| 1023 | server_opts.endpt_count = 0; |
| 1024 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1025 | } else { |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1026 | /* remove one name endpoint or all ti endpoints */ |
| 1027 | for (i = 0; i < server_opts.endpt_count; ++i) { |
| 1028 | if ((server_opts.binds[i].ti == ti) && |
| 1029 | (!name || !strcmp(server_opts.endpts[i].name, name))) { |
| 1030 | |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 1031 | nc_ctx_lock(-1, NULL); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1032 | lydict_remove(server_opts.ctx, server_opts.endpts[i].name); |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 1033 | lydict_remove(server_opts.ctx, server_opts.binds[i].address); |
| 1034 | nc_ctx_unlock(); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1035 | close(server_opts.binds[i].sock); |
| 1036 | pthread_mutex_destroy(&server_opts.endpts[i].endpt_lock); |
| 1037 | switch (server_opts.binds[i].ti) { |
| 1038 | #ifdef ENABLE_SSH |
| 1039 | case NC_TI_LIBSSH: |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 1040 | nc_server_ssh_clear_opts(server_opts.endpts[i].ti_opts); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1041 | break; |
| 1042 | #endif |
| 1043 | #ifdef ENABLE_TLS |
| 1044 | case NC_TI_OPENSSL: |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 1045 | nc_server_tls_clear_opts(server_opts.endpts[i].ti_opts); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1046 | break; |
| 1047 | #endif |
| 1048 | default: |
| 1049 | ERRINT; |
| 1050 | break; |
| 1051 | } |
| 1052 | free(server_opts.endpts[i].ti_opts); |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1053 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1054 | --server_opts.endpt_count; |
| 1055 | memcpy(&server_opts.binds[i], &server_opts.binds[server_opts.endpt_count], sizeof *server_opts.binds); |
| 1056 | memcpy(&server_opts.endpts[i], &server_opts.endpts[server_opts.endpt_count], sizeof *server_opts.endpts); |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1057 | |
| 1058 | ret = 0; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1059 | |
| 1060 | if (name) { |
| 1061 | /* one name endpoint removed, they are unique, we're done */ |
| 1062 | break; |
| 1063 | } |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1064 | } |
| 1065 | } |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1066 | } |
| 1067 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1068 | /* WRITE UNLOCK */ |
| 1069 | pthread_rwlock_unlock(&server_opts.endpt_array_lock); |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 1070 | |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1071 | return ret; |
| 1072 | } |
| 1073 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1074 | API int |
| 1075 | nc_accept(int timeout, struct nc_session **session) |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1076 | { |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1077 | int sock, ret; |
Michal Vasko | 5c2f795 | 2016-01-22 13:16:31 +0100 | [diff] [blame] | 1078 | char *host = NULL; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1079 | uint16_t port, idx; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1080 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1081 | if (!server_opts.ctx || !server_opts.endpt_count || !session) { |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1082 | ERRARG; |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1083 | return -1; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1084 | } |
| 1085 | |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 1086 | /* READ LOCK */ |
| 1087 | pthread_rwlock_rdlock(&server_opts.endpt_array_lock); |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 1088 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1089 | ret = nc_sock_accept_binds(server_opts.binds, server_opts.endpt_count, timeout, &host, &port, &idx); |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 1090 | |
Michal Vasko | 50456e8 | 2016-02-02 12:16:08 +0100 | [diff] [blame] | 1091 | if (ret < 1) { |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 1092 | /* READ UNLOCK */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1093 | pthread_rwlock_unlock(&server_opts.endpt_array_lock); |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 1094 | return ret; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1095 | } |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 1096 | sock = ret; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1097 | |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 1098 | /* ENDPT LOCK */ |
| 1099 | pthread_mutex_lock(&server_opts.endpts[idx].endpt_lock); |
| 1100 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1101 | *session = calloc(1, sizeof **session); |
Michal Vasko | 686aa31 | 2016-01-21 15:58:18 +0100 | [diff] [blame] | 1102 | if (!(*session)) { |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1103 | ERRMEM; |
Michal Vasko | c14e3c8 | 2016-01-11 16:14:30 +0100 | [diff] [blame] | 1104 | close(sock); |
Michal Vasko | 5c2f795 | 2016-01-22 13:16:31 +0100 | [diff] [blame] | 1105 | free(host); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1106 | ret = -1; |
| 1107 | goto fail; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1108 | } |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1109 | (*session)->status = NC_STATUS_STARTING; |
| 1110 | (*session)->side = NC_SERVER; |
| 1111 | (*session)->ctx = server_opts.ctx; |
| 1112 | (*session)->flags = NC_SESSION_SHAREDCTX; |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 1113 | nc_ctx_lock(-1, NULL); |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1114 | (*session)->host = lydict_insert_zc(server_opts.ctx, host); |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 1115 | nc_ctx_unlock(); |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1116 | (*session)->port = port; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1117 | |
| 1118 | /* transport lock */ |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1119 | (*session)->ti_lock = malloc(sizeof *(*session)->ti_lock); |
| 1120 | if (!(*session)->ti_lock) { |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1121 | ERRMEM; |
Michal Vasko | c14e3c8 | 2016-01-11 16:14:30 +0100 | [diff] [blame] | 1122 | close(sock); |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1123 | ret = -1; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1124 | goto fail; |
| 1125 | } |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1126 | pthread_mutex_init((*session)->ti_lock, NULL); |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1127 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1128 | (*session)->ti_opts = server_opts.endpts[idx].ti_opts; |
| 1129 | |
Michal Vasko | c14e3c8 | 2016-01-11 16:14:30 +0100 | [diff] [blame] | 1130 | /* sock gets assigned to session or closed */ |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 1131 | #ifdef ENABLE_SSH |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1132 | if (server_opts.binds[idx].ti == NC_TI_LIBSSH) { |
| 1133 | ret = nc_accept_ssh_session(*session, sock, timeout); |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1134 | if (ret < 1) { |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1135 | goto fail; |
| 1136 | } |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 1137 | } else |
| 1138 | #endif |
| 1139 | #ifdef ENABLE_TLS |
| 1140 | if (server_opts.binds[idx].ti == NC_TI_OPENSSL) { |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1141 | ret = nc_accept_tls_session(*session, sock, timeout); |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1142 | if (ret < 1) { |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1143 | goto fail; |
| 1144 | } |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 1145 | } else |
| 1146 | #endif |
| 1147 | { |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1148 | ERRINT; |
Michal Vasko | c14e3c8 | 2016-01-11 16:14:30 +0100 | [diff] [blame] | 1149 | close(sock); |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1150 | ret = -1; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1151 | goto fail; |
| 1152 | } |
| 1153 | |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 1154 | /* ENDPT UNLOCK */ |
Michal Vasko | d8e271a | 2016-02-01 16:00:28 +0100 | [diff] [blame] | 1155 | pthread_mutex_unlock(&server_opts.endpts[idx].endpt_lock); |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 1156 | |
| 1157 | /* READ UNLOCK */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1158 | pthread_rwlock_unlock(&server_opts.endpt_array_lock); |
| 1159 | |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 1160 | /* assign new SID atomically */ |
| 1161 | /* LOCK */ |
| 1162 | pthread_spin_lock(&server_opts.sid_lock); |
| 1163 | (*session)->id = server_opts.new_session_id++; |
| 1164 | /* UNLOCK */ |
| 1165 | pthread_spin_unlock(&server_opts.sid_lock); |
| 1166 | |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1167 | /* NETCONF handshake */ |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1168 | if (nc_handshake(*session)) { |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1169 | nc_session_free(*session); |
| 1170 | *session = NULL; |
| 1171 | return -1; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1172 | } |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1173 | (*session)->status = NC_STATUS_RUNNING; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1174 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1175 | return 1; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1176 | |
| 1177 | fail: |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 1178 | /* ENDPT UNLOCK */ |
Michal Vasko | 9faf1c8 | 2016-02-01 13:26:19 +0100 | [diff] [blame] | 1179 | pthread_mutex_unlock(&server_opts.endpts[idx].endpt_lock); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1180 | /* WRITE UNLOCK */ |
| 1181 | pthread_rwlock_unlock(&server_opts.endpt_array_lock); |
| 1182 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1183 | nc_session_free(*session); |
| 1184 | *session = NULL; |
Michal Vasko | c61c449 | 2016-01-25 11:13:34 +0100 | [diff] [blame] | 1185 | return ret; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1186 | } |
| 1187 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1188 | int |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 1189 | nc_connect_callhome(const char *host, uint16_t port, NC_TRANSPORT_IMPL ti, int timeout, struct nc_session **session) |
| 1190 | { |
| 1191 | int sock, ret; |
| 1192 | |
Michal Vasko | c61c449 | 2016-01-25 11:13:34 +0100 | [diff] [blame] | 1193 | if (!host || !port || !ti || !session) { |
| 1194 | ERRARG; |
| 1195 | return -1; |
| 1196 | } |
| 1197 | |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 1198 | sock = nc_sock_connect(host, port); |
Michal Vasko | c61c449 | 2016-01-25 11:13:34 +0100 | [diff] [blame] | 1199 | if (sock < 0) { |
| 1200 | return -1; |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 1201 | } |
| 1202 | |
| 1203 | *session = calloc(1, sizeof **session); |
| 1204 | if (!(*session)) { |
| 1205 | ERRMEM; |
| 1206 | close(sock); |
| 1207 | return -1; |
| 1208 | } |
| 1209 | (*session)->status = NC_STATUS_STARTING; |
| 1210 | (*session)->side = NC_SERVER; |
| 1211 | (*session)->ctx = server_opts.ctx; |
| 1212 | (*session)->flags = NC_SESSION_SHAREDCTX | NC_SESSION_CALLHOME; |
| 1213 | nc_ctx_lock(-1, NULL); |
| 1214 | (*session)->host = lydict_insert(server_opts.ctx, host, 0); |
| 1215 | nc_ctx_unlock(); |
| 1216 | (*session)->port = port; |
| 1217 | |
| 1218 | /* transport lock */ |
| 1219 | (*session)->ti_lock = malloc(sizeof *(*session)->ti_lock); |
| 1220 | if (!(*session)->ti_lock) { |
| 1221 | ERRMEM; |
| 1222 | close(sock); |
| 1223 | ret = -1; |
| 1224 | goto fail; |
| 1225 | } |
| 1226 | pthread_mutex_init((*session)->ti_lock, NULL); |
| 1227 | |
| 1228 | /* sock gets assigned to session or closed */ |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 1229 | #ifdef ENABLE_SSH |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 1230 | if (ti == NC_TI_LIBSSH) { |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 1231 | /* OPTS LOCK */ |
| 1232 | pthread_mutex_lock(&ssh_ch_opts_lock); |
| 1233 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1234 | (*session)->ti_opts = &ssh_ch_opts; |
| 1235 | ret = nc_accept_ssh_session(*session, sock, timeout); |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 1236 | (*session)->ti_opts = NULL; |
| 1237 | |
| 1238 | /* OPTS UNLOCK */ |
| 1239 | pthread_mutex_unlock(&ssh_ch_opts_lock); |
| 1240 | |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 1241 | if (ret < 1) { |
| 1242 | goto fail; |
| 1243 | } |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 1244 | } else |
| 1245 | #endif |
| 1246 | #ifdef ENABLE_TLS |
| 1247 | if (ti == NC_TI_OPENSSL) { |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 1248 | /* OPTS LOCK */ |
| 1249 | pthread_mutex_lock(&tls_ch_opts_lock); |
| 1250 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1251 | (*session)->ti_opts = &tls_ch_opts; |
| 1252 | ret = nc_accept_tls_session(*session, sock, timeout); |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 1253 | (*session)->ti_opts = NULL; |
| 1254 | |
| 1255 | /* OPTS UNLOCK */ |
| 1256 | pthread_mutex_unlock(&tls_ch_opts_lock); |
| 1257 | |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 1258 | if (ret < 1) { |
| 1259 | goto fail; |
| 1260 | } |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 1261 | } else |
| 1262 | #endif |
| 1263 | { |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 1264 | ERRINT; |
| 1265 | close(sock); |
| 1266 | ret = -1; |
| 1267 | goto fail; |
| 1268 | } |
| 1269 | |
| 1270 | /* assign new SID atomically */ |
| 1271 | /* LOCK */ |
| 1272 | pthread_spin_lock(&server_opts.sid_lock); |
| 1273 | (*session)->id = server_opts.new_session_id++; |
| 1274 | /* UNLOCK */ |
| 1275 | pthread_spin_unlock(&server_opts.sid_lock); |
| 1276 | |
| 1277 | /* NETCONF handshake */ |
| 1278 | if (nc_handshake(*session)) { |
| 1279 | ret = -1; |
| 1280 | goto fail; |
| 1281 | } |
| 1282 | (*session)->status = NC_STATUS_RUNNING; |
| 1283 | |
| 1284 | return 1; |
| 1285 | |
| 1286 | fail: |
| 1287 | nc_session_free(*session); |
| 1288 | *session = NULL; |
Michal Vasko | c61c449 | 2016-01-25 11:13:34 +0100 | [diff] [blame] | 1289 | return ret; |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 1290 | } |
| 1291 | |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1292 | #endif /* ENABLE_SSH || ENABLE_TLS */ |