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 | |
Michal Vasko | 0fdb7ac | 2016-03-01 09:03:12 +0100 | [diff] [blame] | 528 | API uint16_t |
| 529 | nc_ps_session_count(struct nc_pollsession *ps) |
| 530 | { |
| 531 | if (!ps) { |
| 532 | ERRARG; |
| 533 | return 0; |
| 534 | } |
| 535 | |
| 536 | return ps->session_count; |
| 537 | } |
| 538 | |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 539 | /* must be called holding the session lock! */ |
| 540 | static NC_MSG_TYPE |
| 541 | nc_recv_rpc(struct nc_session *session, struct nc_server_rpc **rpc) |
| 542 | { |
| 543 | struct lyxml_elem *xml = NULL; |
| 544 | NC_MSG_TYPE msgtype; |
| 545 | |
| 546 | if (!session || !rpc) { |
| 547 | ERRARG; |
| 548 | return NC_MSG_ERROR; |
| 549 | } else if ((session->status != NC_STATUS_RUNNING) || (session->side != NC_SERVER)) { |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 550 | ERR("Session %u: invalid session to receive RPCs.", session->id); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 551 | return NC_MSG_ERROR; |
| 552 | } |
| 553 | |
| 554 | msgtype = nc_read_msg(session, &xml); |
| 555 | |
| 556 | switch (msgtype) { |
| 557 | case NC_MSG_RPC: |
| 558 | *rpc = malloc(sizeof **rpc); |
Michal Vasko | ca4a242 | 2016-02-02 12:17:14 +0100 | [diff] [blame] | 559 | |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 560 | (*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] | 561 | if (!(*rpc)->tree) { |
| 562 | ERR("Session %u: received message failed to be parsed into a known RPC.", session->id); |
| 563 | msgtype = NC_MSG_NONE; |
| 564 | } |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 565 | (*rpc)->root = xml; |
| 566 | break; |
| 567 | case NC_MSG_HELLO: |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 568 | ERR("Session %u: received another <hello> message.", session->id); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 569 | goto error; |
| 570 | case NC_MSG_REPLY: |
Michal Vasko | 81614ee | 2016-02-02 12:20:14 +0100 | [diff] [blame] | 571 | ERR("Session %u: received <rpc-reply> from a NETCONF client.", session->id); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 572 | goto error; |
| 573 | case NC_MSG_NOTIF: |
Michal Vasko | 81614ee | 2016-02-02 12:20:14 +0100 | [diff] [blame] | 574 | ERR("Session %u: received <notification> from a NETCONF client.", session->id); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 575 | goto error; |
| 576 | default: |
| 577 | /* NC_MSG_ERROR - pass it out; |
| 578 | * NC_MSG_WOULDBLOCK and NC_MSG_NONE is not returned by nc_read_msg() |
| 579 | */ |
| 580 | break; |
| 581 | } |
| 582 | |
| 583 | return msgtype; |
| 584 | |
| 585 | error: |
| 586 | /* cleanup */ |
| 587 | lyxml_free(server_opts.ctx, xml); |
| 588 | |
| 589 | return NC_MSG_ERROR; |
| 590 | } |
| 591 | |
| 592 | /* must be called holding the session lock! */ |
| 593 | static NC_MSG_TYPE |
| 594 | nc_send_reply(struct nc_session *session, struct nc_server_rpc *rpc) |
| 595 | { |
| 596 | nc_rpc_clb clb; |
| 597 | struct nc_server_reply *reply; |
| 598 | int ret; |
| 599 | |
| 600 | /* no callback, reply with a not-implemented error */ |
Michal Vasko | ca4a242 | 2016-02-02 12:17:14 +0100 | [diff] [blame] | 601 | if (!rpc->tree || !rpc->tree->schema->private) { |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 602 | 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] | 603 | } else { |
| 604 | clb = (nc_rpc_clb)rpc->tree->schema->private; |
| 605 | reply = clb(rpc->tree, session); |
| 606 | } |
| 607 | |
| 608 | if (!reply) { |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 609 | 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] | 610 | } |
| 611 | |
| 612 | ret = nc_write_msg(session, NC_MSG_REPLY, rpc->root, reply); |
| 613 | |
| 614 | /* special case if term_reason was set in callback, last reply was sent (needed for <close-session> if nothing else) */ |
| 615 | if ((session->status == NC_STATUS_RUNNING) && (session->term_reason != NC_SESSION_TERM_NONE)) { |
| 616 | session->status = NC_STATUS_INVALID; |
| 617 | } |
| 618 | |
| 619 | if (ret == -1) { |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 620 | ERR("Session %u: failed to write reply.", session->id); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 621 | nc_server_reply_free(reply); |
| 622 | return NC_MSG_ERROR; |
| 623 | } |
| 624 | nc_server_reply_free(reply); |
| 625 | |
| 626 | return NC_MSG_REPLY; |
| 627 | } |
| 628 | |
| 629 | API int |
| 630 | nc_ps_poll(struct nc_pollsession *ps, int timeout) |
| 631 | { |
| 632 | int ret; |
Michal Vasko | 3512e40 | 2016-01-28 16:22:34 +0100 | [diff] [blame] | 633 | uint16_t i; |
Michal Vasko | 5e6f4cc | 2016-01-20 13:27:44 +0100 | [diff] [blame] | 634 | time_t cur_time; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 635 | NC_MSG_TYPE msgtype; |
| 636 | struct nc_session *session; |
| 637 | struct nc_server_rpc *rpc; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 638 | |
| 639 | if (!ps || !ps->session_count) { |
| 640 | ERRARG; |
| 641 | return -1; |
| 642 | } |
| 643 | |
Michal Vasko | 5e6f4cc | 2016-01-20 13:27:44 +0100 | [diff] [blame] | 644 | cur_time = time(NULL); |
| 645 | |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 646 | for (i = 0; i < ps->session_count; ++i) { |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 647 | if (ps->sessions[i]->status != NC_STATUS_RUNNING) { |
| 648 | ERR("Session %u: session not running.", ps->sessions[i]->id); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 649 | return -1; |
| 650 | } |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 651 | |
Michal Vasko | 5e6f4cc | 2016-01-20 13:27:44 +0100 | [diff] [blame] | 652 | /* TODO invalidate only sessions without subscription */ |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 653 | if (server_opts.idle_timeout && (ps->sessions[i]->last_rpc + server_opts.idle_timeout >= cur_time)) { |
| 654 | ERR("Session %u: session idle timeout elapsed.", ps->sessions[i]->id); |
| 655 | ps->sessions[i]->status = NC_STATUS_INVALID; |
| 656 | ps->sessions[i]->term_reason = NC_SESSION_TERM_TIMEOUT; |
Michal Vasko | 5e6f4cc | 2016-01-20 13:27:44 +0100 | [diff] [blame] | 657 | return 3; |
| 658 | } |
| 659 | |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 660 | if (ps->pfds[i].revents) { |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 661 | break; |
| 662 | } |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 663 | } |
| 664 | |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 665 | if (i == ps->session_count) { |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 666 | #ifdef NC_ENABLED_SSH |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 667 | retry_poll: |
Michal Vasko | 3512e40 | 2016-01-28 16:22:34 +0100 | [diff] [blame] | 668 | #endif |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 669 | /* no leftover event */ |
| 670 | i = 0; |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 671 | ret = poll(ps->pfds, ps->session_count, timeout); |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 672 | if (ret < 1) { |
| 673 | return ret; |
| 674 | } |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 675 | } |
| 676 | |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 677 | /* find the first fd with POLLIN, we don't care if there are more now */ |
| 678 | for (; i < ps->session_count; ++i) { |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 679 | if (ps->pfds[i].revents & POLLHUP) { |
| 680 | ERR("Session %u: communication socket unexpectedly closed.", ps->sessions[i]->id); |
| 681 | ps->sessions[i]->status = NC_STATUS_INVALID; |
| 682 | ps->sessions[i]->term_reason = NC_SESSION_TERM_DROPPED; |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 683 | return 3; |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 684 | } else if (ps->pfds[i].revents & POLLERR) { |
| 685 | ERR("Session %u: communication socket error.", ps->sessions[i]->id); |
| 686 | ps->sessions[i]->status = NC_STATUS_INVALID; |
| 687 | ps->sessions[i]->term_reason = NC_SESSION_TERM_OTHER; |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 688 | return 3; |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 689 | } else if (ps->pfds[i].revents & POLLIN) { |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 690 | #ifdef NC_ENABLED_SSH |
Michal Vasko | 96164bf | 2016-01-21 15:41:58 +0100 | [diff] [blame] | 691 | if (ps->sessions[i]->ti_type == NC_TI_LIBSSH) { |
Michal Vasko | 3512e40 | 2016-01-28 16:22:34 +0100 | [diff] [blame] | 692 | uint16_t j; |
| 693 | |
Michal Vasko | 96164bf | 2016-01-21 15:41:58 +0100 | [diff] [blame] | 694 | /* things are not that simple with SSH... */ |
| 695 | ret = nc_ssh_pollin(ps->sessions[i], &timeout); |
| 696 | |
| 697 | /* clear POLLIN on sessions sharing this session's SSH session */ |
| 698 | if ((ret == 1) || (ret >= 4)) { |
| 699 | for (j = i + 1; j < ps->session_count; ++j) { |
| 700 | if (ps->pfds[j].fd == ps->pfds[i].fd) { |
| 701 | ps->pfds[j].revents = 0; |
| 702 | } |
| 703 | } |
| 704 | } |
| 705 | |
| 706 | /* actual event happened */ |
| 707 | if ((ret <= 0) || (ret >= 3)) { |
| 708 | ps->pfds[i].revents = 0; |
| 709 | return ret; |
| 710 | |
| 711 | /* event occurred on some other channel */ |
| 712 | } else if (ret == 2) { |
| 713 | ps->pfds[i].revents = 0; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 714 | if (i == ps->session_count - 1) { |
| 715 | /* last session and it is not the right channel, ... */ |
Michal Vasko | 8c74883 | 2016-02-03 15:32:16 +0100 | [diff] [blame] | 716 | if (!timeout) { |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 717 | /* ... timeout is 0, so that is it */ |
| 718 | return 0; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 719 | } |
Michal Vasko | 8c74883 | 2016-02-03 15:32:16 +0100 | [diff] [blame] | 720 | /* ... retry polling reasonable time apart ... */ |
| 721 | usleep(NC_TIMEOUT_STEP); |
| 722 | if (timeout > 0) { |
| 723 | /* ... and decrease timeout, if not -1 */ |
Michal Vasko | 7b38e23 | 2016-02-26 15:01:07 +0100 | [diff] [blame] | 724 | timeout -= NC_TIMEOUT_STEP * 1000; |
Michal Vasko | 8c74883 | 2016-02-03 15:32:16 +0100 | [diff] [blame] | 725 | } |
| 726 | goto retry_poll; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 727 | } |
| 728 | /* check other sessions */ |
| 729 | continue; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 730 | } |
| 731 | } |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 732 | #endif /* NC_ENABLED_SSH */ |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 733 | |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 734 | /* we are going to process it now */ |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 735 | ps->pfds[i].revents = 0; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 736 | break; |
| 737 | } |
| 738 | } |
| 739 | |
| 740 | if (i == ps->session_count) { |
| 741 | ERRINT; |
| 742 | return -1; |
| 743 | } |
| 744 | |
| 745 | /* this is the session with some data available for reading */ |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 746 | session = ps->sessions[i]; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 747 | |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 748 | /* 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] | 749 | ret = nc_timedlock(session->ti_lock, timeout, NULL); |
| 750 | if (ret != 1) { |
| 751 | /* error or timeout */ |
| 752 | return ret; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 753 | } |
| 754 | |
| 755 | msgtype = nc_recv_rpc(session, &rpc); |
| 756 | if (msgtype == NC_MSG_ERROR) { |
Michal Vasko | 7f1c78b | 2016-01-19 09:52:14 +0100 | [diff] [blame] | 757 | pthread_mutex_unlock(session->ti_lock); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 758 | if (session->status != NC_STATUS_RUNNING) { |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 759 | return 3; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 760 | } |
| 761 | return -1; |
| 762 | } |
| 763 | |
Michal Vasko | ca4a242 | 2016-02-02 12:17:14 +0100 | [diff] [blame] | 764 | /* NC_MSG_NONE is not a real (known) RPC */ |
| 765 | if (msgtype == NC_MSG_RPC) { |
| 766 | session->last_rpc = time(NULL); |
| 767 | } |
| 768 | |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 769 | /* process RPC */ |
| 770 | msgtype = nc_send_reply(session, rpc); |
| 771 | |
Michal Vasko | 7f1c78b | 2016-01-19 09:52:14 +0100 | [diff] [blame] | 772 | pthread_mutex_unlock(session->ti_lock); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 773 | |
| 774 | if (msgtype == NC_MSG_ERROR) { |
Michal Vasko | ca4a242 | 2016-02-02 12:17:14 +0100 | [diff] [blame] | 775 | nc_server_rpc_free(rpc, server_opts.ctx); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 776 | return -1; |
| 777 | } |
Michal Vasko | ca4a242 | 2016-02-02 12:17:14 +0100 | [diff] [blame] | 778 | nc_server_rpc_free(rpc, server_opts.ctx); |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 779 | |
Michal Vasko | bd8b4e1 | 2016-01-22 16:11:20 +0100 | [diff] [blame] | 780 | /* status change takes precedence over leftover events (return 2) */ |
| 781 | if (session->status != NC_STATUS_RUNNING) { |
| 782 | return 3; |
| 783 | } |
| 784 | |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 785 | /* is there some other socket waiting? */ |
| 786 | for (++i; i < ps->session_count; ++i) { |
Michal Vasko | 3a71513 | 2016-01-21 15:40:31 +0100 | [diff] [blame] | 787 | if (ps->pfds[i].revents) { |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 788 | return 2; |
| 789 | } |
| 790 | } |
| 791 | |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 792 | return 1; |
| 793 | } |
| 794 | |
Michal Vasko | d09eae6 | 2016-02-01 10:32:52 +0100 | [diff] [blame] | 795 | API void |
Michal Vasko | cad3ac4 | 2016-03-01 09:06:01 +0100 | [diff] [blame^] | 796 | nc_ps_clear(struct nc_pollsession *ps, int all) |
Michal Vasko | d09eae6 | 2016-02-01 10:32:52 +0100 | [diff] [blame] | 797 | { |
| 798 | uint16_t i; |
| 799 | struct nc_session *session; |
| 800 | |
Michal Vasko | 9a25e93 | 2016-02-01 10:36:42 +0100 | [diff] [blame] | 801 | if (!ps) { |
| 802 | ERRARG; |
| 803 | return; |
| 804 | } |
| 805 | |
Michal Vasko | d09eae6 | 2016-02-01 10:32:52 +0100 | [diff] [blame] | 806 | for (i = 0; i < ps->session_count; ) { |
Michal Vasko | cad3ac4 | 2016-03-01 09:06:01 +0100 | [diff] [blame^] | 807 | if (all || (ps->sessions[i]->status != NC_STATUS_RUNNING)) { |
Michal Vasko | d09eae6 | 2016-02-01 10:32:52 +0100 | [diff] [blame] | 808 | session = ps->sessions[i]; |
| 809 | nc_ps_del_session(ps, session); |
| 810 | nc_session_free(session); |
| 811 | continue; |
| 812 | } |
| 813 | |
| 814 | ++i; |
| 815 | } |
| 816 | } |
| 817 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 818 | #if defined(NC_ENABLED_SSH) || defined(NC_ENABLED_TLS) |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 819 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 820 | int |
| 821 | 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] | 822 | { |
| 823 | int sock; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 824 | uint16_t i; |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 825 | #ifdef NC_ENABLED_SSH |
Michal Vasko | 08a629a | 2016-02-02 12:20:47 +0100 | [diff] [blame] | 826 | struct nc_server_ssh_opts *ssh_opts; |
| 827 | #endif |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 828 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 829 | if (!name || !address || !port) { |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 830 | ERRARG; |
| 831 | return -1; |
| 832 | } |
| 833 | |
Michal Vasko | 51e514d | 2016-02-02 15:51:52 +0100 | [diff] [blame] | 834 | /* WRITE LOCK */ |
| 835 | pthread_rwlock_wrlock(&server_opts.endpt_array_lock); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 836 | |
| 837 | /* check name uniqueness */ |
| 838 | for (i = 0; i < server_opts.endpt_count; ++i) { |
Michal Vasko | d4c03a8 | 2016-02-08 15:27:26 +0100 | [diff] [blame] | 839 | 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] | 840 | ERR("Endpoint \"%s\" already exists.", name); |
Michal Vasko | 51e514d | 2016-02-02 15:51:52 +0100 | [diff] [blame] | 841 | /* WRITE UNLOCK */ |
Michal Vasko | 9faf1c8 | 2016-02-01 13:26:19 +0100 | [diff] [blame] | 842 | pthread_rwlock_unlock(&server_opts.endpt_array_lock); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 843 | return -1; |
| 844 | } |
| 845 | } |
| 846 | |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 847 | sock = nc_sock_listen(address, port); |
| 848 | if (sock == -1) { |
Michal Vasko | 51e514d | 2016-02-02 15:51:52 +0100 | [diff] [blame] | 849 | /* WRITE UNLOCK */ |
| 850 | pthread_rwlock_unlock(&server_opts.endpt_array_lock); |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 851 | return -1; |
| 852 | } |
| 853 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 854 | ++server_opts.endpt_count; |
| 855 | server_opts.binds = realloc(server_opts.binds, server_opts.endpt_count * sizeof *server_opts.binds); |
| 856 | 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] | 857 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 858 | server_opts.endpts[server_opts.endpt_count - 1].name = lydict_insert(server_opts.ctx, name, 0); |
| 859 | 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] | 860 | server_opts.binds[server_opts.endpt_count - 1].port = port; |
| 861 | server_opts.binds[server_opts.endpt_count - 1].sock = sock; |
| 862 | server_opts.binds[server_opts.endpt_count - 1].ti = ti; |
| 863 | switch (ti) { |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 864 | #ifdef NC_ENABLED_SSH |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 865 | case NC_TI_LIBSSH: |
Michal Vasko | 08a629a | 2016-02-02 12:20:47 +0100 | [diff] [blame] | 866 | ssh_opts = calloc(1, sizeof *ssh_opts); |
| 867 | /* set default values */ |
| 868 | ssh_opts->auth_methods = NC_SSH_AUTH_PUBLICKEY | NC_SSH_AUTH_PASSWORD | NC_SSH_AUTH_INTERACTIVE; |
| 869 | ssh_opts->auth_attempts = 3; |
| 870 | ssh_opts->auth_timeout = 10; |
| 871 | |
| 872 | server_opts.endpts[server_opts.endpt_count - 1].ti_opts = ssh_opts; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 873 | break; |
| 874 | #endif |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 875 | #ifdef NC_ENABLED_TLS |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 876 | case NC_TI_OPENSSL: |
| 877 | server_opts.endpts[server_opts.endpt_count - 1].ti_opts = calloc(1, sizeof(struct nc_server_tls_opts)); |
| 878 | break; |
| 879 | #endif |
| 880 | default: |
| 881 | ERRINT; |
| 882 | server_opts.endpts[server_opts.endpt_count - 1].ti_opts = NULL; |
| 883 | break; |
| 884 | } |
| 885 | 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] | 886 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 887 | /* WRITE UNLOCK */ |
| 888 | pthread_rwlock_unlock(&server_opts.endpt_array_lock); |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 889 | |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 890 | return 0; |
| 891 | } |
| 892 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 893 | int |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 894 | nc_server_endpt_set_address_port(const char *endpt_name, const char *address, uint16_t port, NC_TRANSPORT_IMPL ti) |
| 895 | { |
| 896 | struct nc_endpt *endpt; |
| 897 | struct nc_bind *bind = NULL; |
| 898 | uint16_t i; |
| 899 | int sock; |
| 900 | |
| 901 | if (!endpt_name || (!address && !port) || (address && port) || !ti) { |
| 902 | ERRARG; |
| 903 | return -1; |
| 904 | } |
| 905 | |
Michal Vasko | 51e514d | 2016-02-02 15:51:52 +0100 | [diff] [blame] | 906 | /* LOCK */ |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 907 | endpt = nc_server_endpt_lock(endpt_name, ti); |
| 908 | if (!endpt) { |
| 909 | return -1; |
| 910 | } |
| 911 | |
| 912 | /* we need to learn the index, to get the bind :-/ */ |
| 913 | for (i = 0; i < server_opts.endpt_count; ++i) { |
| 914 | if (&server_opts.endpts[i] == endpt) { |
| 915 | bind = &server_opts.binds[i]; |
| 916 | } |
| 917 | } |
| 918 | if (!bind) { |
| 919 | ERRINT; |
Michal Vasko | 51e514d | 2016-02-02 15:51:52 +0100 | [diff] [blame] | 920 | goto fail; |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 921 | } |
| 922 | |
| 923 | if (address) { |
| 924 | sock = nc_sock_listen(address, bind->port); |
| 925 | } else { |
| 926 | sock = nc_sock_listen(bind->address, port); |
| 927 | } |
| 928 | if (sock == -1) { |
Michal Vasko | 51e514d | 2016-02-02 15:51:52 +0100 | [diff] [blame] | 929 | goto fail; |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 930 | } |
| 931 | |
| 932 | /* close old socket, update parameters */ |
| 933 | close(bind->sock); |
| 934 | bind->sock = sock; |
| 935 | if (address) { |
| 936 | lydict_remove(server_opts.ctx, bind->address); |
| 937 | bind->address = lydict_insert(server_opts.ctx, address, 0); |
| 938 | } else { |
| 939 | bind->port = port; |
| 940 | } |
| 941 | |
Michal Vasko | 51e514d | 2016-02-02 15:51:52 +0100 | [diff] [blame] | 942 | /* UNLOCK */ |
Michal Vasko | 7a93af7 | 2016-02-01 16:00:15 +0100 | [diff] [blame] | 943 | nc_server_endpt_unlock(endpt); |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 944 | return 0; |
Michal Vasko | 51e514d | 2016-02-02 15:51:52 +0100 | [diff] [blame] | 945 | |
| 946 | fail: |
| 947 | /* UNLOCK */ |
| 948 | nc_server_endpt_unlock(endpt); |
| 949 | return -1; |
Michal Vasko | da51477 | 2016-02-01 11:32:01 +0100 | [diff] [blame] | 950 | } |
| 951 | |
| 952 | int |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 953 | nc_server_del_endpt(const char *name, NC_TRANSPORT_IMPL ti) |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 954 | { |
| 955 | uint32_t i; |
| 956 | int ret = -1; |
| 957 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 958 | /* WRITE LOCK */ |
| 959 | pthread_rwlock_wrlock(&server_opts.endpt_array_lock); |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 960 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 961 | if (!name && !ti) { |
| 962 | /* remove all */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 963 | for (i = 0; i < server_opts.endpt_count; ++i) { |
| 964 | lydict_remove(server_opts.ctx, server_opts.endpts[i].name); |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 965 | lydict_remove(server_opts.ctx, server_opts.binds[i].address); |
Michal Vasko | 51e514d | 2016-02-02 15:51:52 +0100 | [diff] [blame] | 966 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 967 | close(server_opts.binds[i].sock); |
| 968 | pthread_mutex_destroy(&server_opts.endpts[i].endpt_lock); |
| 969 | switch (server_opts.binds[i].ti) { |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 970 | #ifdef NC_ENABLED_SSH |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 971 | case NC_TI_LIBSSH: |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 972 | nc_server_ssh_clear_opts(server_opts.endpts[i].ti_opts); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 973 | break; |
| 974 | #endif |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 975 | #ifdef NC_ENABLED_TLS |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 976 | case NC_TI_OPENSSL: |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 977 | nc_server_tls_clear_opts(server_opts.endpts[i].ti_opts); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 978 | break; |
| 979 | #endif |
| 980 | default: |
| 981 | ERRINT; |
| 982 | break; |
| 983 | } |
| 984 | free(server_opts.endpts[i].ti_opts); |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 985 | |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 986 | ret = 0; |
| 987 | } |
Michal Vasko | 7ddc570 | 2016-02-08 15:29:39 +0100 | [diff] [blame] | 988 | free(server_opts.binds); |
| 989 | server_opts.binds = NULL; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 990 | free(server_opts.endpts); |
| 991 | server_opts.endpts = NULL; |
| 992 | server_opts.endpt_count = 0; |
| 993 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 994 | } else { |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 995 | /* remove one name endpoint or all ti endpoints */ |
| 996 | for (i = 0; i < server_opts.endpt_count; ++i) { |
| 997 | if ((server_opts.binds[i].ti == ti) && |
| 998 | (!name || !strcmp(server_opts.endpts[i].name, name))) { |
| 999 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1000 | lydict_remove(server_opts.ctx, server_opts.endpts[i].name); |
Michal Vasko | 11d142a | 2016-01-19 15:58:24 +0100 | [diff] [blame] | 1001 | lydict_remove(server_opts.ctx, server_opts.binds[i].address); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1002 | close(server_opts.binds[i].sock); |
| 1003 | pthread_mutex_destroy(&server_opts.endpts[i].endpt_lock); |
| 1004 | switch (server_opts.binds[i].ti) { |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 1005 | #ifdef NC_ENABLED_SSH |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1006 | case NC_TI_LIBSSH: |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 1007 | nc_server_ssh_clear_opts(server_opts.endpts[i].ti_opts); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1008 | break; |
| 1009 | #endif |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 1010 | #ifdef NC_ENABLED_TLS |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1011 | case NC_TI_OPENSSL: |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 1012 | nc_server_tls_clear_opts(server_opts.endpts[i].ti_opts); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1013 | break; |
| 1014 | #endif |
| 1015 | default: |
| 1016 | ERRINT; |
| 1017 | break; |
| 1018 | } |
| 1019 | free(server_opts.endpts[i].ti_opts); |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1020 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1021 | --server_opts.endpt_count; |
Michal Vasko | c025649 | 2016-02-02 12:19:06 +0100 | [diff] [blame] | 1022 | if (i < server_opts.endpt_count) { |
| 1023 | memcpy(&server_opts.binds[i], &server_opts.binds[server_opts.endpt_count], sizeof *server_opts.binds); |
| 1024 | memcpy(&server_opts.endpts[i], &server_opts.endpts[server_opts.endpt_count], sizeof *server_opts.endpts); |
| 1025 | } else if (!server_opts.endpt_count) { |
| 1026 | free(server_opts.binds); |
| 1027 | server_opts.binds = NULL; |
| 1028 | free(server_opts.endpts); |
| 1029 | server_opts.endpts = NULL; |
| 1030 | } |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1031 | |
| 1032 | ret = 0; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1033 | |
| 1034 | if (name) { |
| 1035 | /* one name endpoint removed, they are unique, we're done */ |
| 1036 | break; |
| 1037 | } |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1038 | } |
| 1039 | } |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1040 | } |
| 1041 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1042 | /* WRITE UNLOCK */ |
| 1043 | pthread_rwlock_unlock(&server_opts.endpt_array_lock); |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 1044 | |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1045 | return ret; |
| 1046 | } |
| 1047 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1048 | API int |
| 1049 | nc_accept(int timeout, struct nc_session **session) |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1050 | { |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1051 | int sock, ret; |
Michal Vasko | 5c2f795 | 2016-01-22 13:16:31 +0100 | [diff] [blame] | 1052 | char *host = NULL; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1053 | uint16_t port, idx; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1054 | |
Michal Vasko | 51e514d | 2016-02-02 15:51:52 +0100 | [diff] [blame] | 1055 | if (!server_opts.ctx || !session) { |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1056 | ERRARG; |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1057 | return -1; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1058 | } |
| 1059 | |
Michal Vasko | 51e514d | 2016-02-02 15:51:52 +0100 | [diff] [blame] | 1060 | /* we have to hold WRITE for the whole time, since there is not |
| 1061 | * a way of downgrading the lock to READ */ |
| 1062 | /* WRITE LOCK */ |
| 1063 | pthread_rwlock_wrlock(&server_opts.endpt_array_lock); |
| 1064 | |
| 1065 | if (!server_opts.endpt_count) { |
| 1066 | ERRARG; |
| 1067 | /* WRITE UNLOCK */ |
| 1068 | pthread_rwlock_unlock(&server_opts.endpt_array_lock); |
| 1069 | return -1; |
| 1070 | } |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 1071 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1072 | 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] | 1073 | |
Michal Vasko | 50456e8 | 2016-02-02 12:16:08 +0100 | [diff] [blame] | 1074 | if (ret < 1) { |
Michal Vasko | 51e514d | 2016-02-02 15:51:52 +0100 | [diff] [blame] | 1075 | /* WRITE UNLOCK */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1076 | pthread_rwlock_unlock(&server_opts.endpt_array_lock); |
Michal Vasko | b737d75 | 2016-02-09 09:01:27 +0100 | [diff] [blame] | 1077 | free(host); |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 1078 | return ret; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1079 | } |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 1080 | sock = ret; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1081 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1082 | *session = calloc(1, sizeof **session); |
Michal Vasko | 686aa31 | 2016-01-21 15:58:18 +0100 | [diff] [blame] | 1083 | if (!(*session)) { |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1084 | ERRMEM; |
Michal Vasko | c14e3c8 | 2016-01-11 16:14:30 +0100 | [diff] [blame] | 1085 | close(sock); |
Michal Vasko | 5c2f795 | 2016-01-22 13:16:31 +0100 | [diff] [blame] | 1086 | free(host); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1087 | ret = -1; |
| 1088 | goto fail; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1089 | } |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1090 | (*session)->status = NC_STATUS_STARTING; |
| 1091 | (*session)->side = NC_SERVER; |
| 1092 | (*session)->ctx = server_opts.ctx; |
| 1093 | (*session)->flags = NC_SESSION_SHAREDCTX; |
| 1094 | (*session)->host = lydict_insert_zc(server_opts.ctx, host); |
| 1095 | (*session)->port = port; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1096 | |
| 1097 | /* transport lock */ |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1098 | (*session)->ti_lock = malloc(sizeof *(*session)->ti_lock); |
| 1099 | if (!(*session)->ti_lock) { |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1100 | ERRMEM; |
Michal Vasko | c14e3c8 | 2016-01-11 16:14:30 +0100 | [diff] [blame] | 1101 | close(sock); |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1102 | ret = -1; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1103 | goto fail; |
| 1104 | } |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1105 | pthread_mutex_init((*session)->ti_lock, NULL); |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1106 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1107 | (*session)->ti_opts = server_opts.endpts[idx].ti_opts; |
| 1108 | |
Michal Vasko | c14e3c8 | 2016-01-11 16:14:30 +0100 | [diff] [blame] | 1109 | /* sock gets assigned to session or closed */ |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 1110 | #ifdef NC_ENABLED_SSH |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1111 | if (server_opts.binds[idx].ti == NC_TI_LIBSSH) { |
Michal Vasko | 8f5270d | 2016-02-29 16:22:25 +0100 | [diff] [blame] | 1112 | ret = nc_accept_ssh_session(*session, sock); |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1113 | if (ret < 1) { |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1114 | goto fail; |
| 1115 | } |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 1116 | } else |
| 1117 | #endif |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 1118 | #ifdef NC_ENABLED_TLS |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 1119 | if (server_opts.binds[idx].ti == NC_TI_OPENSSL) { |
Michal Vasko | 8f5270d | 2016-02-29 16:22:25 +0100 | [diff] [blame] | 1120 | ret = nc_accept_tls_session(*session, sock); |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1121 | if (ret < 1) { |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1122 | goto fail; |
| 1123 | } |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 1124 | } else |
| 1125 | #endif |
| 1126 | { |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1127 | ERRINT; |
Michal Vasko | c14e3c8 | 2016-01-11 16:14:30 +0100 | [diff] [blame] | 1128 | close(sock); |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1129 | ret = -1; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1130 | goto fail; |
| 1131 | } |
| 1132 | |
Michal Vasko | 51e514d | 2016-02-02 15:51:52 +0100 | [diff] [blame] | 1133 | /* WRITE UNLOCK */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1134 | pthread_rwlock_unlock(&server_opts.endpt_array_lock); |
| 1135 | |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 1136 | /* assign new SID atomically */ |
| 1137 | /* LOCK */ |
| 1138 | pthread_spin_lock(&server_opts.sid_lock); |
| 1139 | (*session)->id = server_opts.new_session_id++; |
| 1140 | /* UNLOCK */ |
| 1141 | pthread_spin_unlock(&server_opts.sid_lock); |
| 1142 | |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1143 | /* NETCONF handshake */ |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1144 | if (nc_handshake(*session)) { |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1145 | nc_session_free(*session); |
| 1146 | *session = NULL; |
| 1147 | return -1; |
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 | (*session)->status = NC_STATUS_RUNNING; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1150 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1151 | return 1; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1152 | |
| 1153 | fail: |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1154 | /* WRITE UNLOCK */ |
| 1155 | pthread_rwlock_unlock(&server_opts.endpt_array_lock); |
| 1156 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 1157 | nc_session_free(*session); |
| 1158 | *session = NULL; |
Michal Vasko | c61c449 | 2016-01-25 11:13:34 +0100 | [diff] [blame] | 1159 | return ret; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 1160 | } |
| 1161 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1162 | int |
Michal Vasko | 8f5270d | 2016-02-29 16:22:25 +0100 | [diff] [blame] | 1163 | nc_connect_callhome(const char *host, uint16_t port, NC_TRANSPORT_IMPL ti, struct nc_session **session) |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 1164 | { |
| 1165 | int sock, ret; |
| 1166 | |
Michal Vasko | c61c449 | 2016-01-25 11:13:34 +0100 | [diff] [blame] | 1167 | if (!host || !port || !ti || !session) { |
| 1168 | ERRARG; |
| 1169 | return -1; |
| 1170 | } |
| 1171 | |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 1172 | sock = nc_sock_connect(host, port); |
Michal Vasko | c61c449 | 2016-01-25 11:13:34 +0100 | [diff] [blame] | 1173 | if (sock < 0) { |
| 1174 | return -1; |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 1175 | } |
| 1176 | |
| 1177 | *session = calloc(1, sizeof **session); |
| 1178 | if (!(*session)) { |
| 1179 | ERRMEM; |
| 1180 | close(sock); |
| 1181 | return -1; |
| 1182 | } |
| 1183 | (*session)->status = NC_STATUS_STARTING; |
| 1184 | (*session)->side = NC_SERVER; |
| 1185 | (*session)->ctx = server_opts.ctx; |
| 1186 | (*session)->flags = NC_SESSION_SHAREDCTX | NC_SESSION_CALLHOME; |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 1187 | (*session)->host = lydict_insert(server_opts.ctx, host, 0); |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 1188 | (*session)->port = port; |
| 1189 | |
| 1190 | /* transport lock */ |
| 1191 | (*session)->ti_lock = malloc(sizeof *(*session)->ti_lock); |
| 1192 | if (!(*session)->ti_lock) { |
| 1193 | ERRMEM; |
| 1194 | close(sock); |
| 1195 | ret = -1; |
| 1196 | goto fail; |
| 1197 | } |
| 1198 | pthread_mutex_init((*session)->ti_lock, NULL); |
| 1199 | |
| 1200 | /* sock gets assigned to session or closed */ |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 1201 | #ifdef NC_ENABLED_SSH |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 1202 | if (ti == NC_TI_LIBSSH) { |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 1203 | /* OPTS LOCK */ |
| 1204 | pthread_mutex_lock(&ssh_ch_opts_lock); |
| 1205 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1206 | (*session)->ti_opts = &ssh_ch_opts; |
Michal Vasko | 8f5270d | 2016-02-29 16:22:25 +0100 | [diff] [blame] | 1207 | ret = nc_accept_ssh_session(*session, sock); |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 1208 | (*session)->ti_opts = NULL; |
| 1209 | |
| 1210 | /* OPTS UNLOCK */ |
| 1211 | pthread_mutex_unlock(&ssh_ch_opts_lock); |
| 1212 | |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 1213 | if (ret < 1) { |
| 1214 | goto fail; |
| 1215 | } |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 1216 | } else |
| 1217 | #endif |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 1218 | #ifdef NC_ENABLED_TLS |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 1219 | if (ti == NC_TI_OPENSSL) { |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 1220 | /* OPTS LOCK */ |
| 1221 | pthread_mutex_lock(&tls_ch_opts_lock); |
| 1222 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 1223 | (*session)->ti_opts = &tls_ch_opts; |
Michal Vasko | 8f5270d | 2016-02-29 16:22:25 +0100 | [diff] [blame] | 1224 | ret = nc_accept_tls_session(*session, sock); |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 1225 | (*session)->ti_opts = NULL; |
| 1226 | |
| 1227 | /* OPTS UNLOCK */ |
| 1228 | pthread_mutex_unlock(&tls_ch_opts_lock); |
| 1229 | |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 1230 | if (ret < 1) { |
| 1231 | goto fail; |
| 1232 | } |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 1233 | } else |
| 1234 | #endif |
| 1235 | { |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 1236 | ERRINT; |
| 1237 | close(sock); |
| 1238 | ret = -1; |
| 1239 | goto fail; |
| 1240 | } |
| 1241 | |
| 1242 | /* assign new SID atomically */ |
| 1243 | /* LOCK */ |
| 1244 | pthread_spin_lock(&server_opts.sid_lock); |
| 1245 | (*session)->id = server_opts.new_session_id++; |
| 1246 | /* UNLOCK */ |
| 1247 | pthread_spin_unlock(&server_opts.sid_lock); |
| 1248 | |
| 1249 | /* NETCONF handshake */ |
| 1250 | if (nc_handshake(*session)) { |
| 1251 | ret = -1; |
| 1252 | goto fail; |
| 1253 | } |
| 1254 | (*session)->status = NC_STATUS_RUNNING; |
| 1255 | |
| 1256 | return 1; |
| 1257 | |
| 1258 | fail: |
| 1259 | nc_session_free(*session); |
| 1260 | *session = NULL; |
Michal Vasko | c61c449 | 2016-01-25 11:13:34 +0100 | [diff] [blame] | 1261 | return ret; |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 1262 | } |
| 1263 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 1264 | #endif /* NC_ENABLED_SSH || NC_ENABLED_TLS */ |