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