Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 1 | /** |
Michal Vasko | 95ea9ff | 2021-11-09 12:29:14 +0100 | [diff] [blame] | 2 | * @file session_server.c |
| 3 | * @author Michal Vasko <mvasko@cesnet.cz> |
| 4 | * @brief libnetconf2 server session manipulation functions |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 5 | * |
Michal Vasko | 95ea9ff | 2021-11-09 12:29:14 +0100 | [diff] [blame] | 6 | * @copyright |
| 7 | * Copyright (c) 2015 - 2021 CESNET, z.s.p.o. |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 8 | * |
Radek Krejci | 9b81f5b | 2016-02-24 13:14:49 +0100 | [diff] [blame] | 9 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 10 | * You may not use this file except in compliance with the License. |
| 11 | * You may obtain a copy of the License at |
Michal Vasko | afd416b | 2016-02-25 14:51:46 +0100 | [diff] [blame] | 12 | * |
Radek Krejci | 9b81f5b | 2016-02-24 13:14:49 +0100 | [diff] [blame] | 13 | * https://opensource.org/licenses/BSD-3-Clause |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 14 | */ |
apropp-molex | 4e903c3 | 2020-04-20 03:06:58 -0400 | [diff] [blame] | 15 | #define _QNX_SOURCE /* getpeereid */ |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame] | 16 | #define _GNU_SOURCE /* signals, threads, SO_PEERCRED */ |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 17 | |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 18 | #include <arpa/inet.h> |
Michal Vasko | 77e8357 | 2022-07-21 15:31:15 +0200 | [diff] [blame] | 19 | #include <assert.h> |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 20 | #include <errno.h> |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 21 | #include <fcntl.h> |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame] | 22 | #include <netinet/in.h> |
| 23 | #include <netinet/tcp.h> |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 24 | #include <poll.h> |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 25 | #include <pthread.h> |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame] | 26 | #include <pwd.h> |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 27 | #include <signal.h> |
| 28 | #include <stdint.h> |
| 29 | #include <stdlib.h> |
| 30 | #include <string.h> |
| 31 | #include <sys/socket.h> |
| 32 | #include <sys/types.h> |
| 33 | #include <sys/un.h> |
| 34 | #include <time.h> |
| 35 | #include <unistd.h> |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 36 | |
Michal Vasko | 7a20d2e | 2021-05-19 16:40:23 +0200 | [diff] [blame] | 37 | #include "compat.h" |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 38 | #include "libnetconf.h" |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 39 | #include "session_server.h" |
Michal Vasko | 0bdf70b | 2019-06-24 19:20:20 +0200 | [diff] [blame] | 40 | #include "session_server_ch.h" |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 41 | |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 42 | struct nc_server_opts server_opts = { |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 43 | #ifdef NC_ENABLED_SSH |
| 44 | .authkey_lock = PTHREAD_MUTEX_INITIALIZER, |
| 45 | #endif |
| 46 | .bind_lock = PTHREAD_MUTEX_INITIALIZER, |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 47 | .endpt_lock = PTHREAD_RWLOCK_INITIALIZER, |
| 48 | .ch_client_lock = PTHREAD_RWLOCK_INITIALIZER |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 49 | }; |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 50 | |
fanchanghu | 966f2de | 2016-07-21 02:28:57 -0400 | [diff] [blame] | 51 | static nc_rpc_clb global_rpc_clb = NULL; |
| 52 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 53 | struct nc_endpt * |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 54 | nc_server_endpt_lock_get(const char *name, NC_TRANSPORT_IMPL ti, uint16_t *idx) |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 55 | { |
| 56 | uint16_t i; |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 57 | struct nc_endpt *endpt = NULL; |
| 58 | |
Michal Vasko | ddce121 | 2019-05-24 09:58:49 +0200 | [diff] [blame] | 59 | if (!name) { |
| 60 | ERRARG("endpt_name"); |
| 61 | return NULL; |
| 62 | } |
| 63 | |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 64 | /* WRITE LOCK */ |
| 65 | pthread_rwlock_wrlock(&server_opts.endpt_lock); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 66 | |
| 67 | for (i = 0; i < server_opts.endpt_count; ++i) { |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 68 | if (!strcmp(server_opts.endpts[i].name, name) && (!ti || (server_opts.endpts[i].ti == ti))) { |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 69 | endpt = &server_opts.endpts[i]; |
| 70 | break; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 71 | } |
| 72 | } |
| 73 | |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 74 | if (!endpt) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 75 | ERR(NULL, "Endpoint \"%s\" was not found.", name); |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 76 | /* UNLOCK */ |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 77 | pthread_rwlock_unlock(&server_opts.endpt_lock); |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 78 | return NULL; |
| 79 | } |
| 80 | |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 81 | if (idx) { |
| 82 | *idx = i; |
| 83 | } |
| 84 | |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 85 | return endpt; |
| 86 | } |
| 87 | |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 88 | struct nc_ch_endpt * |
| 89 | nc_server_ch_client_lock(const char *name, const char *endpt_name, NC_TRANSPORT_IMPL ti, struct nc_ch_client **client_p) |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 90 | { |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 91 | uint16_t i, j; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 92 | struct nc_ch_client *client = NULL; |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 93 | struct nc_ch_endpt *endpt = NULL; |
| 94 | |
| 95 | *client_p = NULL; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 96 | |
Michal Vasko | ddce121 | 2019-05-24 09:58:49 +0200 | [diff] [blame] | 97 | if (!name) { |
| 98 | ERRARG("client_name"); |
| 99 | return NULL; |
| 100 | } |
| 101 | |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 102 | /* READ LOCK */ |
| 103 | pthread_rwlock_rdlock(&server_opts.ch_client_lock); |
| 104 | |
| 105 | for (i = 0; i < server_opts.ch_client_count; ++i) { |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 106 | if (!strcmp(server_opts.ch_clients[i].name, name)) { |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 107 | client = &server_opts.ch_clients[i]; |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 108 | if (!endpt_name && !ti) { |
| 109 | /* return only client */ |
| 110 | break; |
| 111 | } |
| 112 | for (j = 0; j < client->ch_endpt_count; ++j) { |
Michal Vasko | 530d95c | 2021-05-28 13:32:02 +0200 | [diff] [blame] | 113 | if ((!endpt_name || !strcmp(client->ch_endpts[j].name, endpt_name)) && |
| 114 | (!ti || (ti == client->ch_endpts[j].ti))) { |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 115 | endpt = &client->ch_endpts[j]; |
| 116 | break; |
| 117 | } |
| 118 | } |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 119 | break; |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | if (!client) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 124 | ERR(NULL, "Call Home client \"%s\" was not found.", name); |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 125 | |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 126 | /* READ UNLOCK */ |
| 127 | pthread_rwlock_unlock(&server_opts.ch_client_lock); |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 128 | } else if (endpt_name && ti && !endpt) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 129 | ERR(NULL, "Call Home client \"%s\" endpoint \"%s\" was not found.", name, endpt_name); |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 130 | |
| 131 | /* READ UNLOCK */ |
| 132 | pthread_rwlock_unlock(&server_opts.ch_client_lock); |
| 133 | } else { |
| 134 | /* CH CLIENT LOCK */ |
| 135 | pthread_mutex_lock(&client->lock); |
| 136 | |
| 137 | *client_p = client; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 138 | } |
| 139 | |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 140 | return endpt; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | void |
| 144 | nc_server_ch_client_unlock(struct nc_ch_client *client) |
| 145 | { |
| 146 | /* CH CLIENT UNLOCK */ |
| 147 | pthread_mutex_unlock(&client->lock); |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 148 | |
| 149 | /* READ UNLOCK */ |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 150 | pthread_rwlock_unlock(&server_opts.ch_client_lock); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 151 | } |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 152 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 153 | API void |
| 154 | nc_session_set_term_reason(struct nc_session *session, NC_SESSION_TERM_REASON reason) |
| 155 | { |
Michal Vasko | 45e53ae | 2016-04-07 11:46:03 +0200 | [diff] [blame] | 156 | if (!session) { |
| 157 | ERRARG("session"); |
| 158 | return; |
| 159 | } else if (!reason) { |
| 160 | ERRARG("reason"); |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 161 | return; |
| 162 | } |
| 163 | |
Michal Vasko | 142cfea | 2017-08-07 10:12:11 +0200 | [diff] [blame] | 164 | if ((reason != NC_SESSION_TERM_KILLED) && (session->term_reason == NC_SESSION_TERM_KILLED)) { |
| 165 | session->killed_by = 0; |
| 166 | } |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 167 | session->term_reason = reason; |
| 168 | } |
| 169 | |
Michal Vasko | 142cfea | 2017-08-07 10:12:11 +0200 | [diff] [blame] | 170 | API void |
| 171 | nc_session_set_killed_by(struct nc_session *session, uint32_t sid) |
| 172 | { |
| 173 | if (!session || (session->term_reason != NC_SESSION_TERM_KILLED)) { |
| 174 | ERRARG("session"); |
| 175 | return; |
| 176 | } else if (!sid) { |
| 177 | ERRARG("sid"); |
| 178 | return; |
| 179 | } |
| 180 | |
| 181 | session->killed_by = sid; |
| 182 | } |
| 183 | |
| 184 | API void |
| 185 | nc_session_set_status(struct nc_session *session, NC_STATUS status) |
| 186 | { |
| 187 | if (!session) { |
| 188 | ERRARG("session"); |
| 189 | return; |
| 190 | } else if (!status) { |
| 191 | ERRARG("status"); |
| 192 | return; |
| 193 | } |
| 194 | |
| 195 | session->status = status; |
| 196 | } |
| 197 | |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 198 | int |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 199 | nc_sock_listen_inet(const char *address, uint16_t port, struct nc_keepalives *ka) |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 200 | { |
Michal Vasko | 06c860d | 2018-07-09 16:08:52 +0200 | [diff] [blame] | 201 | int opt; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 202 | int is_ipv4, sock; |
| 203 | struct sockaddr_storage saddr; |
| 204 | |
| 205 | struct sockaddr_in *saddr4; |
| 206 | struct sockaddr_in6 *saddr6; |
| 207 | |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 208 | if (!strchr(address, ':')) { |
| 209 | is_ipv4 = 1; |
| 210 | } else { |
| 211 | is_ipv4 = 0; |
| 212 | } |
| 213 | |
| 214 | sock = socket((is_ipv4 ? AF_INET : AF_INET6), SOCK_STREAM, 0); |
| 215 | if (sock == -1) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 216 | ERR(NULL, "Failed to create socket (%s).", strerror(errno)); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 217 | goto fail; |
| 218 | } |
| 219 | |
Michal Vasko | be52dc2 | 2018-10-17 09:28:17 +0200 | [diff] [blame] | 220 | /* these options will be inherited by accepted sockets */ |
Michal Vasko | 06c860d | 2018-07-09 16:08:52 +0200 | [diff] [blame] | 221 | opt = 1; |
| 222 | if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof opt) == -1) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 223 | ERR(NULL, "Could not set SO_REUSEADDR socket option (%s).", strerror(errno)); |
Michal Vasko | 06c860d | 2018-07-09 16:08:52 +0200 | [diff] [blame] | 224 | goto fail; |
| 225 | } |
Michal Vasko | 83ad17e | 2019-01-30 10:11:37 +0100 | [diff] [blame] | 226 | if (setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, &opt, sizeof opt) == -1) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 227 | ERR(NULL, "Could not set TCP_NODELAY socket option (%s).", strerror(errno)); |
Michal Vasko | 83ad17e | 2019-01-30 10:11:37 +0100 | [diff] [blame] | 228 | goto fail; |
| 229 | } |
Michal Vasko | be52dc2 | 2018-10-17 09:28:17 +0200 | [diff] [blame] | 230 | |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 231 | if (nc_sock_enable_keepalive(sock, ka)) { |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 232 | goto fail; |
| 233 | } |
| 234 | |
Michal Vasko | f22d5ff | 2020-04-15 11:10:27 +0200 | [diff] [blame] | 235 | memset(&saddr, 0, sizeof(struct sockaddr_storage)); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 236 | if (is_ipv4) { |
| 237 | saddr4 = (struct sockaddr_in *)&saddr; |
| 238 | |
| 239 | saddr4->sin_family = AF_INET; |
| 240 | saddr4->sin_port = htons(port); |
| 241 | |
| 242 | if (inet_pton(AF_INET, address, &saddr4->sin_addr) != 1) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 243 | ERR(NULL, "Failed to convert IPv4 address \"%s\".", address); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 244 | goto fail; |
| 245 | } |
| 246 | |
| 247 | if (bind(sock, (struct sockaddr *)saddr4, sizeof(struct sockaddr_in)) == -1) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 248 | ERR(NULL, "Could not bind \"%s\" port %d (%s).", address, port, strerror(errno)); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 249 | goto fail; |
| 250 | } |
| 251 | |
| 252 | } else { |
| 253 | saddr6 = (struct sockaddr_in6 *)&saddr; |
| 254 | |
| 255 | saddr6->sin6_family = AF_INET6; |
| 256 | saddr6->sin6_port = htons(port); |
| 257 | |
| 258 | if (inet_pton(AF_INET6, address, &saddr6->sin6_addr) != 1) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 259 | ERR(NULL, "Failed to convert IPv6 address \"%s\".", address); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 260 | goto fail; |
| 261 | } |
| 262 | |
| 263 | if (bind(sock, (struct sockaddr *)saddr6, sizeof(struct sockaddr_in6)) == -1) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 264 | ERR(NULL, "Could not bind \"%s\" port %d (%s).", address, port, strerror(errno)); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 265 | goto fail; |
| 266 | } |
| 267 | } |
| 268 | |
Michal Vasko | fb89d77 | 2016-01-08 12:25:35 +0100 | [diff] [blame] | 269 | if (listen(sock, NC_REVERSE_QUEUE) == -1) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 270 | ERR(NULL, "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] | 271 | goto fail; |
| 272 | } |
| 273 | |
| 274 | return sock; |
| 275 | |
| 276 | fail: |
| 277 | if (sock > -1) { |
| 278 | close(sock); |
| 279 | } |
| 280 | |
| 281 | return -1; |
| 282 | } |
| 283 | |
| 284 | int |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame] | 285 | nc_sock_listen_unix(const char *address, const struct nc_server_unix_opts *opts) |
| 286 | { |
| 287 | struct sockaddr_un sun; |
| 288 | int sock = -1; |
| 289 | |
Michal Vasko | 93e96f1 | 2021-09-30 10:02:09 +0200 | [diff] [blame] | 290 | if (strlen(address) > sizeof(sun.sun_path) - 1) { |
| 291 | ERR(NULL, "Socket path \"%s\" is longer than maximum length %d.", address, (int)(sizeof(sun.sun_path) - 1)); |
| 292 | goto fail; |
| 293 | } |
| 294 | |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame] | 295 | sock = socket(AF_UNIX, SOCK_STREAM, 0); |
| 296 | if (sock == -1) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 297 | ERR(NULL, "Failed to create socket (%s).", strerror(errno)); |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame] | 298 | goto fail; |
| 299 | } |
| 300 | |
| 301 | memset(&sun, 0, sizeof(sun)); |
| 302 | sun.sun_family = AF_UNIX; |
Michal Vasko | 93e96f1 | 2021-09-30 10:02:09 +0200 | [diff] [blame] | 303 | snprintf(sun.sun_path, sizeof(sun.sun_path) - 1, "%s", address); |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame] | 304 | |
| 305 | unlink(sun.sun_path); |
| 306 | if (bind(sock, (struct sockaddr *)&sun, sizeof(sun)) == -1) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 307 | ERR(NULL, "Could not bind \"%s\" (%s).", address, strerror(errno)); |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame] | 308 | goto fail; |
| 309 | } |
| 310 | |
| 311 | if (opts->mode != (mode_t)-1) { |
| 312 | if (chmod(sun.sun_path, opts->mode) < 0) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 313 | ERR(NULL, "Failed to set unix socket permissions (%s).", strerror(errno)); |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame] | 314 | goto fail; |
| 315 | } |
| 316 | } |
| 317 | |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 318 | if ((opts->uid != (uid_t)-1) || (opts->gid != (gid_t)-1)) { |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame] | 319 | if (chown(sun.sun_path, opts->uid, opts->gid) < 0) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 320 | ERR(NULL, "Failed to set unix socket uid/gid (%s).", strerror(errno)); |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame] | 321 | goto fail; |
| 322 | } |
| 323 | } |
| 324 | |
| 325 | if (listen(sock, NC_REVERSE_QUEUE) == -1) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 326 | ERR(NULL, "Unable to start listening on \"%s\" (%s).", address, strerror(errno)); |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame] | 327 | goto fail; |
| 328 | } |
| 329 | |
| 330 | return sock; |
| 331 | |
| 332 | fail: |
| 333 | if (sock > -1) { |
| 334 | close(sock); |
| 335 | } |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame] | 336 | return -1; |
| 337 | } |
| 338 | |
aPiecek | 90ff024 | 2021-02-14 14:58:01 +0100 | [diff] [blame] | 339 | /** |
| 340 | * @brief Evaluate socket name for AF_UNIX socket. |
| 341 | * @param[in] acc_sock_fd is file descriptor for the accepted socket (a nonnegative). |
| 342 | * @param[out] host is pointer to char* to which the socket name will be set. It must not be NULL. |
| 343 | * @return 0 in case of success. Call free function for parameter host to avoid a memory leak. |
| 344 | * @return 0 if the stream socket is unnamed. Parameter host is set to NULL. |
| 345 | * @return -1 in case of error. Parameter host is set to NULL. |
| 346 | */ |
| 347 | static int |
| 348 | sock_host_unix(int acc_sock_fd, char **host) |
| 349 | { |
| 350 | char *sun_path; |
| 351 | struct sockaddr_storage saddr; |
| 352 | socklen_t addr_len; |
| 353 | |
| 354 | *host = NULL; |
| 355 | saddr.ss_family = AF_UNIX; |
| 356 | addr_len = sizeof(saddr); |
| 357 | |
| 358 | if (getsockname(acc_sock_fd, (struct sockaddr *)&saddr, &addr_len)) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 359 | ERR(NULL, "getsockname failed (%s).", strerror(errno)); |
aPiecek | 90ff024 | 2021-02-14 14:58:01 +0100 | [diff] [blame] | 360 | return -1; |
| 361 | } |
| 362 | |
| 363 | sun_path = ((struct sockaddr_un *)&saddr)->sun_path; |
| 364 | if (!sun_path) { |
| 365 | /* stream socket is unnamed */ |
| 366 | return 0; |
| 367 | } |
| 368 | |
| 369 | if (!(*host = strdup(sun_path))) { |
| 370 | ERRMEM; |
| 371 | return -1; |
| 372 | } |
| 373 | |
| 374 | return 0; |
| 375 | } |
| 376 | |
| 377 | /** |
| 378 | * @brief Evaluate socket name and port number for AF_INET socket. |
| 379 | * @param[in] addr is pointing to structure filled by accept function which was successful. |
| 380 | * @param[out] host is pointer to char* to which the socket name will be set. It must not be NULL. |
| 381 | * @param[out] port is pointer to uint16_t to which the port number will be set. It must not be NULL. |
| 382 | * @return 0 in case of success. Call free function for parameter host to avoid a memory leak. |
| 383 | * @return -1 in case of error. Parameter host is set to NULL and port is unchanged. |
| 384 | */ |
| 385 | static int |
| 386 | sock_host_inet(const struct sockaddr_in *addr, char **host, uint16_t *port) |
| 387 | { |
| 388 | *host = malloc(INET_ADDRSTRLEN); |
| 389 | if (!(*host)) { |
| 390 | ERRMEM; |
| 391 | return -1; |
| 392 | } |
| 393 | |
aPiecek | 3da9b34 | 2021-02-18 15:00:03 +0100 | [diff] [blame] | 394 | if (!inet_ntop(AF_INET, &addr->sin_addr, *host, INET_ADDRSTRLEN)) { |
Michal Vasko | 69e9875 | 2022-12-14 14:20:17 +0100 | [diff] [blame^] | 395 | ERR(NULL, "inet_ntop failed (%s).", strerror(errno)); |
aPiecek | 90ff024 | 2021-02-14 14:58:01 +0100 | [diff] [blame] | 396 | free(*host); |
| 397 | *host = NULL; |
| 398 | return -1; |
| 399 | } |
| 400 | |
Michal Vasko | 89ffa8a | 2021-06-25 08:40:08 +0200 | [diff] [blame] | 401 | *port = ntohs(addr->sin_port); |
aPiecek | 90ff024 | 2021-02-14 14:58:01 +0100 | [diff] [blame] | 402 | |
| 403 | return 0; |
| 404 | } |
| 405 | |
| 406 | /** |
| 407 | * @brief Evaluate socket name and port number for AF_INET6 socket. |
| 408 | * @param[in] addr is pointing to structure filled by accept function which was successful. |
| 409 | * @param[out] host is pointer to char* to which the socket name will be set. It must not be NULL. |
| 410 | * @param[out] port is pointer to uint16_t to which the port number will be set. It must not be NULL. |
| 411 | * @return 0 in case of success. Call free function for parameter host to avoid a memory leak. |
| 412 | * @return -1 in case of error. Parameter host is set to the NULL and port is unchanged. |
| 413 | */ |
| 414 | static int |
| 415 | sock_host_inet6(const struct sockaddr_in6 *addr, char **host, uint16_t *port) |
| 416 | { |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 417 | *host = malloc(INET6_ADDRSTRLEN); |
aPiecek | 90ff024 | 2021-02-14 14:58:01 +0100 | [diff] [blame] | 418 | if (!(*host)) { |
| 419 | ERRMEM; |
| 420 | return -1; |
| 421 | } |
| 422 | |
aPiecek | 3da9b34 | 2021-02-18 15:00:03 +0100 | [diff] [blame] | 423 | if (!inet_ntop(AF_INET6, &addr->sin6_addr, *host, INET6_ADDRSTRLEN)) { |
Michal Vasko | 69e9875 | 2022-12-14 14:20:17 +0100 | [diff] [blame^] | 424 | ERR(NULL, "inet_ntop failed (%s).", strerror(errno)); |
aPiecek | 90ff024 | 2021-02-14 14:58:01 +0100 | [diff] [blame] | 425 | free(*host); |
| 426 | *host = NULL; |
| 427 | return -1; |
| 428 | } |
| 429 | |
Michal Vasko | 89ffa8a | 2021-06-25 08:40:08 +0200 | [diff] [blame] | 430 | *port = ntohs(addr->sin6_port); |
aPiecek | 90ff024 | 2021-02-14 14:58:01 +0100 | [diff] [blame] | 431 | |
| 432 | return 0; |
| 433 | } |
| 434 | |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame] | 435 | int |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 436 | 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] | 437 | { |
Michal Vasko | f54cd35 | 2017-02-22 13:42:02 +0100 | [diff] [blame] | 438 | sigset_t sigmask, origmask; |
Michal Vasko | 89ffa8a | 2021-06-25 08:40:08 +0200 | [diff] [blame] | 439 | uint16_t i, j, pfd_count, client_port; |
| 440 | char *client_address; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 441 | struct pollfd *pfd; |
| 442 | struct sockaddr_storage saddr; |
| 443 | socklen_t saddr_len = sizeof(saddr); |
Michal Vasko | 89ffa8a | 2021-06-25 08:40:08 +0200 | [diff] [blame] | 444 | int ret, client_sock, sock = -1, flags; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 445 | |
| 446 | pfd = malloc(bind_count * sizeof *pfd); |
Michal Vasko | 4eb3c31 | 2016-03-01 14:09:37 +0100 | [diff] [blame] | 447 | if (!pfd) { |
| 448 | ERRMEM; |
| 449 | return -1; |
| 450 | } |
| 451 | |
Michal Vasko | ac2f618 | 2017-01-30 14:32:03 +0100 | [diff] [blame] | 452 | for (i = 0, pfd_count = 0; i < bind_count; ++i) { |
Michal Vasko | 94acafc | 2016-09-23 13:40:10 +0200 | [diff] [blame] | 453 | if (binds[i].sock < 0) { |
| 454 | /* invalid socket */ |
Michal Vasko | 94acafc | 2016-09-23 13:40:10 +0200 | [diff] [blame] | 455 | continue; |
| 456 | } |
Michal Vasko | 0a3f375 | 2016-10-13 14:58:38 +0200 | [diff] [blame] | 457 | if (binds[i].pollin) { |
| 458 | binds[i].pollin = 0; |
| 459 | /* leftover pollin */ |
| 460 | sock = binds[i].sock; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 461 | break; |
| 462 | } |
Michal Vasko | ac2f618 | 2017-01-30 14:32:03 +0100 | [diff] [blame] | 463 | pfd[pfd_count].fd = binds[i].sock; |
| 464 | pfd[pfd_count].events = POLLIN; |
| 465 | pfd[pfd_count].revents = 0; |
| 466 | |
| 467 | ++pfd_count; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 468 | } |
| 469 | |
Michal Vasko | 0a3f375 | 2016-10-13 14:58:38 +0200 | [diff] [blame] | 470 | if (sock == -1) { |
| 471 | /* poll for a new connection */ |
Michal Vasko | f54cd35 | 2017-02-22 13:42:02 +0100 | [diff] [blame] | 472 | sigfillset(&sigmask); |
| 473 | pthread_sigmask(SIG_SETMASK, &sigmask, &origmask); |
Michal Vasko | ac2f618 | 2017-01-30 14:32:03 +0100 | [diff] [blame] | 474 | ret = poll(pfd, pfd_count, timeout); |
Michal Vasko | f54cd35 | 2017-02-22 13:42:02 +0100 | [diff] [blame] | 475 | pthread_sigmask(SIG_SETMASK, &origmask, NULL); |
| 476 | |
Michal Vasko | 0a3f375 | 2016-10-13 14:58:38 +0200 | [diff] [blame] | 477 | if (!ret) { |
| 478 | /* we timeouted */ |
| 479 | free(pfd); |
| 480 | return 0; |
| 481 | } else if (ret == -1) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 482 | ERR(NULL, "Poll failed (%s).", strerror(errno)); |
Michal Vasko | 0a3f375 | 2016-10-13 14:58:38 +0200 | [diff] [blame] | 483 | free(pfd); |
| 484 | return -1; |
| 485 | } |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 486 | |
Michal Vasko | ac2f618 | 2017-01-30 14:32:03 +0100 | [diff] [blame] | 487 | for (i = 0, j = 0; j < pfd_count; ++i, ++j) { |
| 488 | /* adjust i so that indices in binds and pfd always match */ |
| 489 | while (binds[i].sock != pfd[j].fd) { |
| 490 | ++i; |
| 491 | } |
| 492 | |
| 493 | if (pfd[j].revents & POLLIN) { |
Michal Vasko | 0a3f375 | 2016-10-13 14:58:38 +0200 | [diff] [blame] | 494 | --ret; |
| 495 | |
| 496 | if (!ret) { |
| 497 | /* the last socket with an event, use it */ |
Michal Vasko | ac2f618 | 2017-01-30 14:32:03 +0100 | [diff] [blame] | 498 | sock = pfd[j].fd; |
Michal Vasko | 0a3f375 | 2016-10-13 14:58:38 +0200 | [diff] [blame] | 499 | break; |
| 500 | } else { |
| 501 | /* just remember the event for next time */ |
| 502 | binds[i].pollin = 1; |
| 503 | } |
| 504 | } |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 505 | } |
| 506 | } |
| 507 | free(pfd); |
| 508 | |
| 509 | if (sock == -1) { |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 510 | ERRINT; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 511 | return -1; |
| 512 | } |
| 513 | |
Michal Vasko | 89ffa8a | 2021-06-25 08:40:08 +0200 | [diff] [blame] | 514 | /* accept connection */ |
| 515 | client_sock = accept(sock, (struct sockaddr *)&saddr, &saddr_len); |
| 516 | if (client_sock < 0) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 517 | ERR(NULL, "Accept failed (%s).", strerror(errno)); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 518 | return -1; |
| 519 | } |
| 520 | |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 521 | /* make the socket non-blocking */ |
Michal Vasko | 89ffa8a | 2021-06-25 08:40:08 +0200 | [diff] [blame] | 522 | if (((flags = fcntl(client_sock, F_GETFL)) == -1) || (fcntl(client_sock, F_SETFL, flags | O_NONBLOCK) == -1)) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 523 | ERR(NULL, "Fcntl failed (%s).", strerror(errno)); |
Michal Vasko | 89ffa8a | 2021-06-25 08:40:08 +0200 | [diff] [blame] | 524 | goto fail; |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 525 | } |
| 526 | |
Michal Vasko | 89ffa8a | 2021-06-25 08:40:08 +0200 | [diff] [blame] | 527 | /* learn information about the client end */ |
| 528 | if (saddr.ss_family == AF_UNIX) { |
| 529 | if (sock_host_unix(client_sock, &client_address)) { |
| 530 | goto fail; |
| 531 | } |
| 532 | client_port = 0; |
| 533 | } else if (saddr.ss_family == AF_INET) { |
| 534 | if (sock_host_inet((struct sockaddr_in *)&saddr, &client_address, &client_port)) { |
| 535 | goto fail; |
| 536 | } |
| 537 | } else if (saddr.ss_family == AF_INET6) { |
| 538 | if (sock_host_inet6((struct sockaddr_in6 *)&saddr, &client_address, &client_port)) { |
| 539 | goto fail; |
| 540 | } |
| 541 | } else { |
| 542 | ERR(NULL, "Source host of an unknown protocol family."); |
| 543 | goto fail; |
aPiecek | 90ff024 | 2021-02-14 14:58:01 +0100 | [diff] [blame] | 544 | } |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 545 | |
aPiecek | 90ff024 | 2021-02-14 14:58:01 +0100 | [diff] [blame] | 546 | if (saddr.ss_family == AF_UNIX) { |
Michal Vasko | 89ffa8a | 2021-06-25 08:40:08 +0200 | [diff] [blame] | 547 | VRB(NULL, "Accepted a connection on %s.", binds[i].address); |
aPiecek | 90ff024 | 2021-02-14 14:58:01 +0100 | [diff] [blame] | 548 | } else { |
Michal Vasko | 89ffa8a | 2021-06-25 08:40:08 +0200 | [diff] [blame] | 549 | VRB(NULL, "Accepted a connection on %s:%u from %s:%u.", binds[i].address, binds[i].port, client_address, client_port); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 550 | } |
| 551 | |
Michal Vasko | 89ffa8a | 2021-06-25 08:40:08 +0200 | [diff] [blame] | 552 | if (host) { |
| 553 | *host = client_address; |
| 554 | } else { |
| 555 | free(client_address); |
| 556 | } |
| 557 | if (port) { |
| 558 | *port = client_port; |
| 559 | } |
| 560 | if (idx) { |
| 561 | *idx = i; |
| 562 | } |
| 563 | return client_sock; |
| 564 | |
| 565 | fail: |
| 566 | close(client_sock); |
| 567 | return -1; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 568 | } |
| 569 | |
Michal Vasko | 238b6c1 | 2021-12-14 15:14:09 +0100 | [diff] [blame] | 570 | API struct nc_server_reply * |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 571 | nc_clb_default_get_schema(struct lyd_node *rpc, struct nc_session *session) |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 572 | { |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 573 | const char *identifier = NULL, *revision = NULL, *format = NULL; |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 574 | char *model_data = NULL; |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 575 | struct ly_out *out; |
Michal Vasko | 9b1a952 | 2021-03-15 16:24:26 +0100 | [diff] [blame] | 576 | const struct lys_module *module = NULL, *mod; |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 577 | const struct lysp_submodule *submodule = NULL; |
| 578 | struct lyd_node *child, *err, *data = NULL; |
| 579 | LYS_OUTFORMAT outformat = 0; |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 580 | |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 581 | LY_LIST_FOR(lyd_child(rpc), child) { |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 582 | if (!strcmp(child->schema->name, "identifier")) { |
Michal Vasko | e97b10a | 2021-04-28 08:52:52 +0200 | [diff] [blame] | 583 | identifier = lyd_get_value(child); |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 584 | } else if (!strcmp(child->schema->name, "version")) { |
Michal Vasko | e97b10a | 2021-04-28 08:52:52 +0200 | [diff] [blame] | 585 | revision = lyd_get_value(child); |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 586 | if (revision && (revision[0] == '\0')) { |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 587 | revision = NULL; |
Radek Krejci | 1afa779 | 2017-03-26 11:24:16 -0500 | [diff] [blame] | 588 | } |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 589 | } else if (!strcmp(child->schema->name, "format")) { |
Michal Vasko | e97b10a | 2021-04-28 08:52:52 +0200 | [diff] [blame] | 590 | format = lyd_get_value(child); |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 591 | } |
| 592 | } |
Michal Vasko | 5ca5d97 | 2022-09-14 13:51:31 +0200 | [diff] [blame] | 593 | VRB(session, "Module \"%s@%s\" was requested.", identifier, revision ? revision : "<any>"); |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 594 | |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 595 | /* check revision */ |
| 596 | if (revision && (strlen(revision) != 10) && strcmp(revision, "1.0")) { |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 597 | err = nc_err(session->ctx, NC_ERR_INVALID_VALUE, NC_ERR_TYPE_APP); |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 598 | nc_err_set_msg(err, "The requested version is not supported.", "en"); |
| 599 | return nc_server_reply_err(err); |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 600 | } |
| 601 | |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 602 | if (revision) { |
| 603 | /* get specific module */ |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 604 | module = ly_ctx_get_module(session->ctx, identifier, revision); |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 605 | if (!module) { |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 606 | submodule = ly_ctx_get_submodule(session->ctx, identifier, revision); |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 607 | } |
| 608 | } else { |
| 609 | /* try to get implemented, then latest module */ |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 610 | module = ly_ctx_get_module_implemented(session->ctx, identifier); |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 611 | if (!module) { |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 612 | module = ly_ctx_get_module_latest(session->ctx, identifier); |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 613 | } |
| 614 | if (!module) { |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 615 | submodule = ly_ctx_get_submodule_latest(session->ctx, identifier); |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 616 | } |
Michal Vasko | d91f6e6 | 2016-04-05 11:34:22 +0200 | [diff] [blame] | 617 | } |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 618 | if (!module && !submodule) { |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 619 | err = nc_err(session->ctx, NC_ERR_INVALID_VALUE, NC_ERR_TYPE_APP); |
Michal Vasko | 5ca5d97 | 2022-09-14 13:51:31 +0200 | [diff] [blame] | 620 | nc_err_set_msg(err, "The requested module was not found.", "en"); |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 621 | return nc_server_reply_err(err); |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 622 | } |
| 623 | |
| 624 | /* check format */ |
Radek Krejci | 90fba64 | 2016-12-07 15:59:45 +0100 | [diff] [blame] | 625 | if (!format || !strcmp(format, "ietf-netconf-monitoring:yang")) { |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 626 | outformat = LYS_OUT_YANG; |
Radek Krejci | 90fba64 | 2016-12-07 15:59:45 +0100 | [diff] [blame] | 627 | } else if (!strcmp(format, "ietf-netconf-monitoring:yin")) { |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 628 | outformat = LYS_OUT_YIN; |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 629 | } else { |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 630 | err = nc_err(session->ctx, NC_ERR_INVALID_VALUE, NC_ERR_TYPE_APP); |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 631 | nc_err_set_msg(err, "The requested format is not supported.", "en"); |
| 632 | return nc_server_reply_err(err); |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 633 | } |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 634 | |
| 635 | /* print */ |
| 636 | ly_out_new_memory(&model_data, 0, &out); |
| 637 | if (module) { |
| 638 | lys_print_module(out, module, outformat, 0, 0); |
| 639 | } else { |
| 640 | lys_print_submodule(out, submodule, outformat, 0, 0); |
| 641 | } |
| 642 | ly_out_free(out, NULL, 0); |
Michal Vasko | d91f6e6 | 2016-04-05 11:34:22 +0200 | [diff] [blame] | 643 | if (!model_data) { |
| 644 | ERRINT; |
| 645 | return NULL; |
| 646 | } |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 647 | |
Michal Vasko | 9b1a952 | 2021-03-15 16:24:26 +0100 | [diff] [blame] | 648 | /* create reply */ |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 649 | mod = ly_ctx_get_module_implemented(session->ctx, "ietf-netconf-monitoring"); |
Michal Vasko | 9b1a952 | 2021-03-15 16:24:26 +0100 | [diff] [blame] | 650 | if (!mod || lyd_new_inner(NULL, mod, "get-schema", 0, &data)) { |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 651 | ERRINT; |
Michal Vasko | d91f6e6 | 2016-04-05 11:34:22 +0200 | [diff] [blame] | 652 | free(model_data); |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 653 | return NULL; |
| 654 | } |
Michal Vasko | 9b1a952 | 2021-03-15 16:24:26 +0100 | [diff] [blame] | 655 | if (lyd_new_any(data, NULL, "data", model_data, 1, LYD_ANYDATA_STRING, 1, NULL)) { |
| 656 | ERRINT; |
Michal Vasko | a50f68e | 2022-02-24 16:10:54 +0100 | [diff] [blame] | 657 | free(model_data); |
Michal Vasko | 9b1a952 | 2021-03-15 16:24:26 +0100 | [diff] [blame] | 658 | lyd_free_tree(data); |
| 659 | return NULL; |
| 660 | } |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 661 | |
Radek Krejci | 36dfdb3 | 2016-09-01 16:56:35 +0200 | [diff] [blame] | 662 | return nc_server_reply_data(data, NC_WD_EXPLICIT, NC_PARAMTYPE_FREE); |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 663 | } |
| 664 | |
Michal Vasko | 238b6c1 | 2021-12-14 15:14:09 +0100 | [diff] [blame] | 665 | API struct nc_server_reply * |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 666 | 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] | 667 | { |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 668 | session->term_reason = NC_SESSION_TERM_CLOSED; |
| 669 | return nc_server_reply_ok(); |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 670 | } |
| 671 | |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 672 | /** |
| 673 | * @brief Initialize a context with default RPC callbacks if none are set. |
| 674 | * |
| 675 | * @param[in] ctx Context to initialize. |
| 676 | */ |
| 677 | static void |
| 678 | nc_server_init_ctx(const struct ly_ctx *ctx) |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 679 | { |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 680 | struct lysc_node *rpc; |
Michal Vasko | a7b8ca5 | 2016-03-01 12:09:29 +0100 | [diff] [blame] | 681 | |
Michal Vasko | 238b6c1 | 2021-12-14 15:14:09 +0100 | [diff] [blame] | 682 | if (global_rpc_clb) { |
| 683 | /* expect it to handle these RPCs as well */ |
| 684 | return; |
| 685 | } |
| 686 | |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 687 | /* set default <get-schema> callback if not specified */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 688 | rpc = NULL; |
| 689 | if (ly_ctx_get_module_implemented(ctx, "ietf-netconf-monitoring")) { |
| 690 | rpc = (struct lysc_node *)lys_find_path(ctx, NULL, "/ietf-netconf-monitoring:get-schema", 0); |
| 691 | } |
Michal Vasko | 88639e9 | 2017-08-03 14:38:10 +0200 | [diff] [blame] | 692 | if (rpc && !rpc->priv) { |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 693 | rpc->priv = nc_clb_default_get_schema; |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 694 | } |
| 695 | |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 696 | /* set default <close-session> callback if not specified */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 697 | rpc = (struct lysc_node *)lys_find_path(ctx, NULL, "/ietf-netconf:close-session", 0); |
Michal Vasko | 88639e9 | 2017-08-03 14:38:10 +0200 | [diff] [blame] | 698 | if (rpc && !rpc->priv) { |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 699 | rpc->priv = nc_clb_default_close_session; |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 700 | } |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 701 | } |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 702 | |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 703 | API int |
| 704 | nc_server_init(void) |
| 705 | { |
| 706 | pthread_rwlockattr_t attr, *attr_p = NULL; |
| 707 | int r; |
| 708 | |
| 709 | nc_init(); |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 710 | |
| 711 | server_opts.new_session_id = 1; |
Andrew Langefeld | 6ed922d | 2018-09-12 14:08:32 -0500 | [diff] [blame] | 712 | server_opts.new_client_id = 1; |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 713 | |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 714 | #ifdef HAVE_PTHREAD_RWLOCKATTR_SETKIND_NP |
| 715 | if ((r = pthread_rwlockattr_init(&attr))) { |
| 716 | ERR(NULL, "%s: failed init attribute (%s).", __func__, strerror(r)); |
| 717 | goto error; |
| 718 | } |
| 719 | attr_p = &attr; |
| 720 | if ((r = pthread_rwlockattr_setkind_np(&attr, PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP))) { |
| 721 | ERR(NULL, "%s: failed set attribute (%s).", __func__, strerror(r)); |
| 722 | goto error; |
| 723 | } |
Rosen Penev | ef2f3ac | 2019-07-15 18:15:28 -0700 | [diff] [blame] | 724 | #endif |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 725 | |
| 726 | if ((r = pthread_rwlock_init(&server_opts.endpt_lock, attr_p))) { |
| 727 | ERR(NULL, "%s: failed to init rwlock(%s).", __func__, strerror(r)); |
| 728 | goto error; |
| 729 | } |
| 730 | if ((r = pthread_rwlock_init(&server_opts.ch_client_lock, attr_p))) { |
| 731 | ERR(NULL, "%s: failed to init rwlock(%s).", __func__, strerror(r)); |
| 732 | goto error; |
| 733 | } |
| 734 | |
| 735 | if (attr_p) { |
| 736 | pthread_rwlockattr_destroy(attr_p); |
Frank Rimpler | 9f838b0 | 2018-07-25 06:44:03 +0000 | [diff] [blame] | 737 | } |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 738 | return 0; |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 739 | |
| 740 | error: |
| 741 | if (attr_p) { |
| 742 | pthread_rwlockattr_destroy(attr_p); |
| 743 | } |
| 744 | return -1; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 745 | } |
| 746 | |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 747 | API void |
| 748 | nc_server_destroy(void) |
| 749 | { |
Michal Vasko | 1440a74 | 2021-03-31 11:11:03 +0200 | [diff] [blame] | 750 | uint32_t i; |
Radek Krejci | 658782b | 2016-12-04 22:04:55 +0100 | [diff] [blame] | 751 | |
| 752 | for (i = 0; i < server_opts.capabilities_count; i++) { |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 753 | free(server_opts.capabilities[i]); |
Radek Krejci | 658782b | 2016-12-04 22:04:55 +0100 | [diff] [blame] | 754 | } |
| 755 | free(server_opts.capabilities); |
Michal Vasko | dd6e4f7 | 2018-06-01 10:21:27 +0200 | [diff] [blame] | 756 | server_opts.capabilities = NULL; |
| 757 | server_opts.capabilities_count = 0; |
Michal Vasko | 1440a74 | 2021-03-31 11:11:03 +0200 | [diff] [blame] | 758 | if (server_opts.content_id_data && server_opts.content_id_data_free) { |
| 759 | server_opts.content_id_data_free(server_opts.content_id_data); |
| 760 | } |
Michal Vasko | dd6e4f7 | 2018-06-01 10:21:27 +0200 | [diff] [blame] | 761 | |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 762 | #if defined (NC_ENABLED_SSH) || defined (NC_ENABLED_TLS) |
Michal Vasko | 5905037 | 2016-11-22 14:33:55 +0100 | [diff] [blame] | 763 | nc_server_del_endpt(NULL, 0); |
Michal Vasko | 0bdf70b | 2019-06-24 19:20:20 +0200 | [diff] [blame] | 764 | nc_server_ch_del_client(NULL); |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 765 | #endif |
Michal Vasko | 17dfda9 | 2016-12-01 14:06:16 +0100 | [diff] [blame] | 766 | #ifdef NC_ENABLED_SSH |
Michal Vasko | ebba760 | 2018-03-23 13:14:08 +0100 | [diff] [blame] | 767 | if (server_opts.passwd_auth_data && server_opts.passwd_auth_data_free) { |
| 768 | server_opts.passwd_auth_data_free(server_opts.passwd_auth_data); |
| 769 | } |
Michal Vasko | dd6e4f7 | 2018-06-01 10:21:27 +0200 | [diff] [blame] | 770 | server_opts.passwd_auth_data = NULL; |
| 771 | server_opts.passwd_auth_data_free = NULL; |
Michal Vasko | ebba760 | 2018-03-23 13:14:08 +0100 | [diff] [blame] | 772 | |
Michal Vasko | 17dfda9 | 2016-12-01 14:06:16 +0100 | [diff] [blame] | 773 | nc_server_ssh_del_authkey(NULL, NULL, 0, NULL); |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 774 | |
| 775 | if (server_opts.hostkey_data && server_opts.hostkey_data_free) { |
| 776 | server_opts.hostkey_data_free(server_opts.hostkey_data); |
| 777 | } |
Michal Vasko | dd6e4f7 | 2018-06-01 10:21:27 +0200 | [diff] [blame] | 778 | server_opts.hostkey_data = NULL; |
| 779 | server_opts.hostkey_data_free = NULL; |
roman | 41a11e4 | 2022-06-22 09:27:08 +0200 | [diff] [blame] | 780 | |
| 781 | /* PAM */ |
| 782 | free(server_opts.conf_name); |
| 783 | free(server_opts.conf_dir); |
| 784 | server_opts.conf_name = NULL; |
| 785 | server_opts.conf_dir = NULL; |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 786 | #endif |
| 787 | #ifdef NC_ENABLED_TLS |
| 788 | if (server_opts.server_cert_data && server_opts.server_cert_data_free) { |
| 789 | server_opts.server_cert_data_free(server_opts.server_cert_data); |
| 790 | } |
Michal Vasko | dd6e4f7 | 2018-06-01 10:21:27 +0200 | [diff] [blame] | 791 | server_opts.server_cert_data = NULL; |
| 792 | server_opts.server_cert_data_free = NULL; |
Michal Vasko | 4c1fb49 | 2017-01-30 14:31:07 +0100 | [diff] [blame] | 793 | if (server_opts.trusted_cert_list_data && server_opts.trusted_cert_list_data_free) { |
| 794 | server_opts.trusted_cert_list_data_free(server_opts.trusted_cert_list_data); |
| 795 | } |
Michal Vasko | dd6e4f7 | 2018-06-01 10:21:27 +0200 | [diff] [blame] | 796 | server_opts.trusted_cert_list_data = NULL; |
| 797 | server_opts.trusted_cert_list_data_free = NULL; |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 798 | #endif |
Michal Vasko | a7b8ca5 | 2016-03-01 12:09:29 +0100 | [diff] [blame] | 799 | nc_destroy(); |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 800 | } |
| 801 | |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 802 | API int |
| 803 | nc_server_set_capab_withdefaults(NC_WD_MODE basic_mode, int also_supported) |
| 804 | { |
Michal Vasko | 45e53ae | 2016-04-07 11:46:03 +0200 | [diff] [blame] | 805 | if (!basic_mode || (basic_mode == NC_WD_ALL_TAG)) { |
| 806 | ERRARG("basic_mode"); |
| 807 | return -1; |
| 808 | } else if (also_supported && !(also_supported & (NC_WD_ALL | NC_WD_ALL_TAG | NC_WD_TRIM | NC_WD_EXPLICIT))) { |
| 809 | ERRARG("also_supported"); |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 810 | return -1; |
| 811 | } |
| 812 | |
| 813 | server_opts.wd_basic_mode = basic_mode; |
| 814 | server_opts.wd_also_supported = also_supported; |
| 815 | return 0; |
| 816 | } |
| 817 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 818 | API void |
Michal Vasko | 55f0397 | 2016-04-13 08:56:01 +0200 | [diff] [blame] | 819 | nc_server_get_capab_withdefaults(NC_WD_MODE *basic_mode, int *also_supported) |
| 820 | { |
| 821 | if (!basic_mode && !also_supported) { |
| 822 | ERRARG("basic_mode and also_supported"); |
| 823 | return; |
| 824 | } |
| 825 | |
| 826 | if (basic_mode) { |
| 827 | *basic_mode = server_opts.wd_basic_mode; |
| 828 | } |
| 829 | if (also_supported) { |
| 830 | *also_supported = server_opts.wd_also_supported; |
| 831 | } |
| 832 | } |
| 833 | |
Michal Vasko | 55f0397 | 2016-04-13 08:56:01 +0200 | [diff] [blame] | 834 | API int |
Radek Krejci | 658782b | 2016-12-04 22:04:55 +0100 | [diff] [blame] | 835 | nc_server_set_capability(const char *value) |
Michal Vasko | 55f0397 | 2016-04-13 08:56:01 +0200 | [diff] [blame] | 836 | { |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 837 | void *mem; |
Radek Krejci | 658782b | 2016-12-04 22:04:55 +0100 | [diff] [blame] | 838 | |
| 839 | if (!value || !value[0]) { |
| 840 | ERRARG("value must not be empty"); |
| 841 | return EXIT_FAILURE; |
| 842 | } |
| 843 | |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 844 | mem = realloc(server_opts.capabilities, (server_opts.capabilities_count + 1) * sizeof *server_opts.capabilities); |
| 845 | if (!mem) { |
Radek Krejci | 658782b | 2016-12-04 22:04:55 +0100 | [diff] [blame] | 846 | ERRMEM; |
| 847 | return EXIT_FAILURE; |
| 848 | } |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 849 | server_opts.capabilities = mem; |
| 850 | |
| 851 | server_opts.capabilities[server_opts.capabilities_count] = strdup(value); |
| 852 | server_opts.capabilities_count++; |
Radek Krejci | 658782b | 2016-12-04 22:04:55 +0100 | [diff] [blame] | 853 | |
| 854 | return EXIT_SUCCESS; |
Michal Vasko | 55f0397 | 2016-04-13 08:56:01 +0200 | [diff] [blame] | 855 | } |
| 856 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 857 | API void |
Michal Vasko | 1440a74 | 2021-03-31 11:11:03 +0200 | [diff] [blame] | 858 | nc_server_set_content_id_clb(char *(*content_id_clb)(void *user_data), void *user_data, |
| 859 | void (*free_user_data)(void *user_data)) |
| 860 | { |
| 861 | server_opts.content_id_clb = content_id_clb; |
| 862 | server_opts.content_id_data = user_data; |
| 863 | server_opts.content_id_data_free = free_user_data; |
| 864 | } |
| 865 | |
| 866 | API void |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 867 | nc_server_set_hello_timeout(uint16_t hello_timeout) |
| 868 | { |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 869 | server_opts.hello_timeout = hello_timeout; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 870 | } |
| 871 | |
Michal Vasko | 55f0397 | 2016-04-13 08:56:01 +0200 | [diff] [blame] | 872 | API uint16_t |
| 873 | nc_server_get_hello_timeout(void) |
| 874 | { |
| 875 | return server_opts.hello_timeout; |
| 876 | } |
| 877 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 878 | API void |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 879 | nc_server_set_idle_timeout(uint16_t idle_timeout) |
| 880 | { |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 881 | server_opts.idle_timeout = idle_timeout; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 882 | } |
| 883 | |
Michal Vasko | 55f0397 | 2016-04-13 08:56:01 +0200 | [diff] [blame] | 884 | API uint16_t |
| 885 | nc_server_get_idle_timeout(void) |
| 886 | { |
| 887 | return server_opts.idle_timeout; |
| 888 | } |
| 889 | |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 890 | API NC_MSG_TYPE |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 891 | nc_accept_inout(int fdin, int fdout, const char *username, const struct ly_ctx *ctx, struct nc_session **session) |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 892 | { |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 893 | NC_MSG_TYPE msgtype; |
Michal Vasko | 9fb4227 | 2017-10-05 13:50:05 +0200 | [diff] [blame] | 894 | struct timespec ts_cur; |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 895 | |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 896 | if (!ctx) { |
| 897 | ERRARG("ctx"); |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 898 | return NC_MSG_ERROR; |
Michal Vasko | 45e53ae | 2016-04-07 11:46:03 +0200 | [diff] [blame] | 899 | } else if (fdin < 0) { |
| 900 | ERRARG("fdin"); |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 901 | return NC_MSG_ERROR; |
Michal Vasko | 45e53ae | 2016-04-07 11:46:03 +0200 | [diff] [blame] | 902 | } else if (fdout < 0) { |
| 903 | ERRARG("fdout"); |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 904 | return NC_MSG_ERROR; |
Michal Vasko | 45e53ae | 2016-04-07 11:46:03 +0200 | [diff] [blame] | 905 | } else if (!username) { |
| 906 | ERRARG("username"); |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 907 | return NC_MSG_ERROR; |
Michal Vasko | 45e53ae | 2016-04-07 11:46:03 +0200 | [diff] [blame] | 908 | } else if (!session) { |
| 909 | ERRARG("session"); |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 910 | return NC_MSG_ERROR; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 911 | } |
| 912 | |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 913 | /* init ctx as needed */ |
| 914 | nc_server_init_ctx(ctx); |
| 915 | |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 916 | /* prepare session structure */ |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 917 | *session = nc_new_session(NC_SERVER, 0); |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 918 | if (!(*session)) { |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 919 | ERRMEM; |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 920 | return NC_MSG_ERROR; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 921 | } |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 922 | (*session)->status = NC_STATUS_STARTING; |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 923 | |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 924 | /* transport specific data */ |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 925 | (*session)->ti_type = NC_TI_FD; |
| 926 | (*session)->ti.fd.in = fdin; |
| 927 | (*session)->ti.fd.out = fdout; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 928 | |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 929 | /* assign context */ |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 930 | (*session)->flags = NC_SESSION_SHAREDCTX; |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 931 | (*session)->ctx = (struct ly_ctx *)ctx; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 932 | |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 933 | /* assign new SID atomically */ |
Michal Vasko | 5bd4a3f | 2021-06-17 16:40:10 +0200 | [diff] [blame] | 934 | (*session)->id = ATOMIC_INC_RELAXED(server_opts.new_session_id); |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 935 | |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 936 | /* NETCONF handshake */ |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 937 | msgtype = nc_handshake_io(*session); |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 938 | if (msgtype != NC_MSG_HELLO) { |
| 939 | nc_session_free(*session, NULL); |
| 940 | *session = NULL; |
| 941 | return msgtype; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 942 | } |
Michal Vasko | 9fb4227 | 2017-10-05 13:50:05 +0200 | [diff] [blame] | 943 | |
roman | 6ece9c5 | 2022-06-22 09:29:17 +0200 | [diff] [blame] | 944 | nc_gettimespec_mono_add(&ts_cur, 0); |
Michal Vasko | 9fb4227 | 2017-10-05 13:50:05 +0200 | [diff] [blame] | 945 | (*session)->opts.server.last_rpc = ts_cur.tv_sec; |
roman | 6ece9c5 | 2022-06-22 09:29:17 +0200 | [diff] [blame] | 946 | nc_gettimespec_real_add(&ts_cur, 0); |
Michal Vasko | 9fb4227 | 2017-10-05 13:50:05 +0200 | [diff] [blame] | 947 | (*session)->opts.server.session_start = ts_cur.tv_sec; |
| 948 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 949 | (*session)->status = NC_STATUS_RUNNING; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 950 | |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 951 | return msgtype; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 952 | } |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 953 | |
Michal Vasko | b30b99c | 2016-07-26 11:35:43 +0200 | [diff] [blame] | 954 | static void |
Michal Vasko | 74c345f | 2018-02-07 10:37:11 +0100 | [diff] [blame] | 955 | nc_ps_queue_add_id(struct nc_pollsession *ps, uint8_t *id) |
| 956 | { |
| 957 | uint8_t q_last; |
| 958 | |
| 959 | if (ps->queue_len == NC_PS_QUEUE_SIZE) { |
| 960 | ERRINT; |
| 961 | return; |
| 962 | } |
| 963 | |
| 964 | /* get a unique queue value (by adding 1 to the last added value, if any) */ |
| 965 | if (ps->queue_len) { |
| 966 | q_last = (ps->queue_begin + ps->queue_len - 1) % NC_PS_QUEUE_SIZE; |
| 967 | *id = ps->queue[q_last] + 1; |
| 968 | } else { |
| 969 | *id = 0; |
| 970 | } |
| 971 | |
| 972 | /* add the id into the queue */ |
| 973 | ++ps->queue_len; |
| 974 | q_last = (ps->queue_begin + ps->queue_len - 1) % NC_PS_QUEUE_SIZE; |
| 975 | ps->queue[q_last] = *id; |
| 976 | } |
| 977 | |
| 978 | static void |
Michal Vasko | b30b99c | 2016-07-26 11:35:43 +0200 | [diff] [blame] | 979 | nc_ps_queue_remove_id(struct nc_pollsession *ps, uint8_t id) |
| 980 | { |
Michal Vasko | 74c345f | 2018-02-07 10:37:11 +0100 | [diff] [blame] | 981 | uint8_t i, q_idx, found = 0; |
Michal Vasko | b30b99c | 2016-07-26 11:35:43 +0200 | [diff] [blame] | 982 | |
| 983 | for (i = 0; i < ps->queue_len; ++i) { |
Michal Vasko | 74c345f | 2018-02-07 10:37:11 +0100 | [diff] [blame] | 984 | /* get the actual queue idx */ |
| 985 | q_idx = (ps->queue_begin + i) % NC_PS_QUEUE_SIZE; |
Michal Vasko | b30b99c | 2016-07-26 11:35:43 +0200 | [diff] [blame] | 986 | |
| 987 | if (found) { |
Michal Vasko | 74c345f | 2018-02-07 10:37:11 +0100 | [diff] [blame] | 988 | if (ps->queue[q_idx] == id) { |
Michal Vasko | b30b99c | 2016-07-26 11:35:43 +0200 | [diff] [blame] | 989 | /* another equal value, simply cannot be */ |
| 990 | ERRINT; |
| 991 | } |
Michal Vasko | d834003 | 2018-02-12 14:41:00 +0100 | [diff] [blame] | 992 | if (found == 2) { |
| 993 | /* move the following values */ |
| 994 | ps->queue[q_idx ? q_idx - 1 : NC_PS_QUEUE_SIZE - 1] = ps->queue[q_idx]; |
| 995 | } |
Michal Vasko | 74c345f | 2018-02-07 10:37:11 +0100 | [diff] [blame] | 996 | } else if (ps->queue[q_idx] == id) { |
Michal Vasko | b30b99c | 2016-07-26 11:35:43 +0200 | [diff] [blame] | 997 | /* found our id, there can be no more equal valid values */ |
Michal Vasko | d834003 | 2018-02-12 14:41:00 +0100 | [diff] [blame] | 998 | if (i == 0) { |
| 999 | found = 1; |
| 1000 | } else { |
| 1001 | /* this is not okay, our id is in the middle of the queue */ |
| 1002 | found = 2; |
| 1003 | } |
Michal Vasko | b30b99c | 2016-07-26 11:35:43 +0200 | [diff] [blame] | 1004 | } |
| 1005 | } |
Michal Vasko | b30b99c | 2016-07-26 11:35:43 +0200 | [diff] [blame] | 1006 | if (!found) { |
| 1007 | ERRINT; |
Michal Vasko | 103fe63 | 2018-02-12 16:37:45 +0100 | [diff] [blame] | 1008 | return; |
Michal Vasko | b30b99c | 2016-07-26 11:35:43 +0200 | [diff] [blame] | 1009 | } |
Michal Vasko | 74c345f | 2018-02-07 10:37:11 +0100 | [diff] [blame] | 1010 | |
Michal Vasko | 103fe63 | 2018-02-12 16:37:45 +0100 | [diff] [blame] | 1011 | --ps->queue_len; |
Michal Vasko | d834003 | 2018-02-12 14:41:00 +0100 | [diff] [blame] | 1012 | if (found == 1) { |
Michal Vasko | 103fe63 | 2018-02-12 16:37:45 +0100 | [diff] [blame] | 1013 | /* remove the id by moving the queue, otherwise all the values in the queue were moved */ |
Michal Vasko | d834003 | 2018-02-12 14:41:00 +0100 | [diff] [blame] | 1014 | ps->queue_begin = (ps->queue_begin + 1) % NC_PS_QUEUE_SIZE; |
| 1015 | } |
Michal Vasko | b30b99c | 2016-07-26 11:35:43 +0200 | [diff] [blame] | 1016 | } |
| 1017 | |
Michal Vasko | f04a52a | 2016-04-07 10:52:10 +0200 | [diff] [blame] | 1018 | int |
Michal Vasko | 2604317 | 2016-07-26 14:08:59 +0200 | [diff] [blame] | 1019 | nc_ps_lock(struct nc_pollsession *ps, uint8_t *id, const char *func) |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 1020 | { |
| 1021 | int ret; |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 1022 | struct timespec ts; |
| 1023 | |
roman | 6ece9c5 | 2022-06-22 09:29:17 +0200 | [diff] [blame] | 1024 | nc_gettimespec_real_add(&ts, NC_PS_LOCK_TIMEOUT); |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 1025 | |
| 1026 | /* LOCK */ |
| 1027 | ret = pthread_mutex_timedlock(&ps->lock, &ts); |
| 1028 | if (ret) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 1029 | ERR(NULL, "%s: failed to lock a pollsession (%s).", func, strerror(ret)); |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 1030 | return -1; |
| 1031 | } |
| 1032 | |
Michal Vasko | 74c345f | 2018-02-07 10:37:11 +0100 | [diff] [blame] | 1033 | /* check that the queue is long enough */ |
Michal Vasko | 8bc747c | 2018-02-09 16:37:04 +0100 | [diff] [blame] | 1034 | if (ps->queue_len == NC_PS_QUEUE_SIZE) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 1035 | ERR(NULL, "%s: pollsession queue size (%d) too small.", func, NC_PS_QUEUE_SIZE); |
Michal Vasko | 8bc747c | 2018-02-09 16:37:04 +0100 | [diff] [blame] | 1036 | pthread_mutex_unlock(&ps->lock); |
| 1037 | return -1; |
| 1038 | } |
Michal Vasko | 74c345f | 2018-02-07 10:37:11 +0100 | [diff] [blame] | 1039 | |
| 1040 | /* add ourselves into the queue */ |
| 1041 | nc_ps_queue_add_id(ps, id); |
Michal Vasko | fdba4a3 | 2022-01-05 12:13:53 +0100 | [diff] [blame] | 1042 | DBL(NULL, "PS 0x%p TID %lu queue: added %u, head %u, length %u", ps, (long unsigned int)pthread_self(), *id, |
Michal Vasko | 9129095 | 2019-09-27 11:30:55 +0200 | [diff] [blame] | 1043 | ps->queue[ps->queue_begin], ps->queue_len); |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 1044 | |
| 1045 | /* is it our turn? */ |
Michal Vasko | b30b99c | 2016-07-26 11:35:43 +0200 | [diff] [blame] | 1046 | while (ps->queue[ps->queue_begin] != *id) { |
roman | 6ece9c5 | 2022-06-22 09:29:17 +0200 | [diff] [blame] | 1047 | nc_gettimespec_real_add(&ts, NC_PS_QUEUE_TIMEOUT); |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 1048 | |
| 1049 | ret = pthread_cond_timedwait(&ps->cond, &ps->lock, &ts); |
| 1050 | if (ret) { |
preetbhansali | f3edf49 | 2018-12-14 17:53:32 +0530 | [diff] [blame] | 1051 | /** |
| 1052 | * This may happen when another thread releases the lock and broadcasts the condition |
| 1053 | * and this thread had already timed out. When this thread is scheduled, it returns timed out error |
| 1054 | * but when actually this thread was ready for condition. |
| 1055 | */ |
preetbhansali | 629dfc4 | 2018-12-17 16:04:40 +0530 | [diff] [blame] | 1056 | if ((ETIMEDOUT == ret) && (ps->queue[ps->queue_begin] == *id)) { |
preetbhansali | f3edf49 | 2018-12-14 17:53:32 +0530 | [diff] [blame] | 1057 | break; |
| 1058 | } |
Michal Vasko | 66032bc | 2019-01-22 15:03:12 +0100 | [diff] [blame] | 1059 | |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 1060 | ERR(NULL, "%s: failed to wait for a pollsession condition (%s).", func, strerror(ret)); |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 1061 | /* remove ourselves from the queue */ |
Michal Vasko | b30b99c | 2016-07-26 11:35:43 +0200 | [diff] [blame] | 1062 | nc_ps_queue_remove_id(ps, *id); |
| 1063 | pthread_mutex_unlock(&ps->lock); |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 1064 | return -1; |
| 1065 | } |
| 1066 | } |
| 1067 | |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 1068 | /* UNLOCK */ |
| 1069 | pthread_mutex_unlock(&ps->lock); |
| 1070 | |
| 1071 | return 0; |
| 1072 | } |
| 1073 | |
Michal Vasko | f04a52a | 2016-04-07 10:52:10 +0200 | [diff] [blame] | 1074 | int |
Michal Vasko | 2604317 | 2016-07-26 14:08:59 +0200 | [diff] [blame] | 1075 | nc_ps_unlock(struct nc_pollsession *ps, uint8_t id, const char *func) |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 1076 | { |
| 1077 | int ret; |
| 1078 | struct timespec ts; |
| 1079 | |
roman | 6ece9c5 | 2022-06-22 09:29:17 +0200 | [diff] [blame] | 1080 | nc_gettimespec_real_add(&ts, NC_PS_LOCK_TIMEOUT); |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 1081 | |
| 1082 | /* LOCK */ |
| 1083 | ret = pthread_mutex_timedlock(&ps->lock, &ts); |
| 1084 | if (ret) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 1085 | ERR(NULL, "%s: failed to lock a pollsession (%s).", func, strerror(ret)); |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 1086 | ret = -1; |
| 1087 | } |
| 1088 | |
Michal Vasko | b30b99c | 2016-07-26 11:35:43 +0200 | [diff] [blame] | 1089 | /* we must be the first, it was our turn after all, right? */ |
| 1090 | if (ps->queue[ps->queue_begin] != id) { |
| 1091 | ERRINT; |
Michal Vasko | b1a094b | 2016-10-05 14:04:52 +0200 | [diff] [blame] | 1092 | /* UNLOCK */ |
| 1093 | if (!ret) { |
| 1094 | pthread_mutex_unlock(&ps->lock); |
| 1095 | } |
Michal Vasko | b30b99c | 2016-07-26 11:35:43 +0200 | [diff] [blame] | 1096 | return -1; |
| 1097 | } |
| 1098 | |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 1099 | /* remove ourselves from the queue */ |
Michal Vasko | b30b99c | 2016-07-26 11:35:43 +0200 | [diff] [blame] | 1100 | nc_ps_queue_remove_id(ps, id); |
Michal Vasko | fdba4a3 | 2022-01-05 12:13:53 +0100 | [diff] [blame] | 1101 | DBL(NULL, "PS 0x%p TID %lu queue: removed %u, head %u, length %u", ps, (long unsigned int)pthread_self(), id, |
Michal Vasko | 9129095 | 2019-09-27 11:30:55 +0200 | [diff] [blame] | 1102 | ps->queue[ps->queue_begin], ps->queue_len); |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 1103 | |
| 1104 | /* broadcast to all other threads that the queue moved */ |
| 1105 | pthread_cond_broadcast(&ps->cond); |
| 1106 | |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 1107 | /* UNLOCK */ |
| 1108 | if (!ret) { |
| 1109 | pthread_mutex_unlock(&ps->lock); |
| 1110 | } |
| 1111 | |
| 1112 | return ret; |
| 1113 | } |
| 1114 | |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1115 | API struct nc_pollsession * |
| 1116 | nc_ps_new(void) |
| 1117 | { |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 1118 | struct nc_pollsession *ps; |
| 1119 | |
| 1120 | ps = calloc(1, sizeof(struct nc_pollsession)); |
Michal Vasko | 4eb3c31 | 2016-03-01 14:09:37 +0100 | [diff] [blame] | 1121 | if (!ps) { |
| 1122 | ERRMEM; |
| 1123 | return NULL; |
| 1124 | } |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 1125 | pthread_cond_init(&ps->cond, NULL); |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 1126 | pthread_mutex_init(&ps->lock, NULL); |
| 1127 | |
| 1128 | return ps; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1129 | } |
| 1130 | |
| 1131 | API void |
| 1132 | nc_ps_free(struct nc_pollsession *ps) |
| 1133 | { |
fanchanghu | 3d4e721 | 2017-08-09 09:42:30 +0800 | [diff] [blame] | 1134 | uint16_t i; |
| 1135 | |
Michal Vasko | 7f1c78b | 2016-01-19 09:52:14 +0100 | [diff] [blame] | 1136 | if (!ps) { |
| 1137 | return; |
| 1138 | } |
| 1139 | |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 1140 | if (ps->queue_len) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 1141 | ERR(NULL, "FATAL: Freeing a pollsession structure that is currently being worked with!"); |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 1142 | } |
| 1143 | |
fanchanghu | 3d4e721 | 2017-08-09 09:42:30 +0800 | [diff] [blame] | 1144 | for (i = 0; i < ps->session_count; i++) { |
| 1145 | free(ps->sessions[i]); |
| 1146 | } |
| 1147 | |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1148 | free(ps->sessions); |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 1149 | pthread_mutex_destroy(&ps->lock); |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 1150 | pthread_cond_destroy(&ps->cond); |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 1151 | |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1152 | free(ps); |
| 1153 | } |
| 1154 | |
| 1155 | API int |
| 1156 | nc_ps_add_session(struct nc_pollsession *ps, struct nc_session *session) |
| 1157 | { |
Michal Vasko | b30b99c | 2016-07-26 11:35:43 +0200 | [diff] [blame] | 1158 | uint8_t q_id; |
| 1159 | |
Michal Vasko | 45e53ae | 2016-04-07 11:46:03 +0200 | [diff] [blame] | 1160 | if (!ps) { |
| 1161 | ERRARG("ps"); |
| 1162 | return -1; |
| 1163 | } else if (!session) { |
| 1164 | ERRARG("session"); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1165 | return -1; |
| 1166 | } |
| 1167 | |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 1168 | /* LOCK */ |
Michal Vasko | 2604317 | 2016-07-26 14:08:59 +0200 | [diff] [blame] | 1169 | if (nc_ps_lock(ps, &q_id, __func__)) { |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 1170 | return -1; |
| 1171 | } |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 1172 | |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1173 | ++ps->session_count; |
Michal Vasko | 4eb3c31 | 2016-03-01 14:09:37 +0100 | [diff] [blame] | 1174 | ps->sessions = nc_realloc(ps->sessions, ps->session_count * sizeof *ps->sessions); |
Michal Vasko | 9a32736 | 2017-01-11 11:31:46 +0100 | [diff] [blame] | 1175 | if (!ps->sessions) { |
Michal Vasko | 4eb3c31 | 2016-03-01 14:09:37 +0100 | [diff] [blame] | 1176 | ERRMEM; |
| 1177 | /* UNLOCK */ |
Michal Vasko | 2604317 | 2016-07-26 14:08:59 +0200 | [diff] [blame] | 1178 | nc_ps_unlock(ps, q_id, __func__); |
Michal Vasko | 4eb3c31 | 2016-03-01 14:09:37 +0100 | [diff] [blame] | 1179 | return -1; |
| 1180 | } |
fanchanghu | 3d4e721 | 2017-08-09 09:42:30 +0800 | [diff] [blame] | 1181 | ps->sessions[ps->session_count - 1] = calloc(1, sizeof **ps->sessions); |
| 1182 | if (!ps->sessions[ps->session_count - 1]) { |
| 1183 | ERRMEM; |
| 1184 | --ps->session_count; |
| 1185 | /* UNLOCK */ |
| 1186 | nc_ps_unlock(ps, q_id, __func__); |
| 1187 | return -1; |
| 1188 | } |
| 1189 | ps->sessions[ps->session_count - 1]->session = session; |
| 1190 | ps->sessions[ps->session_count - 1]->state = NC_PS_STATE_NONE; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1191 | |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 1192 | /* UNLOCK */ |
Michal Vasko | 2604317 | 2016-07-26 14:08:59 +0200 | [diff] [blame] | 1193 | return nc_ps_unlock(ps, q_id, __func__); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1194 | } |
| 1195 | |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 1196 | static int |
Radek Krejci | d5f978f | 2016-03-03 13:14:45 +0100 | [diff] [blame] | 1197 | _nc_ps_del_session(struct nc_pollsession *ps, struct nc_session *session, int index) |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1198 | { |
| 1199 | uint16_t i; |
| 1200 | |
Radek Krejci | d5f978f | 2016-03-03 13:14:45 +0100 | [diff] [blame] | 1201 | if (index >= 0) { |
| 1202 | i = (uint16_t)index; |
| 1203 | goto remove; |
| 1204 | } |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1205 | for (i = 0; i < ps->session_count; ++i) { |
fanchanghu | 3d4e721 | 2017-08-09 09:42:30 +0800 | [diff] [blame] | 1206 | if (ps->sessions[i]->session == session) { |
Radek Krejci | d5f978f | 2016-03-03 13:14:45 +0100 | [diff] [blame] | 1207 | remove: |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1208 | --ps->session_count; |
fanchanghu | 3d4e721 | 2017-08-09 09:42:30 +0800 | [diff] [blame] | 1209 | if (i <= ps->session_count) { |
| 1210 | free(ps->sessions[i]); |
Michal Vasko | 5800573 | 2016-02-02 15:50:52 +0100 | [diff] [blame] | 1211 | ps->sessions[i] = ps->sessions[ps->session_count]; |
fanchanghu | 3d4e721 | 2017-08-09 09:42:30 +0800 | [diff] [blame] | 1212 | } |
| 1213 | if (!ps->session_count) { |
Michal Vasko | 5800573 | 2016-02-02 15:50:52 +0100 | [diff] [blame] | 1214 | free(ps->sessions); |
| 1215 | ps->sessions = NULL; |
Michal Vasko | 5800573 | 2016-02-02 15:50:52 +0100 | [diff] [blame] | 1216 | } |
Michal Vasko | 11d2f6a | 2017-02-02 11:15:06 +0100 | [diff] [blame] | 1217 | ps->last_event_session = 0; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1218 | return 0; |
| 1219 | } |
| 1220 | } |
| 1221 | |
Michal Vasko | f0537d8 | 2016-01-29 14:42:38 +0100 | [diff] [blame] | 1222 | return -1; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1223 | } |
| 1224 | |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 1225 | API int |
| 1226 | nc_ps_del_session(struct nc_pollsession *ps, struct nc_session *session) |
| 1227 | { |
Michal Vasko | b30b99c | 2016-07-26 11:35:43 +0200 | [diff] [blame] | 1228 | uint8_t q_id; |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 1229 | int ret, ret2; |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 1230 | |
Michal Vasko | 45e53ae | 2016-04-07 11:46:03 +0200 | [diff] [blame] | 1231 | if (!ps) { |
| 1232 | ERRARG("ps"); |
| 1233 | return -1; |
| 1234 | } else if (!session) { |
| 1235 | ERRARG("session"); |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 1236 | return -1; |
| 1237 | } |
| 1238 | |
| 1239 | /* LOCK */ |
Michal Vasko | 2604317 | 2016-07-26 14:08:59 +0200 | [diff] [blame] | 1240 | if (nc_ps_lock(ps, &q_id, __func__)) { |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 1241 | return -1; |
| 1242 | } |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 1243 | |
Radek Krejci | d5f978f | 2016-03-03 13:14:45 +0100 | [diff] [blame] | 1244 | ret = _nc_ps_del_session(ps, session, -1); |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 1245 | |
| 1246 | /* UNLOCK */ |
Michal Vasko | 2604317 | 2016-07-26 14:08:59 +0200 | [diff] [blame] | 1247 | ret2 = nc_ps_unlock(ps, q_id, __func__); |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 1248 | |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 1249 | return ret || ret2 ? -1 : 0; |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 1250 | } |
| 1251 | |
Michal Vasko | e1ee05b | 2017-03-21 10:10:18 +0100 | [diff] [blame] | 1252 | API struct nc_session * |
Michal Vasko | 4871c9d | 2017-10-09 14:48:39 +0200 | [diff] [blame] | 1253 | nc_ps_get_session(const struct nc_pollsession *ps, uint16_t idx) |
Michal Vasko | e1ee05b | 2017-03-21 10:10:18 +0100 | [diff] [blame] | 1254 | { |
| 1255 | uint8_t q_id; |
Michal Vasko | e1ee05b | 2017-03-21 10:10:18 +0100 | [diff] [blame] | 1256 | struct nc_session *ret = NULL; |
| 1257 | |
| 1258 | if (!ps) { |
| 1259 | ERRARG("ps"); |
| 1260 | return NULL; |
| 1261 | } |
| 1262 | |
| 1263 | /* LOCK */ |
| 1264 | if (nc_ps_lock((struct nc_pollsession *)ps, &q_id, __func__)) { |
| 1265 | return NULL; |
| 1266 | } |
| 1267 | |
Michal Vasko | 4871c9d | 2017-10-09 14:48:39 +0200 | [diff] [blame] | 1268 | if (idx < ps->session_count) { |
| 1269 | ret = ps->sessions[idx]->session; |
Michal Vasko | e1ee05b | 2017-03-21 10:10:18 +0100 | [diff] [blame] | 1270 | } |
| 1271 | |
| 1272 | /* UNLOCK */ |
| 1273 | nc_ps_unlock((struct nc_pollsession *)ps, q_id, __func__); |
| 1274 | |
| 1275 | return ret; |
| 1276 | } |
| 1277 | |
Michal Vasko | 3ec3b11 | 2022-07-21 12:32:33 +0200 | [diff] [blame] | 1278 | API struct nc_session * |
| 1279 | nc_ps_find_session(const struct nc_pollsession *ps, nc_ps_session_match_cb match_cb, void *cb_data) |
| 1280 | { |
| 1281 | uint8_t q_id; |
| 1282 | uint16_t i; |
| 1283 | struct nc_session *ret = NULL; |
| 1284 | |
| 1285 | if (!ps) { |
| 1286 | ERRARG("ps"); |
| 1287 | return NULL; |
| 1288 | } |
| 1289 | |
| 1290 | /* LOCK */ |
| 1291 | if (nc_ps_lock((struct nc_pollsession *)ps, &q_id, __func__)) { |
| 1292 | return NULL; |
| 1293 | } |
| 1294 | |
| 1295 | for (i = 0; i < ps->session_count; ++i) { |
| 1296 | if (match_cb(ps->sessions[i]->session, cb_data)) { |
| 1297 | ret = ps->sessions[i]->session; |
| 1298 | break; |
| 1299 | } |
| 1300 | } |
| 1301 | |
| 1302 | /* UNLOCK */ |
| 1303 | nc_ps_unlock((struct nc_pollsession *)ps, q_id, __func__); |
| 1304 | |
| 1305 | return ret; |
| 1306 | } |
| 1307 | |
Michal Vasko | 0fdb7ac | 2016-03-01 09:03:12 +0100 | [diff] [blame] | 1308 | API uint16_t |
| 1309 | nc_ps_session_count(struct nc_pollsession *ps) |
| 1310 | { |
Michal Vasko | 4700394 | 2019-03-14 12:25:23 +0100 | [diff] [blame] | 1311 | uint8_t q_id; |
| 1312 | uint16_t session_count; |
| 1313 | |
Michal Vasko | 0fdb7ac | 2016-03-01 09:03:12 +0100 | [diff] [blame] | 1314 | if (!ps) { |
Michal Vasko | 45e53ae | 2016-04-07 11:46:03 +0200 | [diff] [blame] | 1315 | ERRARG("ps"); |
Michal Vasko | 0fdb7ac | 2016-03-01 09:03:12 +0100 | [diff] [blame] | 1316 | return 0; |
| 1317 | } |
| 1318 | |
Michal Vasko | 4700394 | 2019-03-14 12:25:23 +0100 | [diff] [blame] | 1319 | /* LOCK (just for memory barrier so that we read the current value) */ |
| 1320 | if (nc_ps_lock((struct nc_pollsession *)ps, &q_id, __func__)) { |
| 1321 | return 0; |
| 1322 | } |
| 1323 | |
| 1324 | session_count = ps->session_count; |
| 1325 | |
| 1326 | /* UNLOCK */ |
| 1327 | nc_ps_unlock((struct nc_pollsession *)ps, q_id, __func__); |
| 1328 | |
| 1329 | return session_count; |
Michal Vasko | 0fdb7ac | 2016-03-01 09:03:12 +0100 | [diff] [blame] | 1330 | } |
| 1331 | |
Michal Vasko | 77e8357 | 2022-07-21 15:31:15 +0200 | [diff] [blame] | 1332 | static NC_MSG_TYPE |
| 1333 | recv_rpc_check_msgid(struct nc_session *session, const struct lyd_node *envp) |
| 1334 | { |
| 1335 | struct lyd_attr *attr; |
| 1336 | |
| 1337 | assert(envp && !envp->schema); |
| 1338 | |
| 1339 | /* find the message-id attribute */ |
| 1340 | LY_LIST_FOR(((struct lyd_node_opaq *)envp)->attr, attr) { |
| 1341 | if (!strcmp(attr->name.name, "message-id")) { |
| 1342 | break; |
| 1343 | } |
| 1344 | } |
| 1345 | |
| 1346 | if (!attr) { |
| 1347 | ERR(session, "Received an <rpc> without a message-id."); |
| 1348 | return NC_MSG_REPLY_ERR_MSGID; |
| 1349 | } |
| 1350 | |
| 1351 | return NC_MSG_RPC; |
| 1352 | } |
| 1353 | |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 1354 | /* should be called holding the session RPC lock! IO lock will be acquired as needed |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 1355 | * returns: NC_PSPOLL_ERROR, |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 1356 | * NC_PSPOLL_TIMEOUT, |
Michal Vasko | 77e8357 | 2022-07-21 15:31:15 +0200 | [diff] [blame] | 1357 | * NC_PSPOLL_BAD_RPC, |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 1358 | * NC_PSPOLL_RPC |
| 1359 | */ |
| 1360 | static int |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 1361 | nc_server_recv_rpc_io(struct nc_session *session, int io_timeout, struct nc_server_rpc **rpc) |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1362 | { |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 1363 | struct ly_in *msg; |
Radek Krejci | f93c7d4 | 2016-04-06 13:41:15 +0200 | [diff] [blame] | 1364 | struct nc_server_reply *reply = NULL; |
Michal Vasko | 939ffce | 2021-04-12 13:02:01 +0200 | [diff] [blame] | 1365 | struct lyd_node *e; |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 1366 | int r, ret; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1367 | |
Michal Vasko | 45e53ae | 2016-04-07 11:46:03 +0200 | [diff] [blame] | 1368 | if (!session) { |
| 1369 | ERRARG("session"); |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 1370 | return NC_PSPOLL_ERROR; |
Michal Vasko | 45e53ae | 2016-04-07 11:46:03 +0200 | [diff] [blame] | 1371 | } else if (!rpc) { |
| 1372 | ERRARG("rpc"); |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 1373 | return NC_PSPOLL_ERROR; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1374 | } else if ((session->status != NC_STATUS_RUNNING) || (session->side != NC_SERVER)) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 1375 | ERR(session, "Invalid session to receive RPCs."); |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 1376 | return NC_PSPOLL_ERROR; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1377 | } |
| 1378 | |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 1379 | *rpc = NULL; |
| 1380 | |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 1381 | /* get a message */ |
| 1382 | r = nc_read_msg_io(session, io_timeout, &msg, 0); |
| 1383 | if (r == -2) { |
| 1384 | /* malformed message */ |
Michal Vasko | 77e8357 | 2022-07-21 15:31:15 +0200 | [diff] [blame] | 1385 | ret = NC_PSPOLL_BAD_RPC; |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 1386 | reply = nc_server_reply_err(nc_err(session->ctx, NC_ERR_MALFORMED_MSG)); |
Michal Vasko | 77e8357 | 2022-07-21 15:31:15 +0200 | [diff] [blame] | 1387 | goto cleanup; |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 1388 | } |
| 1389 | if (r == -1) { |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 1390 | return NC_PSPOLL_ERROR; |
| 1391 | } else if (!r) { |
| 1392 | return NC_PSPOLL_TIMEOUT; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1393 | } |
| 1394 | |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 1395 | *rpc = calloc(1, sizeof **rpc); |
| 1396 | if (!*rpc) { |
| 1397 | ERRMEM; |
Michal Vasko | 77e8357 | 2022-07-21 15:31:15 +0200 | [diff] [blame] | 1398 | ret = NC_PSPOLL_BAD_RPC; |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 1399 | goto cleanup; |
| 1400 | } |
| 1401 | |
| 1402 | /* parse the RPC */ |
Michal Vasko | 77e8357 | 2022-07-21 15:31:15 +0200 | [diff] [blame] | 1403 | if (!lyd_parse_op(session->ctx, NULL, msg, LYD_XML, LYD_TYPE_RPC_NETCONF, &(*rpc)->envp, &(*rpc)->rpc)) { |
| 1404 | /* check message-id */ |
| 1405 | if (recv_rpc_check_msgid(session, (*rpc)->envp) == NC_MSG_RPC) { |
| 1406 | /* valid RPC */ |
| 1407 | ret = NC_PSPOLL_RPC; |
| 1408 | } else { |
| 1409 | /* no message-id */ |
| 1410 | ret = NC_PSPOLL_BAD_RPC; |
| 1411 | reply = nc_server_reply_err(nc_err(session->ctx, NC_ERR_MISSING_ATTR, NC_ERR_TYPE_RPC, "message-id", "rpc")); |
| 1412 | } |
| 1413 | } else { |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 1414 | /* bad RPC received */ |
Michal Vasko | 77e8357 | 2022-07-21 15:31:15 +0200 | [diff] [blame] | 1415 | ret = NC_PSPOLL_BAD_RPC; |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 1416 | |
| 1417 | if ((*rpc)->envp) { |
| 1418 | /* at least the envelopes were parsed */ |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 1419 | e = nc_err(session->ctx, NC_ERR_OP_FAILED, NC_ERR_TYPE_APP); |
| 1420 | nc_err_set_msg(e, ly_errmsg(session->ctx), "en"); |
Michal Vasko | 939ffce | 2021-04-12 13:02:01 +0200 | [diff] [blame] | 1421 | reply = nc_server_reply_err(e); |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 1422 | } else if (session->version == NC_VERSION_11) { |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 1423 | /* completely malformed message, NETCONF version 1.1 defines sending error reply from |
| 1424 | * the server (RFC 6241 sec. 3) */ |
| 1425 | reply = nc_server_reply_err(nc_err(session->ctx, NC_ERR_MALFORMED_MSG)); |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 1426 | } |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 1427 | } |
| 1428 | |
| 1429 | cleanup: |
Michal Vasko | 77e8357 | 2022-07-21 15:31:15 +0200 | [diff] [blame] | 1430 | if (reply) { |
| 1431 | /* send error reply */ |
| 1432 | r = nc_write_msg_io(session, io_timeout, NC_MSG_REPLY, *rpc ? (*rpc)->envp : NULL, reply); |
| 1433 | nc_server_reply_free(reply); |
| 1434 | if (r != NC_MSG_REPLY) { |
| 1435 | ERR(session, "Failed to write reply (%s), terminating session.", nc_msgtype2str[r]); |
| 1436 | if (session->status != NC_STATUS_INVALID) { |
| 1437 | session->status = NC_STATUS_INVALID; |
| 1438 | session->term_reason = NC_SESSION_TERM_OTHER; |
| 1439 | } |
| 1440 | } |
| 1441 | } |
| 1442 | |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 1443 | ly_in_free(msg, 1); |
| 1444 | if (ret != NC_PSPOLL_RPC) { |
| 1445 | nc_server_rpc_free(*rpc); |
| 1446 | *rpc = NULL; |
| 1447 | } |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 1448 | return ret; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1449 | } |
| 1450 | |
fanchanghu | 966f2de | 2016-07-21 02:28:57 -0400 | [diff] [blame] | 1451 | API void |
| 1452 | nc_set_global_rpc_clb(nc_rpc_clb clb) |
| 1453 | { |
| 1454 | global_rpc_clb = clb; |
| 1455 | } |
| 1456 | |
Radek Krejci | 93e8022 | 2016-10-03 13:34:25 +0200 | [diff] [blame] | 1457 | API NC_MSG_TYPE |
| 1458 | nc_server_notif_send(struct nc_session *session, struct nc_server_notif *notif, int timeout) |
| 1459 | { |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 1460 | NC_MSG_TYPE ret; |
Radek Krejci | 93e8022 | 2016-10-03 13:34:25 +0200 | [diff] [blame] | 1461 | |
| 1462 | /* check parameters */ |
Michal Vasko | df68e7e | 2022-04-21 11:04:00 +0200 | [diff] [blame] | 1463 | if (!session || (session->side != NC_SERVER) || !nc_session_get_notif_status(session)) { |
Radek Krejci | 93e8022 | 2016-10-03 13:34:25 +0200 | [diff] [blame] | 1464 | ERRARG("session"); |
| 1465 | return NC_MSG_ERROR; |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 1466 | } else if (!notif || !notif->ntf || !notif->eventtime) { |
Radek Krejci | 93e8022 | 2016-10-03 13:34:25 +0200 | [diff] [blame] | 1467 | ERRARG("notif"); |
| 1468 | return NC_MSG_ERROR; |
| 1469 | } |
| 1470 | |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 1471 | /* we do not need RPC lock for this, IO lock will be acquired properly */ |
| 1472 | ret = nc_write_msg_io(session, timeout, NC_MSG_NOTIF, notif); |
Michal Vasko | 8fe604c | 2020-02-10 15:25:04 +0100 | [diff] [blame] | 1473 | if (ret != NC_MSG_NOTIF) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 1474 | ERR(session, "Failed to write notification (%s).", nc_msgtype2str[ret]); |
Radek Krejci | 93e8022 | 2016-10-03 13:34:25 +0200 | [diff] [blame] | 1475 | } |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 1476 | |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 1477 | return ret; |
Radek Krejci | 93e8022 | 2016-10-03 13:34:25 +0200 | [diff] [blame] | 1478 | } |
| 1479 | |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 1480 | /* must be called holding the session RPC lock! IO lock will be acquired as needed |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 1481 | * returns: NC_PSPOLL_ERROR, |
| 1482 | * NC_PSPOLL_ERROR | NC_PSPOLL_REPLY_ERROR, |
| 1483 | * NC_PSPOLL_REPLY_ERROR, |
| 1484 | * 0 |
| 1485 | */ |
| 1486 | static int |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 1487 | nc_server_send_reply_io(struct nc_session *session, int io_timeout, const struct nc_server_rpc *rpc) |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1488 | { |
| 1489 | nc_rpc_clb clb; |
| 1490 | struct nc_server_reply *reply; |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 1491 | const struct lysc_node *rpc_act = NULL; |
| 1492 | struct lyd_node *elem; |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 1493 | int ret = 0; |
| 1494 | NC_MSG_TYPE r; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1495 | |
Michal Vasko | 4a827e5 | 2016-03-03 10:59:00 +0100 | [diff] [blame] | 1496 | if (!rpc) { |
| 1497 | ERRINT; |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 1498 | return NC_PSPOLL_ERROR; |
Michal Vasko | 4a827e5 | 2016-03-03 10:59:00 +0100 | [diff] [blame] | 1499 | } |
| 1500 | |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 1501 | if (rpc->rpc->schema->nodetype == LYS_RPC) { |
Michal Vasko | 90e8e69 | 2016-07-13 12:27:57 +0200 | [diff] [blame] | 1502 | /* RPC */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 1503 | rpc_act = rpc->rpc->schema; |
fanchanghu | 966f2de | 2016-07-21 02:28:57 -0400 | [diff] [blame] | 1504 | } else { |
Michal Vasko | 90e8e69 | 2016-07-13 12:27:57 +0200 | [diff] [blame] | 1505 | /* action */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 1506 | LYD_TREE_DFS_BEGIN(rpc->rpc, elem) { |
Michal Vasko | 90e8e69 | 2016-07-13 12:27:57 +0200 | [diff] [blame] | 1507 | if (elem->schema->nodetype == LYS_ACTION) { |
| 1508 | rpc_act = elem->schema; |
| 1509 | break; |
| 1510 | } |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 1511 | LYD_TREE_DFS_END(rpc->rpc, elem); |
fanchanghu | 966f2de | 2016-07-21 02:28:57 -0400 | [diff] [blame] | 1512 | } |
Michal Vasko | 90e8e69 | 2016-07-13 12:27:57 +0200 | [diff] [blame] | 1513 | if (!rpc_act) { |
| 1514 | ERRINT; |
| 1515 | return NC_PSPOLL_ERROR; |
| 1516 | } |
| 1517 | } |
| 1518 | |
| 1519 | if (!rpc_act->priv) { |
Petr A. Sokolov | 16284ca | 2019-02-04 09:02:40 +0300 | [diff] [blame] | 1520 | if (!global_rpc_clb) { |
| 1521 | /* no callback, reply with a not-implemented error */ |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 1522 | reply = nc_server_reply_err(nc_err(session->ctx, NC_ERR_OP_NOT_SUPPORTED, NC_ERR_TYPE_PROT)); |
Petr A. Sokolov | 16284ca | 2019-02-04 09:02:40 +0300 | [diff] [blame] | 1523 | } else { |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 1524 | reply = global_rpc_clb(rpc->rpc, session); |
Petr A. Sokolov | 16284ca | 2019-02-04 09:02:40 +0300 | [diff] [blame] | 1525 | } |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1526 | } else { |
Michal Vasko | 90e8e69 | 2016-07-13 12:27:57 +0200 | [diff] [blame] | 1527 | clb = (nc_rpc_clb)rpc_act->priv; |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 1528 | reply = clb(rpc->rpc, session); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1529 | } |
| 1530 | |
| 1531 | if (!reply) { |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 1532 | reply = nc_server_reply_err(nc_err(session->ctx, NC_ERR_OP_FAILED, NC_ERR_TYPE_APP)); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1533 | } |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 1534 | r = nc_write_msg_io(session, io_timeout, NC_MSG_REPLY, rpc->envp, reply); |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 1535 | if (reply->type == NC_RPL_ERROR) { |
| 1536 | ret |= NC_PSPOLL_REPLY_ERROR; |
| 1537 | } |
| 1538 | nc_server_reply_free(reply); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1539 | |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 1540 | if (r != NC_MSG_REPLY) { |
Michal Vasko | 1546949 | 2021-06-09 08:40:48 +0200 | [diff] [blame] | 1541 | ERR(session, "Failed to write reply (%s).", nc_msgtype2str[r]); |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 1542 | ret |= NC_PSPOLL_ERROR; |
| 1543 | } |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1544 | |
| 1545 | /* special case if term_reason was set in callback, last reply was sent (needed for <close-session> if nothing else) */ |
| 1546 | if ((session->status == NC_STATUS_RUNNING) && (session->term_reason != NC_SESSION_TERM_NONE)) { |
| 1547 | session->status = NC_STATUS_INVALID; |
| 1548 | } |
| 1549 | |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 1550 | return ret; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1551 | } |
| 1552 | |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 1553 | /* session must be running and session RPC lock held! |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1554 | * returns: NC_PSPOLL_SESSION_TERM | NC_PSPOLL_SESSION_ERROR, (msg filled) |
| 1555 | * NC_PSPOLL_ERROR, (msg filled) |
| 1556 | * NC_PSPOLL_TIMEOUT, |
| 1557 | * NC_PSPOLL_RPC (some application data available), |
| 1558 | * NC_PSPOLL_SSH_CHANNEL, |
| 1559 | * NC_PSPOLL_SSH_MSG |
| 1560 | */ |
| 1561 | static int |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 1562 | nc_ps_poll_session_io(struct nc_session *session, int io_timeout, time_t now_mono, char *msg) |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1563 | { |
Michal Vasko | 9a32736 | 2017-01-11 11:31:46 +0100 | [diff] [blame] | 1564 | struct pollfd pfd; |
Michal Vasko | 2260f55 | 2018-06-06 10:06:12 +0200 | [diff] [blame] | 1565 | int r, ret = 0; |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 1566 | |
Michal Vasko | 9a32736 | 2017-01-11 11:31:46 +0100 | [diff] [blame] | 1567 | #ifdef NC_ENABLED_SSH |
| 1568 | struct nc_session *new; |
| 1569 | #endif |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1570 | |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1571 | /* check timeout first */ |
Michal Vasko | df68e7e | 2022-04-21 11:04:00 +0200 | [diff] [blame] | 1572 | if (!(session->flags & NC_SESSION_CALLHOME) && !nc_session_get_notif_status(session) && server_opts.idle_timeout && |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 1573 | (now_mono >= session->opts.server.last_rpc + server_opts.idle_timeout)) { |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1574 | sprintf(msg, "session idle timeout elapsed"); |
| 1575 | session->status = NC_STATUS_INVALID; |
| 1576 | session->term_reason = NC_SESSION_TERM_TIMEOUT; |
| 1577 | return NC_PSPOLL_SESSION_TERM | NC_PSPOLL_SESSION_ERROR; |
| 1578 | } |
| 1579 | |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 1580 | r = nc_session_io_lock(session, io_timeout, __func__); |
| 1581 | if (r < 0) { |
| 1582 | sprintf(msg, "session IO lock failed to be acquired"); |
| 1583 | return NC_PSPOLL_ERROR; |
| 1584 | } else if (!r) { |
| 1585 | return NC_PSPOLL_TIMEOUT; |
| 1586 | } |
| 1587 | |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1588 | switch (session->ti_type) { |
| 1589 | #ifdef NC_ENABLED_SSH |
| 1590 | case NC_TI_LIBSSH: |
| 1591 | r = ssh_channel_poll_timeout(session->ti.libssh.channel, 0, 0); |
Michal Vasko | 8dcaa88 | 2017-10-19 14:28:42 +0200 | [diff] [blame] | 1592 | if (r == SSH_EOF) { |
| 1593 | sprintf(msg, "SSH channel unexpected EOF"); |
| 1594 | session->status = NC_STATUS_INVALID; |
| 1595 | session->term_reason = NC_SESSION_TERM_DROPPED; |
| 1596 | ret = NC_PSPOLL_SESSION_TERM | NC_PSPOLL_SESSION_ERROR; |
| 1597 | } else if (r == SSH_ERROR) { |
| 1598 | sprintf(msg, "SSH channel poll error (%s)", ssh_get_error(session->ti.libssh.session)); |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1599 | session->status = NC_STATUS_INVALID; |
| 1600 | session->term_reason = NC_SESSION_TERM_OTHER; |
| 1601 | ret = NC_PSPOLL_SESSION_TERM | NC_PSPOLL_SESSION_ERROR; |
Michal Vasko | 8dcaa88 | 2017-10-19 14:28:42 +0200 | [diff] [blame] | 1602 | } else if (!r) { |
| 1603 | if (session->flags & NC_SESSION_SSH_NEW_MSG) { |
| 1604 | /* new SSH message */ |
| 1605 | session->flags &= ~NC_SESSION_SSH_NEW_MSG; |
| 1606 | if (session->ti.libssh.next) { |
| 1607 | for (new = session->ti.libssh.next; new != session; new = new->ti.libssh.next) { |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 1608 | if ((new->status == NC_STATUS_STARTING) && new->ti.libssh.channel && |
| 1609 | (new->flags & NC_SESSION_SSH_SUBSYS_NETCONF)) { |
Michal Vasko | 8dcaa88 | 2017-10-19 14:28:42 +0200 | [diff] [blame] | 1610 | /* new NETCONF SSH channel */ |
| 1611 | ret = NC_PSPOLL_SSH_CHANNEL; |
| 1612 | break; |
| 1613 | } |
| 1614 | } |
| 1615 | if (new != session) { |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1616 | break; |
| 1617 | } |
| 1618 | } |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1619 | |
Michal Vasko | 8dcaa88 | 2017-10-19 14:28:42 +0200 | [diff] [blame] | 1620 | /* just some SSH message */ |
| 1621 | ret = NC_PSPOLL_SSH_MSG; |
| 1622 | } else { |
| 1623 | ret = NC_PSPOLL_TIMEOUT; |
| 1624 | } |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1625 | } else { |
| 1626 | /* we have some application data */ |
| 1627 | ret = NC_PSPOLL_RPC; |
| 1628 | } |
| 1629 | break; |
| 1630 | #endif |
| 1631 | #ifdef NC_ENABLED_TLS |
| 1632 | case NC_TI_OPENSSL: |
| 1633 | r = SSL_pending(session->ti.tls); |
| 1634 | if (!r) { |
| 1635 | /* no data pending in the SSL buffer, poll fd */ |
| 1636 | pfd.fd = SSL_get_rfd(session->ti.tls); |
| 1637 | if (pfd.fd < 0) { |
| 1638 | sprintf(msg, "internal error (%s:%d)", __FILE__, __LINE__); |
| 1639 | ret = NC_PSPOLL_ERROR; |
| 1640 | break; |
| 1641 | } |
| 1642 | pfd.events = POLLIN; |
| 1643 | pfd.revents = 0; |
| 1644 | r = poll(&pfd, 1, 0); |
| 1645 | |
| 1646 | if ((r < 0) && (errno != EINTR)) { |
| 1647 | sprintf(msg, "poll failed (%s)", strerror(errno)); |
| 1648 | session->status = NC_STATUS_INVALID; |
| 1649 | ret = NC_PSPOLL_ERROR; |
| 1650 | } else if (r > 0) { |
| 1651 | if (pfd.revents & (POLLHUP | POLLNVAL)) { |
| 1652 | sprintf(msg, "communication socket unexpectedly closed"); |
| 1653 | session->status = NC_STATUS_INVALID; |
| 1654 | session->term_reason = NC_SESSION_TERM_DROPPED; |
| 1655 | ret = NC_PSPOLL_SESSION_TERM | NC_PSPOLL_SESSION_ERROR; |
| 1656 | } else if (pfd.revents & POLLERR) { |
| 1657 | sprintf(msg, "communication socket error"); |
| 1658 | session->status = NC_STATUS_INVALID; |
| 1659 | session->term_reason = NC_SESSION_TERM_OTHER; |
| 1660 | ret = NC_PSPOLL_SESSION_TERM | NC_PSPOLL_SESSION_ERROR; |
| 1661 | } else { |
| 1662 | ret = NC_PSPOLL_RPC; |
| 1663 | } |
| 1664 | } else { |
| 1665 | ret = NC_PSPOLL_TIMEOUT; |
| 1666 | } |
| 1667 | } else { |
| 1668 | ret = NC_PSPOLL_RPC; |
| 1669 | } |
| 1670 | break; |
| 1671 | #endif |
| 1672 | case NC_TI_FD: |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame] | 1673 | case NC_TI_UNIX: |
| 1674 | pfd.fd = (session->ti_type == NC_TI_FD) ? session->ti.fd.in : session->ti.unixsock.sock; |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1675 | pfd.events = POLLIN; |
| 1676 | pfd.revents = 0; |
| 1677 | r = poll(&pfd, 1, 0); |
| 1678 | |
| 1679 | if ((r < 0) && (errno != EINTR)) { |
| 1680 | sprintf(msg, "poll failed (%s)", strerror(errno)); |
| 1681 | session->status = NC_STATUS_INVALID; |
| 1682 | ret = NC_PSPOLL_ERROR; |
| 1683 | } else if (r > 0) { |
| 1684 | if (pfd.revents & (POLLHUP | POLLNVAL)) { |
| 1685 | sprintf(msg, "communication socket unexpectedly closed"); |
| 1686 | session->status = NC_STATUS_INVALID; |
| 1687 | session->term_reason = NC_SESSION_TERM_DROPPED; |
| 1688 | ret = NC_PSPOLL_SESSION_TERM | NC_PSPOLL_SESSION_ERROR; |
| 1689 | } else if (pfd.revents & POLLERR) { |
| 1690 | sprintf(msg, "communication socket error"); |
| 1691 | session->status = NC_STATUS_INVALID; |
| 1692 | session->term_reason = NC_SESSION_TERM_OTHER; |
| 1693 | ret = NC_PSPOLL_SESSION_TERM | NC_PSPOLL_SESSION_ERROR; |
| 1694 | } else { |
| 1695 | ret = NC_PSPOLL_RPC; |
| 1696 | } |
| 1697 | } else { |
| 1698 | ret = NC_PSPOLL_TIMEOUT; |
| 1699 | } |
| 1700 | break; |
| 1701 | case NC_TI_NONE: |
| 1702 | sprintf(msg, "internal error (%s:%d)", __FILE__, __LINE__); |
| 1703 | ret = NC_PSPOLL_ERROR; |
| 1704 | break; |
| 1705 | } |
| 1706 | |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 1707 | nc_session_io_unlock(session, __func__); |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1708 | return ret; |
| 1709 | } |
| 1710 | |
| 1711 | API int |
| 1712 | nc_ps_poll(struct nc_pollsession *ps, int timeout, struct nc_session **session) |
| 1713 | { |
Michal Vasko | 443faa0 | 2022-10-20 09:09:03 +0200 | [diff] [blame] | 1714 | int ret = NC_PSPOLL_ERROR, r; |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1715 | uint8_t q_id; |
| 1716 | uint16_t i, j; |
| 1717 | char msg[256]; |
| 1718 | struct timespec ts_timeout, ts_cur; |
| 1719 | struct nc_session *cur_session; |
fanchanghu | 3d4e721 | 2017-08-09 09:42:30 +0800 | [diff] [blame] | 1720 | struct nc_ps_session *cur_ps_session; |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1721 | struct nc_server_rpc *rpc = NULL; |
| 1722 | |
Michal Vasko | 30a5d6b | 2017-02-15 14:29:39 +0100 | [diff] [blame] | 1723 | if (!ps) { |
Michal Vasko | 45e53ae | 2016-04-07 11:46:03 +0200 | [diff] [blame] | 1724 | ERRARG("ps"); |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 1725 | return NC_PSPOLL_ERROR; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1726 | } |
| 1727 | |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 1728 | /* PS LOCK */ |
Michal Vasko | 2604317 | 2016-07-26 14:08:59 +0200 | [diff] [blame] | 1729 | if (nc_ps_lock(ps, &q_id, __func__)) { |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 1730 | return NC_PSPOLL_ERROR; |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 1731 | } |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 1732 | |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 1733 | if (!ps->session_count) { |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1734 | nc_ps_unlock(ps, q_id, __func__); |
| 1735 | return NC_PSPOLL_NOSESSIONS; |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 1736 | } |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 1737 | |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1738 | /* fill timespecs */ |
roman | 6ece9c5 | 2022-06-22 09:29:17 +0200 | [diff] [blame] | 1739 | nc_gettimespec_mono_add(&ts_cur, 0); |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 1740 | if (timeout > -1) { |
roman | 6ece9c5 | 2022-06-22 09:29:17 +0200 | [diff] [blame] | 1741 | nc_gettimespec_mono_add(&ts_timeout, timeout); |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 1742 | } |
| 1743 | |
| 1744 | /* poll all the sessions one-by-one */ |
Michal Vasko | 9a32736 | 2017-01-11 11:31:46 +0100 | [diff] [blame] | 1745 | do { |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1746 | /* loop from i to j once (all sessions) */ |
Michal Vasko | 9a32736 | 2017-01-11 11:31:46 +0100 | [diff] [blame] | 1747 | if (ps->last_event_session == ps->session_count - 1) { |
| 1748 | i = j = 0; |
| 1749 | } else { |
| 1750 | i = j = ps->last_event_session + 1; |
Michal Vasko | bd8ef26 | 2016-01-20 11:09:27 +0100 | [diff] [blame] | 1751 | } |
Michal Vasko | 9a32736 | 2017-01-11 11:31:46 +0100 | [diff] [blame] | 1752 | do { |
fanchanghu | 3d4e721 | 2017-08-09 09:42:30 +0800 | [diff] [blame] | 1753 | cur_ps_session = ps->sessions[i]; |
| 1754 | cur_session = cur_ps_session->session; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1755 | |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 1756 | /* SESSION RPC LOCK */ |
| 1757 | r = nc_session_rpc_lock(cur_session, 0, __func__); |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1758 | if (r == -1) { |
| 1759 | ret = NC_PSPOLL_ERROR; |
| 1760 | } else if (r == 1) { |
| 1761 | /* no one else is currently working with the session, so we can, otherwise skip it */ |
Michal Vasko | c97cb16 | 2017-10-16 12:10:23 +0200 | [diff] [blame] | 1762 | switch (cur_ps_session->state) { |
| 1763 | case NC_PS_STATE_NONE: |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1764 | if (cur_session->status == NC_STATUS_RUNNING) { |
| 1765 | /* session is fine, work with it */ |
fanchanghu | 3d4e721 | 2017-08-09 09:42:30 +0800 | [diff] [blame] | 1766 | cur_ps_session->state = NC_PS_STATE_BUSY; |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1767 | |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 1768 | ret = nc_ps_poll_session_io(cur_session, NC_SESSION_LOCK_TIMEOUT, ts_cur.tv_sec, msg); |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1769 | switch (ret) { |
| 1770 | case NC_PSPOLL_SESSION_TERM | NC_PSPOLL_SESSION_ERROR: |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 1771 | ERR(cur_session, "%s.", msg); |
fanchanghu | 3d4e721 | 2017-08-09 09:42:30 +0800 | [diff] [blame] | 1772 | cur_ps_session->state = NC_PS_STATE_INVALID; |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1773 | break; |
| 1774 | case NC_PSPOLL_ERROR: |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 1775 | ERR(cur_session, "%s.", msg); |
fanchanghu | 3d4e721 | 2017-08-09 09:42:30 +0800 | [diff] [blame] | 1776 | cur_ps_session->state = NC_PS_STATE_NONE; |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1777 | break; |
| 1778 | case NC_PSPOLL_TIMEOUT: |
| 1779 | #ifdef NC_ENABLED_SSH |
| 1780 | case NC_PSPOLL_SSH_CHANNEL: |
| 1781 | case NC_PSPOLL_SSH_MSG: |
| 1782 | #endif |
fanchanghu | 3d4e721 | 2017-08-09 09:42:30 +0800 | [diff] [blame] | 1783 | cur_ps_session->state = NC_PS_STATE_NONE; |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1784 | break; |
| 1785 | case NC_PSPOLL_RPC: |
| 1786 | /* let's keep the state busy, we are not done with this session */ |
| 1787 | break; |
| 1788 | } |
| 1789 | } else { |
| 1790 | /* session is not fine, let the caller know */ |
| 1791 | ret = NC_PSPOLL_SESSION_TERM; |
| 1792 | if (cur_session->term_reason != NC_SESSION_TERM_CLOSED) { |
| 1793 | ret |= NC_PSPOLL_SESSION_ERROR; |
| 1794 | } |
fanchanghu | 3d4e721 | 2017-08-09 09:42:30 +0800 | [diff] [blame] | 1795 | cur_ps_session->state = NC_PS_STATE_INVALID; |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1796 | } |
Michal Vasko | c97cb16 | 2017-10-16 12:10:23 +0200 | [diff] [blame] | 1797 | break; |
| 1798 | case NC_PS_STATE_BUSY: |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1799 | /* it definitely should not be busy because we have the lock */ |
| 1800 | ERRINT; |
Michal Vasko | 4992d80 | 2017-08-09 12:20:01 +0200 | [diff] [blame] | 1801 | ret = NC_PSPOLL_ERROR; |
Michal Vasko | c97cb16 | 2017-10-16 12:10:23 +0200 | [diff] [blame] | 1802 | break; |
| 1803 | case NC_PS_STATE_INVALID: |
| 1804 | /* we got it locked, but it will be freed, let it be */ |
| 1805 | ret = NC_PSPOLL_TIMEOUT; |
| 1806 | break; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1807 | } |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1808 | |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 1809 | /* keep RPC lock in this one case */ |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1810 | if (ret != NC_PSPOLL_RPC) { |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 1811 | /* SESSION RPC UNLOCK */ |
| 1812 | nc_session_rpc_unlock(cur_session, NC_SESSION_LOCK_TIMEOUT, __func__); |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 1813 | } |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 1814 | } else { |
| 1815 | /* timeout */ |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1816 | ret = NC_PSPOLL_TIMEOUT; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1817 | } |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1818 | |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1819 | /* something happened */ |
| 1820 | if (ret != NC_PSPOLL_TIMEOUT) { |
| 1821 | break; |
| 1822 | } |
| 1823 | |
Michal Vasko | 9a32736 | 2017-01-11 11:31:46 +0100 | [diff] [blame] | 1824 | if (i == ps->session_count - 1) { |
| 1825 | i = 0; |
| 1826 | } else { |
| 1827 | ++i; |
| 1828 | } |
| 1829 | } while (i != j); |
| 1830 | |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 1831 | /* no event, no session remains locked */ |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1832 | if (ret == NC_PSPOLL_TIMEOUT) { |
Michal Vasko | 9a32736 | 2017-01-11 11:31:46 +0100 | [diff] [blame] | 1833 | usleep(NC_TIMEOUT_STEP); |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1834 | |
Michal Vasko | 60d8ffb | 2022-07-21 11:08:34 +0200 | [diff] [blame] | 1835 | if ((timeout > -1) && (nc_difftimespec_mono_cur(&ts_timeout) < 1)) { |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1836 | /* final timeout */ |
| 1837 | break; |
Michal Vasko | 9a32736 | 2017-01-11 11:31:46 +0100 | [diff] [blame] | 1838 | } |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1839 | } |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1840 | } while (ret == NC_PSPOLL_TIMEOUT); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1841 | |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1842 | /* do we want to return the session? */ |
| 1843 | switch (ret) { |
| 1844 | case NC_PSPOLL_RPC: |
| 1845 | case NC_PSPOLL_SESSION_TERM: |
| 1846 | case NC_PSPOLL_SESSION_TERM | NC_PSPOLL_SESSION_ERROR: |
| 1847 | #ifdef NC_ENABLED_SSH |
| 1848 | case NC_PSPOLL_SSH_CHANNEL: |
| 1849 | case NC_PSPOLL_SSH_MSG: |
| 1850 | #endif |
| 1851 | if (session) { |
| 1852 | *session = cur_session; |
| 1853 | } |
| 1854 | ps->last_event_session = i; |
| 1855 | break; |
| 1856 | default: |
| 1857 | break; |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 1858 | } |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1859 | |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 1860 | /* PS UNLOCK */ |
| 1861 | nc_ps_unlock(ps, q_id, __func__); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1862 | |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 1863 | /* we have some data available and the session is RPC locked (but not IO locked) */ |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1864 | if (ret == NC_PSPOLL_RPC) { |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 1865 | ret = nc_server_recv_rpc_io(cur_session, timeout, &rpc); |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1866 | if (ret & (NC_PSPOLL_ERROR | NC_PSPOLL_BAD_RPC)) { |
| 1867 | if (cur_session->status != NC_STATUS_RUNNING) { |
| 1868 | ret |= NC_PSPOLL_SESSION_TERM | NC_PSPOLL_SESSION_ERROR; |
fanchanghu | 3d4e721 | 2017-08-09 09:42:30 +0800 | [diff] [blame] | 1869 | cur_ps_session->state = NC_PS_STATE_INVALID; |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1870 | } else { |
fanchanghu | 3d4e721 | 2017-08-09 09:42:30 +0800 | [diff] [blame] | 1871 | cur_ps_session->state = NC_PS_STATE_NONE; |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1872 | } |
| 1873 | } else { |
Michal Vasko | 9fb4227 | 2017-10-05 13:50:05 +0200 | [diff] [blame] | 1874 | cur_session->opts.server.last_rpc = ts_cur.tv_sec; |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1875 | |
Michal Vasko | 7f1ee93 | 2018-10-11 09:41:42 +0200 | [diff] [blame] | 1876 | /* process RPC */ |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 1877 | ret |= nc_server_send_reply_io(cur_session, timeout, rpc); |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1878 | if (cur_session->status != NC_STATUS_RUNNING) { |
| 1879 | ret |= NC_PSPOLL_SESSION_TERM; |
| 1880 | if (!(cur_session->term_reason & (NC_SESSION_TERM_CLOSED | NC_SESSION_TERM_KILLED))) { |
| 1881 | ret |= NC_PSPOLL_SESSION_ERROR; |
| 1882 | } |
fanchanghu | 3d4e721 | 2017-08-09 09:42:30 +0800 | [diff] [blame] | 1883 | cur_ps_session->state = NC_PS_STATE_INVALID; |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1884 | } else { |
fanchanghu | 3d4e721 | 2017-08-09 09:42:30 +0800 | [diff] [blame] | 1885 | cur_ps_session->state = NC_PS_STATE_NONE; |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1886 | } |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1887 | } |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 1888 | nc_server_rpc_free(rpc); |
Michal Vasko | efbc5e3 | 2017-05-26 14:02:16 +0200 | [diff] [blame] | 1889 | |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 1890 | /* SESSION RPC UNLOCK */ |
| 1891 | nc_session_rpc_unlock(cur_session, NC_SESSION_LOCK_TIMEOUT, __func__); |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1892 | } |
| 1893 | |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 1894 | return ret; |
Michal Vasko | 428087d | 2016-01-14 16:04:28 +0100 | [diff] [blame] | 1895 | } |
| 1896 | |
Michal Vasko | d09eae6 | 2016-02-01 10:32:52 +0100 | [diff] [blame] | 1897 | API void |
Michal Vasko | e1a64ec | 2016-03-01 12:21:58 +0100 | [diff] [blame] | 1898 | nc_ps_clear(struct nc_pollsession *ps, int all, void (*data_free)(void *)) |
Michal Vasko | d09eae6 | 2016-02-01 10:32:52 +0100 | [diff] [blame] | 1899 | { |
Michal Vasko | b30b99c | 2016-07-26 11:35:43 +0200 | [diff] [blame] | 1900 | uint8_t q_id; |
Michal Vasko | d09eae6 | 2016-02-01 10:32:52 +0100 | [diff] [blame] | 1901 | uint16_t i; |
| 1902 | struct nc_session *session; |
| 1903 | |
Michal Vasko | 9a25e93 | 2016-02-01 10:36:42 +0100 | [diff] [blame] | 1904 | if (!ps) { |
Michal Vasko | 45e53ae | 2016-04-07 11:46:03 +0200 | [diff] [blame] | 1905 | ERRARG("ps"); |
Michal Vasko | 9a25e93 | 2016-02-01 10:36:42 +0100 | [diff] [blame] | 1906 | return; |
| 1907 | } |
| 1908 | |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 1909 | /* LOCK */ |
Michal Vasko | 2604317 | 2016-07-26 14:08:59 +0200 | [diff] [blame] | 1910 | if (nc_ps_lock(ps, &q_id, __func__)) { |
Michal Vasko | be86fe3 | 2016-04-07 10:43:03 +0200 | [diff] [blame] | 1911 | return; |
| 1912 | } |
Michal Vasko | d09eae6 | 2016-02-01 10:32:52 +0100 | [diff] [blame] | 1913 | |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 1914 | if (all) { |
Radek Krejci | 4f8042c | 2016-03-03 13:11:26 +0100 | [diff] [blame] | 1915 | for (i = 0; i < ps->session_count; i++) { |
fanchanghu | 3d4e721 | 2017-08-09 09:42:30 +0800 | [diff] [blame] | 1916 | nc_session_free(ps->sessions[i]->session, data_free); |
| 1917 | free(ps->sessions[i]); |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 1918 | } |
| 1919 | free(ps->sessions); |
| 1920 | ps->sessions = NULL; |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 1921 | ps->session_count = 0; |
Michal Vasko | 9a32736 | 2017-01-11 11:31:46 +0100 | [diff] [blame] | 1922 | ps->last_event_session = 0; |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 1923 | } else { |
| 1924 | for (i = 0; i < ps->session_count; ) { |
fanchanghu | 3d4e721 | 2017-08-09 09:42:30 +0800 | [diff] [blame] | 1925 | if (ps->sessions[i]->session->status != NC_STATUS_RUNNING) { |
| 1926 | session = ps->sessions[i]->session; |
Radek Krejci | d5f978f | 2016-03-03 13:14:45 +0100 | [diff] [blame] | 1927 | _nc_ps_del_session(ps, NULL, i); |
Michal Vasko | e1a64ec | 2016-03-01 12:21:58 +0100 | [diff] [blame] | 1928 | nc_session_free(session, data_free); |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 1929 | continue; |
| 1930 | } |
| 1931 | |
| 1932 | ++i; |
| 1933 | } |
Michal Vasko | d09eae6 | 2016-02-01 10:32:52 +0100 | [diff] [blame] | 1934 | } |
Michal Vasko | 48a63ed | 2016-03-01 09:48:21 +0100 | [diff] [blame] | 1935 | |
| 1936 | /* UNLOCK */ |
Michal Vasko | 2604317 | 2016-07-26 14:08:59 +0200 | [diff] [blame] | 1937 | nc_ps_unlock(ps, q_id, __func__); |
Michal Vasko | d09eae6 | 2016-02-01 10:32:52 +0100 | [diff] [blame] | 1938 | } |
| 1939 | |
Michal Vasko | 5f352c5 | 2019-07-10 16:12:06 +0200 | [diff] [blame] | 1940 | static int |
apropp-molex | 4e903c3 | 2020-04-20 03:06:58 -0400 | [diff] [blame] | 1941 | nc_get_uid(int sock, uid_t *uid) |
| 1942 | { |
Michal Vasko | d391091 | 2020-04-20 09:12:49 +0200 | [diff] [blame] | 1943 | int ret; |
apropp-molex | 4e903c3 | 2020-04-20 03:06:58 -0400 | [diff] [blame] | 1944 | |
Michal Vasko | d391091 | 2020-04-20 09:12:49 +0200 | [diff] [blame] | 1945 | #ifdef SO_PEERCRED |
| 1946 | struct ucred ucred; |
| 1947 | socklen_t len; |
| 1948 | len = sizeof(ucred); |
| 1949 | ret = getsockopt(sock, SOL_SOCKET, SO_PEERCRED, &ucred, &len); |
| 1950 | if (!ret) { |
| 1951 | *uid = ucred.uid; |
| 1952 | } |
| 1953 | #else |
| 1954 | ret = getpeereid(sock, uid, NULL); |
| 1955 | #endif |
| 1956 | |
| 1957 | if (ret < 0) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 1958 | ERR(NULL, "Failed to get credentials from unix socket (%s).", strerror(errno)); |
Michal Vasko | d391091 | 2020-04-20 09:12:49 +0200 | [diff] [blame] | 1959 | return -1; |
| 1960 | } |
apropp-molex | 4e903c3 | 2020-04-20 03:06:58 -0400 | [diff] [blame] | 1961 | return 0; |
| 1962 | } |
| 1963 | |
| 1964 | static int |
Michal Vasko | 5f352c5 | 2019-07-10 16:12:06 +0200 | [diff] [blame] | 1965 | nc_accept_unix(struct nc_session *session, int sock) |
| 1966 | { |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 1967 | #if defined (SO_PEERCRED) || defined (HAVE_GETPEEREID) |
Jan Kundrát | 6aa0eeb | 2021-10-08 21:10:05 +0200 | [diff] [blame] | 1968 | struct passwd *pw, pw_buf; |
Michal Vasko | 5f352c5 | 2019-07-10 16:12:06 +0200 | [diff] [blame] | 1969 | char *username; |
Michal Vasko | 5f352c5 | 2019-07-10 16:12:06 +0200 | [diff] [blame] | 1970 | session->ti_type = NC_TI_UNIX; |
Michal Vasko | 143aa14 | 2021-10-01 15:31:48 +0200 | [diff] [blame] | 1971 | uid_t uid = 0; |
Jan Kundrát | 6aa0eeb | 2021-10-08 21:10:05 +0200 | [diff] [blame] | 1972 | char *buf = NULL; |
| 1973 | size_t buf_len = 0; |
Michal Vasko | 5f352c5 | 2019-07-10 16:12:06 +0200 | [diff] [blame] | 1974 | |
Michal Vasko | d391091 | 2020-04-20 09:12:49 +0200 | [diff] [blame] | 1975 | if (nc_get_uid(sock, &uid)) { |
| 1976 | close(sock); |
Michal Vasko | 5f352c5 | 2019-07-10 16:12:06 +0200 | [diff] [blame] | 1977 | return -1; |
| 1978 | } |
| 1979 | |
Jan Kundrát | 6aa0eeb | 2021-10-08 21:10:05 +0200 | [diff] [blame] | 1980 | pw = nc_getpwuid(uid, &pw_buf, &buf, &buf_len); |
Michal Vasko | 5f352c5 | 2019-07-10 16:12:06 +0200 | [diff] [blame] | 1981 | if (pw == NULL) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 1982 | ERR(NULL, "Failed to find username for uid=%u (%s).\n", uid, strerror(errno)); |
Michal Vasko | 5f352c5 | 2019-07-10 16:12:06 +0200 | [diff] [blame] | 1983 | close(sock); |
| 1984 | return -1; |
| 1985 | } |
| 1986 | |
| 1987 | username = strdup(pw->pw_name); |
Michal Vasko | ccd2dd0 | 2021-10-11 09:13:01 +0200 | [diff] [blame] | 1988 | free(buf); |
Michal Vasko | 5f352c5 | 2019-07-10 16:12:06 +0200 | [diff] [blame] | 1989 | if (username == NULL) { |
| 1990 | ERRMEM; |
| 1991 | close(sock); |
| 1992 | return -1; |
| 1993 | } |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 1994 | session->username = username; |
Michal Vasko | 5f352c5 | 2019-07-10 16:12:06 +0200 | [diff] [blame] | 1995 | |
| 1996 | session->ti.unixsock.sock = sock; |
| 1997 | |
| 1998 | return 1; |
Claus Klein | 2209191 | 2020-01-20 13:45:47 +0100 | [diff] [blame] | 1999 | #else |
| 2000 | return -1; |
| 2001 | #endif |
Michal Vasko | 5f352c5 | 2019-07-10 16:12:06 +0200 | [diff] [blame] | 2002 | } |
| 2003 | |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 2004 | API int |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2005 | nc_server_add_endpt(const char *name, NC_TRANSPORT_IMPL ti) |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2006 | { |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 2007 | uint16_t i; |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 2008 | int ret = 0; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2009 | |
Michal Vasko | 45e53ae | 2016-04-07 11:46:03 +0200 | [diff] [blame] | 2010 | if (!name) { |
| 2011 | ERRARG("name"); |
| 2012 | return -1; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2013 | } |
| 2014 | |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 2015 | /* BIND LOCK */ |
| 2016 | pthread_mutex_lock(&server_opts.bind_lock); |
| 2017 | |
| 2018 | /* ENDPT WRITE LOCK */ |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2019 | pthread_rwlock_wrlock(&server_opts.endpt_lock); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 2020 | |
| 2021 | /* check name uniqueness */ |
| 2022 | for (i = 0; i < server_opts.endpt_count; ++i) { |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 2023 | if (!strcmp(server_opts.endpts[i].name, name)) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 2024 | ERR(NULL, "Endpoint \"%s\" already exists.", name); |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 2025 | ret = -1; |
| 2026 | goto cleanup; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 2027 | } |
| 2028 | } |
| 2029 | |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 2030 | server_opts.endpts = nc_realloc(server_opts.endpts, (server_opts.endpt_count + 1) * sizeof *server_opts.endpts); |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 2031 | if (!server_opts.endpts) { |
Michal Vasko | 4eb3c31 | 2016-03-01 14:09:37 +0100 | [diff] [blame] | 2032 | ERRMEM; |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 2033 | ret = -1; |
| 2034 | goto cleanup; |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 2035 | } |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 2036 | memset(&server_opts.endpts[server_opts.endpt_count], 0, sizeof *server_opts.endpts); |
| 2037 | ++server_opts.endpt_count; |
| 2038 | |
| 2039 | server_opts.endpts[server_opts.endpt_count - 1].name = strdup(name); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2040 | server_opts.endpts[server_opts.endpt_count - 1].ti = ti; |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 2041 | server_opts.endpts[server_opts.endpt_count - 1].ka.idle_time = 1; |
| 2042 | server_opts.endpts[server_opts.endpt_count - 1].ka.max_probes = 10; |
| 2043 | server_opts.endpts[server_opts.endpt_count - 1].ka.probe_interval = 5; |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 2044 | |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 2045 | server_opts.binds = nc_realloc(server_opts.binds, server_opts.endpt_count * sizeof *server_opts.binds); |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 2046 | if (!server_opts.binds) { |
| 2047 | ERRMEM; |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 2048 | ret = -1; |
| 2049 | goto cleanup; |
Michal Vasko | 4eb3c31 | 2016-03-01 14:09:37 +0100 | [diff] [blame] | 2050 | } |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2051 | |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 2052 | memset(&server_opts.binds[server_opts.endpt_count - 1], 0, sizeof *server_opts.binds); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2053 | server_opts.binds[server_opts.endpt_count - 1].sock = -1; |
| 2054 | |
| 2055 | switch (ti) { |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 2056 | #ifdef NC_ENABLED_SSH |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2057 | case NC_TI_LIBSSH: |
| 2058 | server_opts.endpts[server_opts.endpt_count - 1].opts.ssh = calloc(1, sizeof(struct nc_server_ssh_opts)); |
| 2059 | if (!server_opts.endpts[server_opts.endpt_count - 1].opts.ssh) { |
| 2060 | ERRMEM; |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 2061 | ret = -1; |
| 2062 | goto cleanup; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2063 | } |
| 2064 | server_opts.endpts[server_opts.endpt_count - 1].opts.ssh->auth_methods = |
roman | 41a11e4 | 2022-06-22 09:27:08 +0200 | [diff] [blame] | 2065 | NC_SSH_AUTH_PUBLICKEY | NC_SSH_AUTH_PASSWORD; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2066 | server_opts.endpts[server_opts.endpt_count - 1].opts.ssh->auth_attempts = 3; |
Michal Vasko | cbad4c5 | 2019-06-27 16:30:35 +0200 | [diff] [blame] | 2067 | server_opts.endpts[server_opts.endpt_count - 1].opts.ssh->auth_timeout = 30; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2068 | break; |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 2069 | #endif |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 2070 | #ifdef NC_ENABLED_TLS |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2071 | case NC_TI_OPENSSL: |
| 2072 | server_opts.endpts[server_opts.endpt_count - 1].opts.tls = calloc(1, sizeof(struct nc_server_tls_opts)); |
| 2073 | if (!server_opts.endpts[server_opts.endpt_count - 1].opts.tls) { |
| 2074 | ERRMEM; |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 2075 | ret = -1; |
| 2076 | goto cleanup; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2077 | } |
| 2078 | break; |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 2079 | #endif |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame] | 2080 | case NC_TI_UNIX: |
| 2081 | server_opts.endpts[server_opts.endpt_count - 1].opts.unixsock = calloc(1, sizeof(struct nc_server_unix_opts)); |
| 2082 | if (!server_opts.endpts[server_opts.endpt_count - 1].opts.unixsock) { |
| 2083 | ERRMEM; |
| 2084 | ret = -1; |
| 2085 | goto cleanup; |
| 2086 | } |
| 2087 | server_opts.endpts[server_opts.endpt_count - 1].opts.unixsock->mode = (mode_t)-1; |
| 2088 | server_opts.endpts[server_opts.endpt_count - 1].opts.unixsock->uid = (uid_t)-1; |
| 2089 | server_opts.endpts[server_opts.endpt_count - 1].opts.unixsock->gid = (gid_t)-1; |
| 2090 | break; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2091 | default: |
| 2092 | ERRINT; |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 2093 | ret = -1; |
| 2094 | goto cleanup; |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 2095 | } |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 2096 | |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 2097 | cleanup: |
| 2098 | /* ENDPT UNLOCK */ |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2099 | pthread_rwlock_unlock(&server_opts.endpt_lock); |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2100 | |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 2101 | /* BIND UNLOCK */ |
| 2102 | pthread_mutex_unlock(&server_opts.bind_lock); |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 2103 | |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 2104 | return ret; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2105 | } |
| 2106 | |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame] | 2107 | API int |
Michal Vasko | 5905037 | 2016-11-22 14:33:55 +0100 | [diff] [blame] | 2108 | nc_server_del_endpt(const char *name, NC_TRANSPORT_IMPL ti) |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2109 | { |
| 2110 | uint32_t i; |
| 2111 | int ret = -1; |
| 2112 | |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 2113 | /* BIND LOCK */ |
| 2114 | pthread_mutex_lock(&server_opts.bind_lock); |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 2115 | |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 2116 | /* ENDPT WRITE LOCK */ |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2117 | pthread_rwlock_wrlock(&server_opts.endpt_lock); |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2118 | |
Michal Vasko | 5905037 | 2016-11-22 14:33:55 +0100 | [diff] [blame] | 2119 | if (!name && !ti) { |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 2120 | /* remove all endpoints */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 2121 | for (i = 0; i < server_opts.endpt_count; ++i) { |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 2122 | free(server_opts.endpts[i].name); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2123 | switch (server_opts.endpts[i].ti) { |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 2124 | #ifdef NC_ENABLED_SSH |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2125 | case NC_TI_LIBSSH: |
| 2126 | nc_server_ssh_clear_opts(server_opts.endpts[i].opts.ssh); |
| 2127 | free(server_opts.endpts[i].opts.ssh); |
| 2128 | break; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 2129 | #endif |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 2130 | #ifdef NC_ENABLED_TLS |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2131 | case NC_TI_OPENSSL: |
| 2132 | nc_server_tls_clear_opts(server_opts.endpts[i].opts.tls); |
| 2133 | free(server_opts.endpts[i].opts.tls); |
| 2134 | break; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 2135 | #endif |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame] | 2136 | case NC_TI_UNIX: |
| 2137 | free(server_opts.endpts[i].opts.unixsock); |
| 2138 | break; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2139 | default: |
| 2140 | ERRINT; |
| 2141 | /* won't get here ...*/ |
| 2142 | break; |
| 2143 | } |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2144 | ret = 0; |
| 2145 | } |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 2146 | free(server_opts.endpts); |
| 2147 | server_opts.endpts = NULL; |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 2148 | |
| 2149 | /* remove all binds */ |
| 2150 | for (i = 0; i < server_opts.endpt_count; ++i) { |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 2151 | free(server_opts.binds[i].address); |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 2152 | if (server_opts.binds[i].sock > -1) { |
| 2153 | close(server_opts.binds[i].sock); |
| 2154 | } |
| 2155 | } |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 2156 | free(server_opts.binds); |
| 2157 | server_opts.binds = NULL; |
| 2158 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 2159 | server_opts.endpt_count = 0; |
| 2160 | |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 2161 | } else { |
Michal Vasko | 5905037 | 2016-11-22 14:33:55 +0100 | [diff] [blame] | 2162 | /* remove one endpoint with bind(s) or all endpoints using one transport protocol */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 2163 | for (i = 0; i < server_opts.endpt_count; ++i) { |
Michal Vasko | 5905037 | 2016-11-22 14:33:55 +0100 | [diff] [blame] | 2164 | if ((name && !strcmp(server_opts.endpts[i].name, name)) || (!name && (server_opts.endpts[i].ti == ti))) { |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 2165 | /* remove endpt */ |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 2166 | free(server_opts.endpts[i].name); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2167 | switch (server_opts.endpts[i].ti) { |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 2168 | #ifdef NC_ENABLED_SSH |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2169 | case NC_TI_LIBSSH: |
| 2170 | nc_server_ssh_clear_opts(server_opts.endpts[i].opts.ssh); |
| 2171 | free(server_opts.endpts[i].opts.ssh); |
| 2172 | break; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 2173 | #endif |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 2174 | #ifdef NC_ENABLED_TLS |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2175 | case NC_TI_OPENSSL: |
| 2176 | nc_server_tls_clear_opts(server_opts.endpts[i].opts.tls); |
| 2177 | free(server_opts.endpts[i].opts.tls); |
| 2178 | break; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 2179 | #endif |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame] | 2180 | case NC_TI_UNIX: |
| 2181 | free(server_opts.endpts[i].opts.unixsock); |
| 2182 | break; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2183 | default: |
| 2184 | ERRINT; |
| 2185 | break; |
| 2186 | } |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 2187 | |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 2188 | /* remove bind(s) */ |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 2189 | free(server_opts.binds[i].address); |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 2190 | if (server_opts.binds[i].sock > -1) { |
| 2191 | close(server_opts.binds[i].sock); |
| 2192 | } |
| 2193 | |
| 2194 | /* move last endpt and bind(s) to the empty space */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 2195 | --server_opts.endpt_count; |
Michal Vasko | 9ed67a7 | 2016-10-13 15:00:51 +0200 | [diff] [blame] | 2196 | if (!server_opts.endpt_count) { |
Michal Vasko | c025649 | 2016-02-02 12:19:06 +0100 | [diff] [blame] | 2197 | free(server_opts.binds); |
| 2198 | server_opts.binds = NULL; |
| 2199 | free(server_opts.endpts); |
| 2200 | server_opts.endpts = NULL; |
Michal Vasko | 9ed67a7 | 2016-10-13 15:00:51 +0200 | [diff] [blame] | 2201 | } else if (i < server_opts.endpt_count) { |
| 2202 | memcpy(&server_opts.binds[i], &server_opts.binds[server_opts.endpt_count], sizeof *server_opts.binds); |
| 2203 | memcpy(&server_opts.endpts[i], &server_opts.endpts[server_opts.endpt_count], sizeof *server_opts.endpts); |
Michal Vasko | c025649 | 2016-02-02 12:19:06 +0100 | [diff] [blame] | 2204 | } |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 2205 | |
| 2206 | ret = 0; |
Michal Vasko | 5905037 | 2016-11-22 14:33:55 +0100 | [diff] [blame] | 2207 | if (name) { |
| 2208 | break; |
| 2209 | } |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 2210 | } |
| 2211 | } |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2212 | } |
| 2213 | |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 2214 | /* ENDPT UNLOCK */ |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2215 | pthread_rwlock_unlock(&server_opts.endpt_lock); |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 2216 | |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 2217 | /* BIND UNLOCK */ |
| 2218 | pthread_mutex_unlock(&server_opts.bind_lock); |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2219 | |
| 2220 | return ret; |
| 2221 | } |
| 2222 | |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 2223 | API int |
| 2224 | nc_server_endpt_count(void) |
| 2225 | { |
| 2226 | return server_opts.endpt_count; |
| 2227 | } |
| 2228 | |
Michal Vasko | 1b5973e | 2020-01-30 16:05:46 +0100 | [diff] [blame] | 2229 | API int |
| 2230 | nc_server_is_endpt(const char *name) |
| 2231 | { |
| 2232 | uint16_t i; |
| 2233 | int found = 0; |
| 2234 | |
Michal Vasko | fb1724b | 2020-01-31 11:02:00 +0100 | [diff] [blame] | 2235 | if (!name) { |
| 2236 | return found; |
| 2237 | } |
| 2238 | |
Michal Vasko | 1b5973e | 2020-01-30 16:05:46 +0100 | [diff] [blame] | 2239 | /* ENDPT READ LOCK */ |
| 2240 | pthread_rwlock_rdlock(&server_opts.endpt_lock); |
| 2241 | |
| 2242 | /* check name uniqueness */ |
| 2243 | for (i = 0; i < server_opts.endpt_count; ++i) { |
| 2244 | if (!strcmp(server_opts.endpts[i].name, name)) { |
| 2245 | found = 1; |
| 2246 | break; |
| 2247 | } |
| 2248 | } |
| 2249 | |
| 2250 | /* ENDPT UNLOCK */ |
| 2251 | pthread_rwlock_unlock(&server_opts.endpt_lock); |
| 2252 | |
| 2253 | return found; |
| 2254 | } |
| 2255 | |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 2256 | int |
| 2257 | nc_server_endpt_set_address_port(const char *endpt_name, const char *address, uint16_t port) |
| 2258 | { |
| 2259 | struct nc_endpt *endpt; |
| 2260 | struct nc_bind *bind = NULL; |
| 2261 | uint16_t i; |
| 2262 | int sock = -1, set_addr, ret = 0; |
| 2263 | |
| 2264 | if (!endpt_name) { |
| 2265 | ERRARG("endpt_name"); |
| 2266 | return -1; |
| 2267 | } else if ((!address && !port) || (address && port)) { |
| 2268 | ERRARG("address and port"); |
| 2269 | return -1; |
| 2270 | } |
| 2271 | |
| 2272 | if (address) { |
| 2273 | set_addr = 1; |
| 2274 | } else { |
| 2275 | set_addr = 0; |
| 2276 | } |
| 2277 | |
| 2278 | /* BIND LOCK */ |
| 2279 | pthread_mutex_lock(&server_opts.bind_lock); |
| 2280 | |
| 2281 | /* ENDPT LOCK */ |
| 2282 | endpt = nc_server_endpt_lock_get(endpt_name, 0, &i); |
| 2283 | if (!endpt) { |
| 2284 | /* BIND UNLOCK */ |
| 2285 | pthread_mutex_unlock(&server_opts.bind_lock); |
| 2286 | return -1; |
| 2287 | } |
| 2288 | |
| 2289 | bind = &server_opts.binds[i]; |
| 2290 | |
| 2291 | if (set_addr) { |
| 2292 | port = bind->port; |
| 2293 | } else { |
| 2294 | address = bind->address; |
| 2295 | } |
| 2296 | |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 2297 | if (!set_addr && (endpt->ti == NC_TI_UNIX)) { |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 2298 | ret = -1; |
| 2299 | goto cleanup; |
| 2300 | } |
| 2301 | |
| 2302 | /* we have all the information we need to create a listening socket */ |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 2303 | if (address && (port || (endpt->ti == NC_TI_UNIX))) { |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 2304 | /* create new socket, close the old one */ |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 2305 | if (endpt->ti == NC_TI_UNIX) { |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 2306 | sock = nc_sock_listen_unix(address, endpt->opts.unixsock); |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 2307 | } else { |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 2308 | sock = nc_sock_listen_inet(address, port, &endpt->ka); |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 2309 | } |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 2310 | if (sock == -1) { |
| 2311 | ret = -1; |
| 2312 | goto cleanup; |
| 2313 | } |
| 2314 | |
| 2315 | if (bind->sock > -1) { |
| 2316 | close(bind->sock); |
| 2317 | } |
| 2318 | bind->sock = sock; |
| 2319 | } /* else we are just setting address or port */ |
| 2320 | |
| 2321 | if (set_addr) { |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 2322 | free(bind->address); |
| 2323 | bind->address = strdup(address); |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 2324 | } else { |
| 2325 | bind->port = port; |
| 2326 | } |
| 2327 | |
| 2328 | if (sock > -1) { |
Michal Vasko | 946cacb | 2020-08-12 11:18:08 +0200 | [diff] [blame] | 2329 | switch (endpt->ti) { |
| 2330 | case NC_TI_UNIX: |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 2331 | VRB(NULL, "Listening on %s for UNIX connections.", address); |
Michal Vasko | 946cacb | 2020-08-12 11:18:08 +0200 | [diff] [blame] | 2332 | break; |
| 2333 | #ifdef NC_ENABLED_SSH |
| 2334 | case NC_TI_LIBSSH: |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 2335 | VRB(NULL, "Listening on %s:%u for SSH connections.", address, port); |
Michal Vasko | 946cacb | 2020-08-12 11:18:08 +0200 | [diff] [blame] | 2336 | break; |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 2337 | #endif |
Michal Vasko | 946cacb | 2020-08-12 11:18:08 +0200 | [diff] [blame] | 2338 | #ifdef NC_ENABLED_TLS |
| 2339 | case NC_TI_OPENSSL: |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 2340 | VRB(NULL, "Listening on %s:%u for TLS connections.", address, port); |
Michal Vasko | 946cacb | 2020-08-12 11:18:08 +0200 | [diff] [blame] | 2341 | break; |
| 2342 | #endif |
| 2343 | default: |
| 2344 | ERRINT; |
| 2345 | break; |
| 2346 | } |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 2347 | } |
| 2348 | |
| 2349 | cleanup: |
| 2350 | /* ENDPT UNLOCK */ |
| 2351 | pthread_rwlock_unlock(&server_opts.endpt_lock); |
| 2352 | |
| 2353 | /* BIND UNLOCK */ |
| 2354 | pthread_mutex_unlock(&server_opts.bind_lock); |
| 2355 | |
| 2356 | return ret; |
| 2357 | } |
| 2358 | |
| 2359 | API int |
| 2360 | nc_server_endpt_set_address(const char *endpt_name, const char *address) |
| 2361 | { |
| 2362 | return nc_server_endpt_set_address_port(endpt_name, address, 0); |
| 2363 | } |
| 2364 | |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 2365 | #if defined (NC_ENABLED_SSH) || defined (NC_ENABLED_TLS) |
Michal Vasko | 946cacb | 2020-08-12 11:18:08 +0200 | [diff] [blame] | 2366 | |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 2367 | API int |
| 2368 | nc_server_endpt_set_port(const char *endpt_name, uint16_t port) |
| 2369 | { |
| 2370 | return nc_server_endpt_set_address_port(endpt_name, NULL, port); |
| 2371 | } |
| 2372 | |
Michal Vasko | 946cacb | 2020-08-12 11:18:08 +0200 | [diff] [blame] | 2373 | #endif |
| 2374 | |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 2375 | API int |
| 2376 | nc_server_endpt_set_perms(const char *endpt_name, mode_t mode, uid_t uid, gid_t gid) |
| 2377 | { |
| 2378 | struct nc_endpt *endpt; |
| 2379 | uint16_t i; |
| 2380 | int ret = 0; |
| 2381 | |
| 2382 | if (!endpt_name) { |
| 2383 | ERRARG("endpt_name"); |
| 2384 | return -1; |
| 2385 | } else if (mode == 0) { |
| 2386 | ERRARG("mode"); |
| 2387 | return -1; |
| 2388 | } |
| 2389 | |
| 2390 | /* ENDPT LOCK */ |
| 2391 | endpt = nc_server_endpt_lock_get(endpt_name, 0, &i); |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 2392 | if (!endpt) { |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 2393 | return -1; |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 2394 | } |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 2395 | |
| 2396 | if (endpt->ti != NC_TI_UNIX) { |
| 2397 | ret = -1; |
| 2398 | goto cleanup; |
| 2399 | } |
| 2400 | |
| 2401 | endpt->opts.unixsock->mode = mode; |
| 2402 | endpt->opts.unixsock->uid = uid; |
| 2403 | endpt->opts.unixsock->gid = gid; |
| 2404 | |
| 2405 | cleanup: |
| 2406 | /* ENDPT UNLOCK */ |
| 2407 | pthread_rwlock_unlock(&server_opts.endpt_lock); |
| 2408 | |
| 2409 | return ret; |
| 2410 | } |
| 2411 | |
| 2412 | API int |
| 2413 | nc_server_endpt_enable_keepalives(const char *endpt_name, int enable) |
| 2414 | { |
| 2415 | struct nc_endpt *endpt; |
| 2416 | int ret = 0; |
| 2417 | |
| 2418 | if (!endpt_name) { |
| 2419 | ERRARG("endpt_name"); |
| 2420 | return -1; |
| 2421 | } |
| 2422 | |
| 2423 | /* ENDPT LOCK */ |
| 2424 | endpt = nc_server_endpt_lock_get(endpt_name, 0, NULL); |
| 2425 | if (!endpt) { |
| 2426 | return -1; |
| 2427 | } |
| 2428 | |
| 2429 | endpt->ka.enabled = (enable ? 1 : 0); |
| 2430 | |
| 2431 | /* ENDPT UNLOCK */ |
| 2432 | pthread_rwlock_unlock(&server_opts.endpt_lock); |
| 2433 | |
| 2434 | return ret; |
| 2435 | } |
| 2436 | |
| 2437 | API int |
| 2438 | nc_server_endpt_set_keepalives(const char *endpt_name, int idle_time, int max_probes, int probe_interval) |
| 2439 | { |
| 2440 | struct nc_endpt *endpt; |
| 2441 | int ret = 0; |
| 2442 | |
| 2443 | if (!endpt_name) { |
| 2444 | ERRARG("endpt_name"); |
| 2445 | return -1; |
| 2446 | } |
| 2447 | |
| 2448 | /* ENDPT LOCK */ |
| 2449 | endpt = nc_server_endpt_lock_get(endpt_name, 0, NULL); |
| 2450 | if (!endpt) { |
| 2451 | return -1; |
| 2452 | } |
| 2453 | |
| 2454 | if (idle_time > -1) { |
| 2455 | endpt->ka.idle_time = idle_time; |
| 2456 | } |
| 2457 | if (max_probes > -1) { |
| 2458 | endpt->ka.max_probes = max_probes; |
| 2459 | } |
| 2460 | if (probe_interval > -1) { |
| 2461 | endpt->ka.probe_interval = probe_interval; |
| 2462 | } |
| 2463 | |
| 2464 | /* ENDPT UNLOCK */ |
| 2465 | pthread_rwlock_unlock(&server_opts.endpt_lock); |
| 2466 | |
| 2467 | return ret; |
| 2468 | } |
| 2469 | |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 2470 | API NC_MSG_TYPE |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 2471 | nc_accept(int timeout, const struct ly_ctx *ctx, struct nc_session **session) |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2472 | { |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 2473 | NC_MSG_TYPE msgtype; |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 2474 | int sock, ret; |
Michal Vasko | 5c2f795 | 2016-01-22 13:16:31 +0100 | [diff] [blame] | 2475 | char *host = NULL; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2476 | uint16_t port, bind_idx; |
Michal Vasko | 9fb4227 | 2017-10-05 13:50:05 +0200 | [diff] [blame] | 2477 | struct timespec ts_cur; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2478 | |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 2479 | if (!ctx) { |
| 2480 | ERRARG("ctx"); |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 2481 | return NC_MSG_ERROR; |
Michal Vasko | 45e53ae | 2016-04-07 11:46:03 +0200 | [diff] [blame] | 2482 | } else if (!session) { |
| 2483 | ERRARG("session"); |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 2484 | return NC_MSG_ERROR; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2485 | } |
| 2486 | |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 2487 | /* init ctx as needed */ |
| 2488 | nc_server_init_ctx(ctx); |
| 2489 | |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 2490 | /* BIND LOCK */ |
| 2491 | pthread_mutex_lock(&server_opts.bind_lock); |
Michal Vasko | 51e514d | 2016-02-02 15:51:52 +0100 | [diff] [blame] | 2492 | |
| 2493 | if (!server_opts.endpt_count) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 2494 | ERR(NULL, "No endpoints to accept sessions on."); |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 2495 | /* BIND UNLOCK */ |
| 2496 | pthread_mutex_unlock(&server_opts.bind_lock); |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 2497 | return NC_MSG_ERROR; |
Michal Vasko | 51e514d | 2016-02-02 15:51:52 +0100 | [diff] [blame] | 2498 | } |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 2499 | |
Michal Vasko | e2713da | 2016-08-22 16:06:40 +0200 | [diff] [blame] | 2500 | ret = nc_sock_accept_binds(server_opts.binds, server_opts.endpt_count, timeout, &host, &port, &bind_idx); |
Michal Vasko | 50456e8 | 2016-02-02 12:16:08 +0100 | [diff] [blame] | 2501 | if (ret < 1) { |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 2502 | /* BIND UNLOCK */ |
| 2503 | pthread_mutex_unlock(&server_opts.bind_lock); |
Michal Vasko | b737d75 | 2016-02-09 09:01:27 +0100 | [diff] [blame] | 2504 | free(host); |
Michal Vasko | 5e20347 | 2016-05-30 15:27:58 +0200 | [diff] [blame] | 2505 | if (!ret) { |
| 2506 | return NC_MSG_WOULDBLOCK; |
| 2507 | } |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 2508 | return NC_MSG_ERROR; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2509 | } |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 2510 | |
| 2511 | /* switch bind_lock for endpt_lock, so that another thread can accept another session */ |
| 2512 | /* ENDPT READ LOCK */ |
| 2513 | pthread_rwlock_rdlock(&server_opts.endpt_lock); |
| 2514 | |
| 2515 | /* BIND UNLOCK */ |
| 2516 | pthread_mutex_unlock(&server_opts.bind_lock); |
| 2517 | |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 2518 | sock = ret; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2519 | |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 2520 | *session = nc_new_session(NC_SERVER, 0); |
Michal Vasko | 686aa31 | 2016-01-21 15:58:18 +0100 | [diff] [blame] | 2521 | if (!(*session)) { |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2522 | ERRMEM; |
Michal Vasko | c14e3c8 | 2016-01-11 16:14:30 +0100 | [diff] [blame] | 2523 | close(sock); |
Michal Vasko | 5c2f795 | 2016-01-22 13:16:31 +0100 | [diff] [blame] | 2524 | free(host); |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 2525 | msgtype = NC_MSG_ERROR; |
| 2526 | goto cleanup; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2527 | } |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 2528 | (*session)->status = NC_STATUS_STARTING; |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 2529 | (*session)->ctx = (struct ly_ctx *)ctx; |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 2530 | (*session)->flags = NC_SESSION_SHAREDCTX; |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 2531 | (*session)->host = host; |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 2532 | (*session)->port = port; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2533 | |
Michal Vasko | c14e3c8 | 2016-01-11 16:14:30 +0100 | [diff] [blame] | 2534 | /* sock gets assigned to session or closed */ |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 2535 | #ifdef NC_ENABLED_SSH |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2536 | if (server_opts.endpts[bind_idx].ti == NC_TI_LIBSSH) { |
| 2537 | (*session)->data = server_opts.endpts[bind_idx].opts.ssh; |
Michal Vasko | b70c8b8 | 2017-03-17 09:09:29 +0100 | [diff] [blame] | 2538 | ret = nc_accept_ssh_session(*session, sock, NC_TRANSPORT_TIMEOUT); |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 2539 | if (ret < 0) { |
| 2540 | msgtype = NC_MSG_ERROR; |
| 2541 | goto cleanup; |
| 2542 | } else if (!ret) { |
| 2543 | msgtype = NC_MSG_WOULDBLOCK; |
| 2544 | goto cleanup; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2545 | } |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 2546 | } else |
| 2547 | #endif |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 2548 | #ifdef NC_ENABLED_TLS |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2549 | if (server_opts.endpts[bind_idx].ti == NC_TI_OPENSSL) { |
| 2550 | (*session)->data = server_opts.endpts[bind_idx].opts.tls; |
Michal Vasko | b70c8b8 | 2017-03-17 09:09:29 +0100 | [diff] [blame] | 2551 | ret = nc_accept_tls_session(*session, sock, NC_TRANSPORT_TIMEOUT); |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 2552 | if (ret < 0) { |
| 2553 | msgtype = NC_MSG_ERROR; |
| 2554 | goto cleanup; |
| 2555 | } else if (!ret) { |
| 2556 | msgtype = NC_MSG_WOULDBLOCK; |
| 2557 | goto cleanup; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2558 | } |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 2559 | } else |
| 2560 | #endif |
Olivier Matz | ac7fa2f | 2018-10-11 10:02:04 +0200 | [diff] [blame] | 2561 | if (server_opts.endpts[bind_idx].ti == NC_TI_UNIX) { |
| 2562 | (*session)->data = server_opts.endpts[bind_idx].opts.unixsock; |
| 2563 | ret = nc_accept_unix(*session, sock); |
| 2564 | if (ret < 0) { |
| 2565 | msgtype = NC_MSG_ERROR; |
| 2566 | goto cleanup; |
| 2567 | } |
| 2568 | } else { |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2569 | ERRINT; |
Michal Vasko | c14e3c8 | 2016-01-11 16:14:30 +0100 | [diff] [blame] | 2570 | close(sock); |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 2571 | msgtype = NC_MSG_ERROR; |
| 2572 | goto cleanup; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2573 | } |
| 2574 | |
Michal Vasko | 2cc4c68 | 2016-03-01 09:16:48 +0100 | [diff] [blame] | 2575 | (*session)->data = NULL; |
| 2576 | |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 2577 | /* ENDPT UNLOCK */ |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2578 | pthread_rwlock_unlock(&server_opts.endpt_lock); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 2579 | |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 2580 | /* assign new SID atomically */ |
Michal Vasko | 5bd4a3f | 2021-06-17 16:40:10 +0200 | [diff] [blame] | 2581 | (*session)->id = ATOMIC_INC_RELAXED(server_opts.new_session_id); |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 2582 | |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2583 | /* NETCONF handshake */ |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 2584 | msgtype = nc_handshake_io(*session); |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 2585 | if (msgtype != NC_MSG_HELLO) { |
Michal Vasko | e1a64ec | 2016-03-01 12:21:58 +0100 | [diff] [blame] | 2586 | nc_session_free(*session, NULL); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 2587 | *session = NULL; |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 2588 | return msgtype; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2589 | } |
Michal Vasko | 9fb4227 | 2017-10-05 13:50:05 +0200 | [diff] [blame] | 2590 | |
roman | 6ece9c5 | 2022-06-22 09:29:17 +0200 | [diff] [blame] | 2591 | nc_gettimespec_mono_add(&ts_cur, 0); |
Michal Vasko | 9fb4227 | 2017-10-05 13:50:05 +0200 | [diff] [blame] | 2592 | (*session)->opts.server.last_rpc = ts_cur.tv_sec; |
roman | 6ece9c5 | 2022-06-22 09:29:17 +0200 | [diff] [blame] | 2593 | nc_gettimespec_real_add(&ts_cur, 0); |
Michal Vasko | 9fb4227 | 2017-10-05 13:50:05 +0200 | [diff] [blame] | 2594 | (*session)->opts.server.session_start = ts_cur.tv_sec; |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 2595 | (*session)->status = NC_STATUS_RUNNING; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2596 | |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 2597 | return msgtype; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2598 | |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 2599 | cleanup: |
Michal Vasko | ade892d | 2017-02-22 13:40:35 +0100 | [diff] [blame] | 2600 | /* ENDPT UNLOCK */ |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2601 | pthread_rwlock_unlock(&server_opts.endpt_lock); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 2602 | |
Michal Vasko | e1a64ec | 2016-03-01 12:21:58 +0100 | [diff] [blame] | 2603 | nc_session_free(*session, NULL); |
Michal Vasko | 1a38c86 | 2016-01-15 15:50:07 +0100 | [diff] [blame] | 2604 | *session = NULL; |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 2605 | return msgtype; |
Michal Vasko | 9e036d5 | 2016-01-08 10:49:26 +0100 | [diff] [blame] | 2606 | } |
| 2607 | |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 2608 | #if defined (NC_ENABLED_SSH) || defined (NC_ENABLED_TLS) |
Michal Vasko | 946cacb | 2020-08-12 11:18:08 +0200 | [diff] [blame] | 2609 | |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2610 | /* client is expected to be locked */ |
| 2611 | static int |
| 2612 | _nc_server_ch_client_del_endpt(struct nc_ch_client *client, const char *endpt_name, NC_TRANSPORT_IMPL ti) |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2613 | { |
| 2614 | uint16_t i; |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2615 | int ret = -1; |
| 2616 | |
| 2617 | if (!endpt_name) { |
| 2618 | /* remove all endpoints */ |
| 2619 | for (i = 0; i < client->ch_endpt_count; ++i) { |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 2620 | free(client->ch_endpts[i].name); |
| 2621 | free(client->ch_endpts[i].address); |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2622 | if (client->ch_endpts[i].sock_pending != -1) { |
| 2623 | close(client->ch_endpts[i].sock_pending); |
| 2624 | } |
| 2625 | switch (client->ch_endpts[i].ti) { |
| 2626 | #ifdef NC_ENABLED_SSH |
| 2627 | case NC_TI_LIBSSH: |
| 2628 | nc_server_ssh_clear_opts(client->ch_endpts[i].opts.ssh); |
| 2629 | free(client->ch_endpts[i].opts.ssh); |
| 2630 | break; |
| 2631 | #endif |
| 2632 | #ifdef NC_ENABLED_TLS |
| 2633 | case NC_TI_OPENSSL: |
| 2634 | nc_server_tls_clear_opts(client->ch_endpts[i].opts.tls); |
| 2635 | free(client->ch_endpts[i].opts.tls); |
| 2636 | break; |
| 2637 | #endif |
| 2638 | default: |
| 2639 | ERRINT; |
| 2640 | /* won't get here ...*/ |
| 2641 | break; |
| 2642 | } |
| 2643 | } |
| 2644 | free(client->ch_endpts); |
| 2645 | client->ch_endpts = NULL; |
| 2646 | client->ch_endpt_count = 0; |
| 2647 | |
| 2648 | ret = 0; |
| 2649 | } else { |
| 2650 | for (i = 0; i < client->ch_endpt_count; ++i) { |
| 2651 | if (!strcmp(client->ch_endpts[i].name, endpt_name) && (!ti || (ti == client->ch_endpts[i].ti))) { |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 2652 | free(client->ch_endpts[i].name); |
| 2653 | free(client->ch_endpts[i].address); |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2654 | if (client->ch_endpts[i].sock_pending != -1) { |
| 2655 | close(client->ch_endpts[i].sock_pending); |
| 2656 | } |
| 2657 | switch (client->ch_endpts[i].ti) { |
| 2658 | #ifdef NC_ENABLED_SSH |
| 2659 | case NC_TI_LIBSSH: |
| 2660 | nc_server_ssh_clear_opts(client->ch_endpts[i].opts.ssh); |
| 2661 | free(client->ch_endpts[i].opts.ssh); |
| 2662 | break; |
| 2663 | #endif |
| 2664 | #ifdef NC_ENABLED_TLS |
| 2665 | case NC_TI_OPENSSL: |
| 2666 | nc_server_tls_clear_opts(client->ch_endpts[i].opts.tls); |
| 2667 | free(client->ch_endpts[i].opts.tls); |
| 2668 | break; |
| 2669 | #endif |
| 2670 | default: |
| 2671 | ERRINT; |
| 2672 | /* won't get here ...*/ |
| 2673 | break; |
| 2674 | } |
| 2675 | |
| 2676 | /* move last endpoint to the empty space */ |
| 2677 | --client->ch_endpt_count; |
| 2678 | if (i < client->ch_endpt_count) { |
| 2679 | memcpy(&client->ch_endpts[i], &client->ch_endpts[client->ch_endpt_count], sizeof *client->ch_endpts); |
| 2680 | } else if (!server_opts.ch_client_count) { |
| 2681 | free(server_opts.ch_clients); |
| 2682 | server_opts.ch_clients = NULL; |
| 2683 | } |
| 2684 | |
| 2685 | ret = 0; |
| 2686 | break; |
| 2687 | } |
| 2688 | } |
| 2689 | } |
| 2690 | |
| 2691 | return ret; |
| 2692 | } |
| 2693 | |
| 2694 | API int |
| 2695 | nc_server_ch_add_client(const char *name) |
| 2696 | { |
| 2697 | uint16_t i; |
| 2698 | struct nc_ch_client *client; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2699 | |
| 2700 | if (!name) { |
| 2701 | ERRARG("name"); |
| 2702 | return -1; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2703 | } |
| 2704 | |
| 2705 | /* WRITE LOCK */ |
| 2706 | pthread_rwlock_wrlock(&server_opts.ch_client_lock); |
| 2707 | |
| 2708 | /* check name uniqueness */ |
| 2709 | for (i = 0; i < server_opts.ch_client_count; ++i) { |
| 2710 | if (!strcmp(server_opts.ch_clients[i].name, name)) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 2711 | ERR(NULL, "Call Home client \"%s\" already exists.", name); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2712 | /* WRITE UNLOCK */ |
| 2713 | pthread_rwlock_unlock(&server_opts.ch_client_lock); |
| 2714 | return -1; |
| 2715 | } |
| 2716 | } |
| 2717 | |
| 2718 | ++server_opts.ch_client_count; |
| 2719 | server_opts.ch_clients = nc_realloc(server_opts.ch_clients, server_opts.ch_client_count * sizeof *server_opts.ch_clients); |
| 2720 | if (!server_opts.ch_clients) { |
| 2721 | ERRMEM; |
| 2722 | /* WRITE UNLOCK */ |
| 2723 | pthread_rwlock_unlock(&server_opts.ch_client_lock); |
| 2724 | return -1; |
| 2725 | } |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2726 | client = &server_opts.ch_clients[server_opts.ch_client_count - 1]; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2727 | |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 2728 | client->name = strdup(name); |
Michal Vasko | 5bd4a3f | 2021-06-17 16:40:10 +0200 | [diff] [blame] | 2729 | client->id = ATOMIC_INC_RELAXED(server_opts.new_client_id); |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2730 | client->ch_endpts = NULL; |
| 2731 | client->ch_endpt_count = 0; |
| 2732 | client->conn_type = 0; |
Michal Vasko | c4bc581 | 2016-10-13 10:59:36 +0200 | [diff] [blame] | 2733 | |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2734 | /* set CH default options */ |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2735 | client->start_with = NC_CH_FIRST_LISTED; |
| 2736 | client->max_attempts = 3; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2737 | |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2738 | pthread_mutex_init(&client->lock, NULL); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2739 | |
| 2740 | /* WRITE UNLOCK */ |
| 2741 | pthread_rwlock_unlock(&server_opts.ch_client_lock); |
| 2742 | |
| 2743 | return 0; |
| 2744 | } |
| 2745 | |
| 2746 | API int |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2747 | nc_server_ch_del_client(const char *name) |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2748 | { |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2749 | uint16_t i; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2750 | int ret = -1; |
| 2751 | |
| 2752 | /* WRITE LOCK */ |
| 2753 | pthread_rwlock_wrlock(&server_opts.ch_client_lock); |
| 2754 | |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2755 | if (!name) { |
| 2756 | /* remove all CH clients with endpoints */ |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2757 | for (i = 0; i < server_opts.ch_client_count; ++i) { |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 2758 | free(server_opts.ch_clients[i].name); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2759 | |
| 2760 | /* remove all endpoints */ |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2761 | _nc_server_ch_client_del_endpt(&server_opts.ch_clients[i], NULL, 0); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2762 | |
| 2763 | pthread_mutex_destroy(&server_opts.ch_clients[i].lock); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2764 | ret = 0; |
| 2765 | } |
| 2766 | free(server_opts.ch_clients); |
| 2767 | server_opts.ch_clients = NULL; |
| 2768 | |
| 2769 | server_opts.ch_client_count = 0; |
| 2770 | |
| 2771 | } else { |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2772 | /* remove one client with endpoints */ |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2773 | for (i = 0; i < server_opts.ch_client_count; ++i) { |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2774 | if (!strcmp(server_opts.ch_clients[i].name, name)) { |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 2775 | free(server_opts.ch_clients[i].name); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2776 | |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2777 | /* remove all endpoints */ |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2778 | _nc_server_ch_client_del_endpt(&server_opts.ch_clients[i], NULL, 0); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2779 | |
| 2780 | pthread_mutex_destroy(&server_opts.ch_clients[i].lock); |
| 2781 | |
| 2782 | /* move last client and endpoint(s) to the empty space */ |
| 2783 | --server_opts.ch_client_count; |
| 2784 | if (i < server_opts.ch_client_count) { |
| 2785 | memcpy(&server_opts.ch_clients[i], &server_opts.ch_clients[server_opts.ch_client_count], |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2786 | sizeof *server_opts.ch_clients); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2787 | } else if (!server_opts.ch_client_count) { |
| 2788 | free(server_opts.ch_clients); |
| 2789 | server_opts.ch_clients = NULL; |
| 2790 | } |
| 2791 | |
| 2792 | ret = 0; |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2793 | break; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2794 | } |
| 2795 | } |
| 2796 | } |
| 2797 | |
| 2798 | /* WRITE UNLOCK */ |
| 2799 | pthread_rwlock_unlock(&server_opts.ch_client_lock); |
| 2800 | |
| 2801 | return ret; |
| 2802 | } |
| 2803 | |
| 2804 | API int |
Michal Vasko | fb1724b | 2020-01-31 11:02:00 +0100 | [diff] [blame] | 2805 | nc_server_ch_is_client(const char *name) |
| 2806 | { |
| 2807 | uint16_t i; |
| 2808 | int found = 0; |
| 2809 | |
| 2810 | if (!name) { |
| 2811 | return found; |
| 2812 | } |
| 2813 | |
| 2814 | /* READ LOCK */ |
| 2815 | pthread_rwlock_rdlock(&server_opts.ch_client_lock); |
| 2816 | |
| 2817 | /* check name uniqueness */ |
| 2818 | for (i = 0; i < server_opts.ch_client_count; ++i) { |
| 2819 | if (!strcmp(server_opts.ch_clients[i].name, name)) { |
| 2820 | found = 1; |
| 2821 | break; |
| 2822 | } |
| 2823 | } |
| 2824 | |
| 2825 | /* UNLOCK */ |
| 2826 | pthread_rwlock_unlock(&server_opts.ch_client_lock); |
| 2827 | |
| 2828 | return found; |
| 2829 | } |
| 2830 | |
| 2831 | API int |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2832 | nc_server_ch_client_add_endpt(const char *client_name, const char *endpt_name, NC_TRANSPORT_IMPL ti) |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2833 | { |
| 2834 | uint16_t i; |
| 2835 | struct nc_ch_client *client; |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2836 | struct nc_ch_endpt *endpt; |
| 2837 | int ret = -1; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2838 | |
| 2839 | if (!client_name) { |
| 2840 | ERRARG("client_name"); |
| 2841 | return -1; |
| 2842 | } else if (!endpt_name) { |
| 2843 | ERRARG("endpt_name"); |
| 2844 | return -1; |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2845 | } else if (!ti) { |
| 2846 | ERRARG("ti"); |
| 2847 | return -1; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2848 | } |
| 2849 | |
| 2850 | /* LOCK */ |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2851 | nc_server_ch_client_lock(client_name, NULL, 0, &client); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2852 | if (!client) { |
| 2853 | return -1; |
| 2854 | } |
| 2855 | |
| 2856 | for (i = 0; i < client->ch_endpt_count; ++i) { |
| 2857 | if (!strcmp(client->ch_endpts[i].name, endpt_name)) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 2858 | ERR(NULL, "Call Home client \"%s\" endpoint \"%s\" already exists.", client_name, endpt_name); |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2859 | goto cleanup; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2860 | } |
| 2861 | } |
| 2862 | |
| 2863 | ++client->ch_endpt_count; |
| 2864 | client->ch_endpts = realloc(client->ch_endpts, client->ch_endpt_count * sizeof *client->ch_endpts); |
| 2865 | if (!client->ch_endpts) { |
| 2866 | ERRMEM; |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2867 | goto cleanup; |
| 2868 | } |
| 2869 | endpt = &client->ch_endpts[client->ch_endpt_count - 1]; |
| 2870 | |
| 2871 | memset(endpt, 0, sizeof *client->ch_endpts); |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 2872 | endpt->name = strdup(endpt_name); |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2873 | endpt->ti = ti; |
| 2874 | endpt->sock_pending = -1; |
| 2875 | endpt->ka.idle_time = 1; |
| 2876 | endpt->ka.max_probes = 10; |
| 2877 | endpt->ka.probe_interval = 5; |
| 2878 | |
| 2879 | switch (ti) { |
| 2880 | #ifdef NC_ENABLED_SSH |
| 2881 | case NC_TI_LIBSSH: |
| 2882 | endpt->opts.ssh = calloc(1, sizeof(struct nc_server_ssh_opts)); |
| 2883 | if (!endpt->opts.ssh) { |
| 2884 | ERRMEM; |
| 2885 | goto cleanup; |
| 2886 | } |
roman | 41a11e4 | 2022-06-22 09:27:08 +0200 | [diff] [blame] | 2887 | endpt->opts.ssh->auth_methods = NC_SSH_AUTH_PUBLICKEY | NC_SSH_AUTH_PASSWORD; |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2888 | endpt->opts.ssh->auth_attempts = 3; |
Michal Vasko | cbad4c5 | 2019-06-27 16:30:35 +0200 | [diff] [blame] | 2889 | endpt->opts.ssh->auth_timeout = 30; |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2890 | break; |
| 2891 | #endif |
| 2892 | #ifdef NC_ENABLED_TLS |
| 2893 | case NC_TI_OPENSSL: |
| 2894 | endpt->opts.tls = calloc(1, sizeof(struct nc_server_tls_opts)); |
| 2895 | if (!endpt->opts.tls) { |
| 2896 | ERRMEM; |
| 2897 | goto cleanup; |
| 2898 | } |
| 2899 | break; |
| 2900 | #endif |
| 2901 | default: |
| 2902 | ERRINT; |
| 2903 | goto cleanup; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2904 | } |
| 2905 | |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2906 | /* success */ |
| 2907 | ret = 0; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2908 | |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2909 | cleanup: |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2910 | /* UNLOCK */ |
| 2911 | nc_server_ch_client_unlock(client); |
| 2912 | |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2913 | return ret; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2914 | } |
| 2915 | |
| 2916 | API int |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2917 | nc_server_ch_client_del_endpt(const char *client_name, const char *endpt_name, NC_TRANSPORT_IMPL ti) |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2918 | { |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2919 | int ret; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2920 | struct nc_ch_client *client; |
| 2921 | |
| 2922 | if (!client_name) { |
| 2923 | ERRARG("client_name"); |
| 2924 | return -1; |
| 2925 | } |
| 2926 | |
| 2927 | /* LOCK */ |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2928 | nc_server_ch_client_lock(client_name, NULL, 0, &client); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2929 | if (!client) { |
| 2930 | return -1; |
| 2931 | } |
| 2932 | |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2933 | ret = _nc_server_ch_client_del_endpt(client, endpt_name, ti); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2934 | |
| 2935 | /* UNLOCK */ |
| 2936 | nc_server_ch_client_unlock(client); |
| 2937 | |
| 2938 | return ret; |
| 2939 | } |
| 2940 | |
| 2941 | API int |
Michal Vasko | fb1724b | 2020-01-31 11:02:00 +0100 | [diff] [blame] | 2942 | nc_server_ch_client_is_endpt(const char *client_name, const char *endpt_name) |
| 2943 | { |
| 2944 | uint16_t i; |
| 2945 | struct nc_ch_client *client = NULL; |
| 2946 | int found = 0; |
| 2947 | |
| 2948 | if (!client_name || !endpt_name) { |
| 2949 | return found; |
| 2950 | } |
| 2951 | |
| 2952 | /* READ LOCK */ |
| 2953 | pthread_rwlock_rdlock(&server_opts.ch_client_lock); |
| 2954 | |
| 2955 | for (i = 0; i < server_opts.ch_client_count; ++i) { |
| 2956 | if (!strcmp(server_opts.ch_clients[i].name, client_name)) { |
| 2957 | client = &server_opts.ch_clients[i]; |
| 2958 | break; |
| 2959 | } |
| 2960 | } |
| 2961 | |
| 2962 | if (!client) { |
| 2963 | goto cleanup; |
| 2964 | } |
| 2965 | |
| 2966 | for (i = 0; i < client->ch_endpt_count; ++i) { |
| 2967 | if (!strcmp(client->ch_endpts[i].name, endpt_name)) { |
| 2968 | found = 1; |
| 2969 | break; |
| 2970 | } |
| 2971 | } |
| 2972 | |
| 2973 | cleanup: |
| 2974 | /* UNLOCK */ |
| 2975 | pthread_rwlock_unlock(&server_opts.ch_client_lock); |
| 2976 | return found; |
| 2977 | } |
| 2978 | |
| 2979 | API int |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2980 | nc_server_ch_client_endpt_set_address(const char *client_name, const char *endpt_name, const char *address) |
| 2981 | { |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2982 | struct nc_ch_client *client; |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2983 | struct nc_ch_endpt *endpt; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2984 | |
| 2985 | if (!client_name) { |
| 2986 | ERRARG("client_name"); |
| 2987 | return -1; |
| 2988 | } else if (!endpt_name) { |
| 2989 | ERRARG("endpt_name"); |
| 2990 | return -1; |
| 2991 | } else if (!address) { |
| 2992 | ERRARG("address"); |
| 2993 | return -1; |
| 2994 | } |
| 2995 | |
| 2996 | /* LOCK */ |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 2997 | endpt = nc_server_ch_client_lock(client_name, endpt_name, 0, &client); |
| 2998 | if (!endpt) { |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 2999 | return -1; |
| 3000 | } |
| 3001 | |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 3002 | free(endpt->address); |
| 3003 | endpt->address = strdup(address); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3004 | |
| 3005 | /* UNLOCK */ |
| 3006 | nc_server_ch_client_unlock(client); |
| 3007 | |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 3008 | return 0; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3009 | } |
| 3010 | |
| 3011 | API int |
| 3012 | nc_server_ch_client_endpt_set_port(const char *client_name, const char *endpt_name, uint16_t port) |
| 3013 | { |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3014 | struct nc_ch_client *client; |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 3015 | struct nc_ch_endpt *endpt; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3016 | |
| 3017 | if (!client_name) { |
| 3018 | ERRARG("client_name"); |
| 3019 | return -1; |
| 3020 | } else if (!endpt_name) { |
| 3021 | ERRARG("endpt_name"); |
| 3022 | return -1; |
| 3023 | } else if (!port) { |
| 3024 | ERRARG("port"); |
| 3025 | return -1; |
| 3026 | } |
| 3027 | |
| 3028 | /* LOCK */ |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 3029 | endpt = nc_server_ch_client_lock(client_name, endpt_name, 0, &client); |
| 3030 | if (!endpt) { |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3031 | return -1; |
| 3032 | } |
| 3033 | |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 3034 | endpt->port = port; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3035 | |
| 3036 | /* UNLOCK */ |
| 3037 | nc_server_ch_client_unlock(client); |
| 3038 | |
ravsz | 5c5a442 | 2020-03-31 15:53:21 +0200 | [diff] [blame] | 3039 | return 0; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3040 | } |
| 3041 | |
| 3042 | API int |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3043 | nc_server_ch_client_endpt_enable_keepalives(const char *client_name, const char *endpt_name, int enable) |
| 3044 | { |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3045 | struct nc_ch_client *client; |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 3046 | struct nc_ch_endpt *endpt; |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3047 | |
| 3048 | if (!client_name) { |
| 3049 | ERRARG("client_name"); |
| 3050 | return -1; |
| 3051 | } else if (!endpt_name) { |
| 3052 | ERRARG("endpt_name"); |
| 3053 | return -1; |
| 3054 | } |
| 3055 | |
| 3056 | /* LOCK */ |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 3057 | endpt = nc_server_ch_client_lock(client_name, endpt_name, 0, &client); |
| 3058 | if (!endpt) { |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3059 | return -1; |
| 3060 | } |
| 3061 | |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 3062 | endpt->ka.enabled = (enable ? 1 : 0); |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3063 | |
| 3064 | /* UNLOCK */ |
| 3065 | nc_server_ch_client_unlock(client); |
| 3066 | |
Michal Vasko | 9af829a | 2019-09-12 13:50:00 +0200 | [diff] [blame] | 3067 | return 0; |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3068 | } |
| 3069 | |
| 3070 | API int |
| 3071 | nc_server_ch_client_endpt_set_keepalives(const char *client_name, const char *endpt_name, int idle_time, int max_probes, |
| 3072 | int probe_interval) |
| 3073 | { |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3074 | struct nc_ch_client *client; |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 3075 | struct nc_ch_endpt *endpt; |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3076 | |
| 3077 | if (!client_name) { |
| 3078 | ERRARG("client_name"); |
| 3079 | return -1; |
| 3080 | } else if (!endpt_name) { |
| 3081 | ERRARG("endpt_name"); |
| 3082 | return -1; |
| 3083 | } |
| 3084 | |
| 3085 | /* LOCK */ |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 3086 | endpt = nc_server_ch_client_lock(client_name, endpt_name, 0, &client); |
| 3087 | if (!endpt) { |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3088 | return -1; |
| 3089 | } |
| 3090 | |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 3091 | if (idle_time > -1) { |
| 3092 | endpt->ka.idle_time = idle_time; |
| 3093 | } |
| 3094 | if (max_probes > -1) { |
| 3095 | endpt->ka.max_probes = max_probes; |
| 3096 | } |
| 3097 | if (probe_interval > -1) { |
| 3098 | endpt->ka.probe_interval = probe_interval; |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3099 | } |
| 3100 | |
| 3101 | /* UNLOCK */ |
| 3102 | nc_server_ch_client_unlock(client); |
| 3103 | |
Michal Vasko | 9af829a | 2019-09-12 13:50:00 +0200 | [diff] [blame] | 3104 | return 0; |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3105 | } |
| 3106 | |
| 3107 | API int |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3108 | nc_server_ch_client_set_conn_type(const char *client_name, NC_CH_CONN_TYPE conn_type) |
| 3109 | { |
| 3110 | struct nc_ch_client *client; |
| 3111 | |
| 3112 | if (!client_name) { |
| 3113 | ERRARG("client_name"); |
| 3114 | return -1; |
| 3115 | } else if (!conn_type) { |
| 3116 | ERRARG("conn_type"); |
| 3117 | return -1; |
| 3118 | } |
| 3119 | |
| 3120 | /* LOCK */ |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 3121 | nc_server_ch_client_lock(client_name, NULL, 0, &client); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3122 | if (!client) { |
| 3123 | return -1; |
| 3124 | } |
| 3125 | |
| 3126 | if (client->conn_type != conn_type) { |
| 3127 | client->conn_type = conn_type; |
| 3128 | |
| 3129 | /* set default options */ |
| 3130 | switch (conn_type) { |
| 3131 | case NC_CH_PERSIST: |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3132 | /* no options */ |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3133 | break; |
| 3134 | case NC_CH_PERIOD: |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3135 | client->conn.period.period = 60; |
| 3136 | client->conn.period.anchor_time = 0; |
| 3137 | client->conn.period.idle_timeout = 120; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3138 | break; |
| 3139 | default: |
| 3140 | ERRINT; |
| 3141 | break; |
| 3142 | } |
| 3143 | } |
| 3144 | |
| 3145 | /* UNLOCK */ |
| 3146 | nc_server_ch_client_unlock(client); |
| 3147 | |
| 3148 | return 0; |
| 3149 | } |
| 3150 | |
| 3151 | API int |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3152 | nc_server_ch_client_periodic_set_period(const char *client_name, uint16_t period) |
| 3153 | { |
| 3154 | struct nc_ch_client *client; |
| 3155 | |
| 3156 | if (!client_name) { |
| 3157 | ERRARG("client_name"); |
| 3158 | return -1; |
| 3159 | } else if (!period) { |
| 3160 | ERRARG("period"); |
| 3161 | return -1; |
| 3162 | } |
| 3163 | |
| 3164 | /* LOCK */ |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 3165 | nc_server_ch_client_lock(client_name, NULL, 0, &client); |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3166 | if (!client) { |
| 3167 | return -1; |
| 3168 | } |
| 3169 | |
| 3170 | if (client->conn_type != NC_CH_PERIOD) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 3171 | ERR(NULL, "Call Home client \"%s\" is not of periodic connection type.", client_name); |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3172 | /* UNLOCK */ |
| 3173 | nc_server_ch_client_unlock(client); |
| 3174 | return -1; |
| 3175 | } |
| 3176 | |
| 3177 | client->conn.period.period = period; |
| 3178 | |
| 3179 | /* UNLOCK */ |
| 3180 | nc_server_ch_client_unlock(client); |
| 3181 | |
| 3182 | return 0; |
| 3183 | } |
| 3184 | |
| 3185 | API int |
| 3186 | nc_server_ch_client_periodic_set_anchor_time(const char *client_name, time_t anchor_time) |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3187 | { |
| 3188 | struct nc_ch_client *client; |
| 3189 | |
| 3190 | if (!client_name) { |
| 3191 | ERRARG("client_name"); |
| 3192 | return -1; |
| 3193 | } |
| 3194 | |
| 3195 | /* LOCK */ |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 3196 | nc_server_ch_client_lock(client_name, NULL, 0, &client); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3197 | if (!client) { |
| 3198 | return -1; |
| 3199 | } |
| 3200 | |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3201 | if (client->conn_type != NC_CH_PERIOD) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 3202 | ERR(NULL, "Call Home client \"%s\" is not of periodic connection type.", client_name); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3203 | /* UNLOCK */ |
| 3204 | nc_server_ch_client_unlock(client); |
| 3205 | return -1; |
| 3206 | } |
| 3207 | |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3208 | client->conn.period.anchor_time = anchor_time; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3209 | |
| 3210 | /* UNLOCK */ |
| 3211 | nc_server_ch_client_unlock(client); |
| 3212 | |
| 3213 | return 0; |
| 3214 | } |
| 3215 | |
| 3216 | API int |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3217 | nc_server_ch_client_periodic_set_idle_timeout(const char *client_name, uint16_t idle_timeout) |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3218 | { |
| 3219 | struct nc_ch_client *client; |
| 3220 | |
| 3221 | if (!client_name) { |
| 3222 | ERRARG("client_name"); |
| 3223 | return -1; |
| 3224 | } |
| 3225 | |
| 3226 | /* LOCK */ |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 3227 | nc_server_ch_client_lock(client_name, NULL, 0, &client); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3228 | if (!client) { |
| 3229 | return -1; |
| 3230 | } |
| 3231 | |
| 3232 | if (client->conn_type != NC_CH_PERIOD) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 3233 | ERR(NULL, "Call Home client \"%s\" is not of periodic connection type.", client_name); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3234 | /* UNLOCK */ |
| 3235 | nc_server_ch_client_unlock(client); |
| 3236 | return -1; |
| 3237 | } |
| 3238 | |
| 3239 | client->conn.period.idle_timeout = idle_timeout; |
| 3240 | |
| 3241 | /* UNLOCK */ |
| 3242 | nc_server_ch_client_unlock(client); |
| 3243 | |
| 3244 | return 0; |
| 3245 | } |
| 3246 | |
| 3247 | API int |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3248 | nc_server_ch_client_set_start_with(const char *client_name, NC_CH_START_WITH start_with) |
| 3249 | { |
| 3250 | struct nc_ch_client *client; |
| 3251 | |
| 3252 | if (!client_name) { |
| 3253 | ERRARG("client_name"); |
| 3254 | return -1; |
| 3255 | } |
| 3256 | |
| 3257 | /* LOCK */ |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 3258 | nc_server_ch_client_lock(client_name, NULL, 0, &client); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3259 | if (!client) { |
| 3260 | return -1; |
| 3261 | } |
| 3262 | |
| 3263 | client->start_with = start_with; |
| 3264 | |
| 3265 | /* UNLOCK */ |
| 3266 | nc_server_ch_client_unlock(client); |
| 3267 | |
| 3268 | return 0; |
| 3269 | } |
| 3270 | |
| 3271 | API int |
| 3272 | nc_server_ch_client_set_max_attempts(const char *client_name, uint8_t max_attempts) |
| 3273 | { |
| 3274 | struct nc_ch_client *client; |
| 3275 | |
| 3276 | if (!client_name) { |
| 3277 | ERRARG("client_name"); |
| 3278 | return -1; |
| 3279 | } else if (!max_attempts) { |
| 3280 | ERRARG("max_attempts"); |
| 3281 | return -1; |
| 3282 | } |
| 3283 | |
| 3284 | /* LOCK */ |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 3285 | nc_server_ch_client_lock(client_name, NULL, 0, &client); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3286 | if (!client) { |
| 3287 | return -1; |
| 3288 | } |
| 3289 | |
| 3290 | client->max_attempts = max_attempts; |
| 3291 | |
| 3292 | /* UNLOCK */ |
| 3293 | nc_server_ch_client_unlock(client); |
| 3294 | |
| 3295 | return 0; |
| 3296 | } |
| 3297 | |
Michal Vasko | 056f53c | 2022-10-21 13:38:15 +0200 | [diff] [blame] | 3298 | /** |
| 3299 | * @brief Create a connection for an endpoint. |
| 3300 | * |
| 3301 | * Client lock is expected to be held. |
| 3302 | * |
| 3303 | * @param[in] endpt Endpoint to use. |
| 3304 | * @param[in] acquire_ctx_cb Callback for acquiring the libyang context. |
| 3305 | * @param[in] release_ctx_cb Callback for releasing the libyang context. |
| 3306 | * @param[in] ctx_cb_data Context callbacks data. |
| 3307 | * @param[out] session Created NC session. |
| 3308 | * @return NC_MSG values. |
| 3309 | */ |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3310 | static NC_MSG_TYPE |
Michal Vasko | 58bac1c | 2022-03-24 15:25:26 +0100 | [diff] [blame] | 3311 | nc_connect_ch_endpt(struct nc_ch_endpt *endpt, nc_server_ch_session_acquire_ctx_cb acquire_ctx_cb, |
| 3312 | nc_server_ch_session_release_ctx_cb release_ctx_cb, void *ctx_cb_data, struct nc_session **session) |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 3313 | { |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 3314 | NC_MSG_TYPE msgtype; |
Michal Vasko | 58bac1c | 2022-03-24 15:25:26 +0100 | [diff] [blame] | 3315 | const struct ly_ctx *ctx = NULL; |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 3316 | int sock, ret; |
Michal Vasko | 9fb4227 | 2017-10-05 13:50:05 +0200 | [diff] [blame] | 3317 | struct timespec ts_cur; |
Michal Vasko | 66032bc | 2019-01-22 15:03:12 +0100 | [diff] [blame] | 3318 | char *ip_host; |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 3319 | |
Michal Vasko | 056f53c | 2022-10-21 13:38:15 +0200 | [diff] [blame] | 3320 | sock = nc_sock_connect(endpt->address, endpt->port, NC_CH_CONNECT_TIMEOUT, &endpt->ka, &endpt->sock_pending, &ip_host); |
Michal Vasko | c61c449 | 2016-01-25 11:13:34 +0100 | [diff] [blame] | 3321 | if (sock < 0) { |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 3322 | return NC_MSG_ERROR; |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 3323 | } |
| 3324 | |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 3325 | /* acquire context */ |
| 3326 | ctx = acquire_ctx_cb(ctx_cb_data); |
| 3327 | if (!ctx) { |
| 3328 | ERR(NULL, "Failed to acquire context for a new Call Home session."); |
| 3329 | close(sock); |
| 3330 | free(ip_host); |
| 3331 | return NC_MSG_ERROR; |
| 3332 | } |
| 3333 | |
| 3334 | /* create session */ |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 3335 | *session = nc_new_session(NC_SERVER, 0); |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 3336 | if (!(*session)) { |
| 3337 | ERRMEM; |
| 3338 | close(sock); |
Michal Vasko | 66032bc | 2019-01-22 15:03:12 +0100 | [diff] [blame] | 3339 | free(ip_host); |
Michal Vasko | d530d36 | 2022-09-07 10:07:57 +0200 | [diff] [blame] | 3340 | msgtype = NC_MSG_ERROR; |
| 3341 | goto fail; |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 3342 | } |
| 3343 | (*session)->status = NC_STATUS_STARTING; |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 3344 | (*session)->ctx = (struct ly_ctx *)ctx; |
Michal Vasko | c4bc581 | 2016-10-13 10:59:36 +0200 | [diff] [blame] | 3345 | (*session)->flags = NC_SESSION_SHAREDCTX; |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 3346 | (*session)->host = ip_host; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3347 | (*session)->port = endpt->port; |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 3348 | |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 3349 | /* sock gets assigned to session or closed */ |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 3350 | #ifdef NC_ENABLED_SSH |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 3351 | if (endpt->ti == NC_TI_LIBSSH) { |
| 3352 | (*session)->data = endpt->opts.ssh; |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 3353 | ret = nc_accept_ssh_session(*session, sock, NC_TRANSPORT_TIMEOUT); |
Michal Vasko | 2cc4c68 | 2016-03-01 09:16:48 +0100 | [diff] [blame] | 3354 | (*session)->data = NULL; |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 3355 | |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 3356 | if (ret < 0) { |
| 3357 | msgtype = NC_MSG_ERROR; |
| 3358 | goto fail; |
| 3359 | } else if (!ret) { |
| 3360 | msgtype = NC_MSG_WOULDBLOCK; |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 3361 | goto fail; |
| 3362 | } |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 3363 | } else |
| 3364 | #endif |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 3365 | #ifdef NC_ENABLED_TLS |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 3366 | if (endpt->ti == NC_TI_OPENSSL) { |
| 3367 | (*session)->data = endpt->opts.tls; |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 3368 | ret = nc_accept_tls_session(*session, sock, NC_TRANSPORT_TIMEOUT); |
Michal Vasko | 2cc4c68 | 2016-03-01 09:16:48 +0100 | [diff] [blame] | 3369 | (*session)->data = NULL; |
Michal Vasko | c6b9c7b | 2016-01-28 11:10:08 +0100 | [diff] [blame] | 3370 | |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 3371 | if (ret < 0) { |
| 3372 | msgtype = NC_MSG_ERROR; |
| 3373 | goto fail; |
| 3374 | } else if (!ret) { |
| 3375 | msgtype = NC_MSG_WOULDBLOCK; |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 3376 | goto fail; |
| 3377 | } |
Michal Vasko | 3d865d2 | 2016-01-28 16:00:53 +0100 | [diff] [blame] | 3378 | } else |
| 3379 | #endif |
| 3380 | { |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 3381 | ERRINT; |
| 3382 | close(sock); |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 3383 | msgtype = NC_MSG_ERROR; |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 3384 | goto fail; |
| 3385 | } |
| 3386 | |
| 3387 | /* assign new SID atomically */ |
Michal Vasko | 5bd4a3f | 2021-06-17 16:40:10 +0200 | [diff] [blame] | 3388 | (*session)->id = ATOMIC_INC_RELAXED(server_opts.new_session_id); |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 3389 | |
| 3390 | /* NETCONF handshake */ |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 3391 | msgtype = nc_handshake_io(*session); |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 3392 | if (msgtype != NC_MSG_HELLO) { |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 3393 | goto fail; |
| 3394 | } |
Michal Vasko | 9fb4227 | 2017-10-05 13:50:05 +0200 | [diff] [blame] | 3395 | |
roman | 6ece9c5 | 2022-06-22 09:29:17 +0200 | [diff] [blame] | 3396 | nc_gettimespec_mono_add(&ts_cur, 0); |
Michal Vasko | 9fb4227 | 2017-10-05 13:50:05 +0200 | [diff] [blame] | 3397 | (*session)->opts.server.last_rpc = ts_cur.tv_sec; |
roman | 6ece9c5 | 2022-06-22 09:29:17 +0200 | [diff] [blame] | 3398 | nc_gettimespec_real_add(&ts_cur, 0); |
Michal Vasko | 9fb4227 | 2017-10-05 13:50:05 +0200 | [diff] [blame] | 3399 | (*session)->opts.server.session_start = ts_cur.tv_sec; |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 3400 | (*session)->status = NC_STATUS_RUNNING; |
| 3401 | |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 3402 | return msgtype; |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 3403 | |
| 3404 | fail: |
Michal Vasko | e1a64ec | 2016-03-01 12:21:58 +0100 | [diff] [blame] | 3405 | nc_session_free(*session, NULL); |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 3406 | *session = NULL; |
Michal Vasko | 58bac1c | 2022-03-24 15:25:26 +0100 | [diff] [blame] | 3407 | if (ctx) { |
| 3408 | release_ctx_cb(ctx_cb_data); |
| 3409 | } |
Michal Vasko | 71090fc | 2016-05-24 16:37:28 +0200 | [diff] [blame] | 3410 | return msgtype; |
Michal Vasko | b05053d | 2016-01-22 16:12:06 +0100 | [diff] [blame] | 3411 | } |
| 3412 | |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3413 | struct nc_ch_client_thread_arg { |
| 3414 | char *client_name; |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 3415 | nc_server_ch_session_acquire_ctx_cb acquire_ctx_cb; |
| 3416 | nc_server_ch_session_release_ctx_cb release_ctx_cb; |
| 3417 | void *ctx_cb_data; |
| 3418 | nc_server_ch_new_session_cb new_session_cb; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3419 | }; |
| 3420 | |
| 3421 | static struct nc_ch_client * |
| 3422 | nc_server_ch_client_with_endpt_lock(const char *name) |
| 3423 | { |
| 3424 | struct nc_ch_client *client; |
| 3425 | |
| 3426 | while (1) { |
| 3427 | /* LOCK */ |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 3428 | nc_server_ch_client_lock(name, NULL, 0, &client); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3429 | if (!client) { |
| 3430 | return NULL; |
| 3431 | } |
| 3432 | if (client->ch_endpt_count) { |
| 3433 | return client; |
| 3434 | } |
| 3435 | /* no endpoints defined yet */ |
| 3436 | |
| 3437 | /* UNLOCK */ |
| 3438 | nc_server_ch_client_unlock(client); |
| 3439 | |
| 3440 | usleep(NC_CH_NO_ENDPT_WAIT * 1000); |
| 3441 | } |
| 3442 | |
| 3443 | return NULL; |
| 3444 | } |
| 3445 | |
| 3446 | static int |
| 3447 | nc_server_ch_client_thread_session_cond_wait(struct nc_session *session, struct nc_ch_client_thread_arg *data) |
| 3448 | { |
Michal Vasko | 3f05a09 | 2018-03-13 10:39:49 +0100 | [diff] [blame] | 3449 | int ret = 0, r; |
Michal Vasko | c4bc581 | 2016-10-13 10:59:36 +0200 | [diff] [blame] | 3450 | uint32_t idle_timeout; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3451 | struct timespec ts; |
| 3452 | struct nc_ch_client *client; |
| 3453 | |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3454 | /* CH LOCK */ |
Michal Vasko | acf9847 | 2021-02-04 15:33:57 +0100 | [diff] [blame] | 3455 | pthread_mutex_lock(&session->opts.server.ch_lock); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3456 | |
Michal Vasko | feccb31 | 2022-03-24 15:24:59 +0100 | [diff] [blame] | 3457 | session->flags |= NC_SESSION_CH_THREAD; |
Michal Vasko | 0db3db5 | 2021-03-03 10:45:42 +0100 | [diff] [blame] | 3458 | |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3459 | /* give the session to the user */ |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 3460 | if (data->new_session_cb(data->client_name, session)) { |
Michal Vasko | f1c26c2 | 2021-04-12 16:34:33 +0200 | [diff] [blame] | 3461 | /* something is wrong, free the session */ |
Michal Vasko | feccb31 | 2022-03-24 15:24:59 +0100 | [diff] [blame] | 3462 | session->flags &= ~NC_SESSION_CH_THREAD; |
Michal Vasko | f1c26c2 | 2021-04-12 16:34:33 +0200 | [diff] [blame] | 3463 | |
| 3464 | /* CH UNLOCK */ |
| 3465 | pthread_mutex_unlock(&session->opts.server.ch_lock); |
| 3466 | |
Michal Vasko | 77d56d7 | 2022-09-07 10:30:48 +0200 | [diff] [blame] | 3467 | /* session terminated, free it and release its context */ |
Michal Vasko | f1c26c2 | 2021-04-12 16:34:33 +0200 | [diff] [blame] | 3468 | nc_session_free(session, NULL); |
Michal Vasko | 58bac1c | 2022-03-24 15:25:26 +0100 | [diff] [blame] | 3469 | data->release_ctx_cb(data->ctx_cb_data); |
| 3470 | return ret; |
Michal Vasko | f1c26c2 | 2021-04-12 16:34:33 +0200 | [diff] [blame] | 3471 | } |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3472 | |
| 3473 | do { |
roman | 6ece9c5 | 2022-06-22 09:29:17 +0200 | [diff] [blame] | 3474 | nc_gettimespec_real_add(&ts, NC_CH_NO_ENDPT_WAIT); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3475 | |
Michal Vasko | 0db3db5 | 2021-03-03 10:45:42 +0100 | [diff] [blame] | 3476 | /* CH COND WAIT */ |
Michal Vasko | acf9847 | 2021-02-04 15:33:57 +0100 | [diff] [blame] | 3477 | r = pthread_cond_timedwait(&session->opts.server.ch_cond, &session->opts.server.ch_lock, &ts); |
Michal Vasko | 3f05a09 | 2018-03-13 10:39:49 +0100 | [diff] [blame] | 3478 | if (!r) { |
| 3479 | /* we were woken up, something probably happened */ |
| 3480 | if (session->status != NC_STATUS_RUNNING) { |
| 3481 | break; |
| 3482 | } |
| 3483 | } else if (r != ETIMEDOUT) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 3484 | ERR(session, "Pthread condition timedwait failed (%s).", strerror(r)); |
Michal Vasko | 3f05a09 | 2018-03-13 10:39:49 +0100 | [diff] [blame] | 3485 | ret = -1; |
| 3486 | break; |
Michal Vasko | 2e39ed9 | 2018-03-12 13:51:44 +0100 | [diff] [blame] | 3487 | } |
| 3488 | |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3489 | /* check whether the client was not removed */ |
| 3490 | /* LOCK */ |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 3491 | nc_server_ch_client_lock(data->client_name, NULL, 0, &client); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3492 | if (!client) { |
| 3493 | /* client was removed, finish thread */ |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 3494 | VRB(session, "Call Home client \"%s\" removed, but an established session will not be terminated.", |
Michal Vasko | adf30f0 | 2019-06-24 09:34:47 +0200 | [diff] [blame] | 3495 | data->client_name); |
Michal Vasko | 3f05a09 | 2018-03-13 10:39:49 +0100 | [diff] [blame] | 3496 | ret = 1; |
| 3497 | break; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3498 | } |
| 3499 | |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3500 | if (client->conn_type == NC_CH_PERIOD) { |
Michal Vasko | c4bc581 | 2016-10-13 10:59:36 +0200 | [diff] [blame] | 3501 | idle_timeout = client->conn.period.idle_timeout; |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3502 | } else { |
| 3503 | idle_timeout = 0; |
Michal Vasko | c4bc581 | 2016-10-13 10:59:36 +0200 | [diff] [blame] | 3504 | } |
| 3505 | |
roman | 6ece9c5 | 2022-06-22 09:29:17 +0200 | [diff] [blame] | 3506 | nc_gettimespec_mono_add(&ts, 0); |
Michal Vasko | df68e7e | 2022-04-21 11:04:00 +0200 | [diff] [blame] | 3507 | if (!nc_session_get_notif_status(session) && idle_timeout && (ts.tv_sec >= session->opts.server.last_rpc + idle_timeout)) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 3508 | VRB(session, "Call Home client \"%s\": session idle timeout elapsed.", client->name); |
Michal Vasko | c4bc581 | 2016-10-13 10:59:36 +0200 | [diff] [blame] | 3509 | session->status = NC_STATUS_INVALID; |
| 3510 | session->term_reason = NC_SESSION_TERM_TIMEOUT; |
| 3511 | } |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3512 | |
| 3513 | /* UNLOCK */ |
| 3514 | nc_server_ch_client_unlock(client); |
| 3515 | |
| 3516 | } while (session->status == NC_STATUS_RUNNING); |
| 3517 | |
Michal Vasko | feccb31 | 2022-03-24 15:24:59 +0100 | [diff] [blame] | 3518 | /* signal to nc_session_free() that CH thread is terminating */ |
| 3519 | session->flags &= ~NC_SESSION_CH_THREAD; |
| 3520 | pthread_cond_signal(&session->opts.server.ch_cond); |
Michal Vasko | 0db3db5 | 2021-03-03 10:45:42 +0100 | [diff] [blame] | 3521 | |
Michal Vasko | 2737742 | 2018-03-15 08:59:35 +0100 | [diff] [blame] | 3522 | /* CH UNLOCK */ |
Michal Vasko | acf9847 | 2021-02-04 15:33:57 +0100 | [diff] [blame] | 3523 | pthread_mutex_unlock(&session->opts.server.ch_lock); |
Michal Vasko | 2737742 | 2018-03-15 08:59:35 +0100 | [diff] [blame] | 3524 | |
Michal Vasko | 3f05a09 | 2018-03-13 10:39:49 +0100 | [diff] [blame] | 3525 | return ret; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3526 | } |
| 3527 | |
| 3528 | static void * |
| 3529 | nc_ch_client_thread(void *arg) |
| 3530 | { |
| 3531 | struct nc_ch_client_thread_arg *data = (struct nc_ch_client_thread_arg *)arg; |
| 3532 | NC_MSG_TYPE msgtype; |
| 3533 | uint8_t cur_attempts = 0; |
Peter Feige | d05f225 | 2018-09-03 08:09:47 +0000 | [diff] [blame] | 3534 | uint16_t next_endpt_index; |
Michal Vasko | 9550cf1 | 2017-03-21 15:33:58 +0100 | [diff] [blame] | 3535 | char *cur_endpt_name = NULL; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3536 | struct nc_ch_endpt *cur_endpt; |
| 3537 | struct nc_session *session; |
| 3538 | struct nc_ch_client *client; |
Michal Vasko | 5d0a1e3 | 2022-09-07 07:46:36 +0200 | [diff] [blame] | 3539 | uint32_t client_id, reconnect_in; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3540 | |
| 3541 | /* LOCK */ |
| 3542 | client = nc_server_ch_client_with_endpt_lock(data->client_name); |
| 3543 | if (!client) { |
| 3544 | goto cleanup; |
| 3545 | } |
Andrew Langefeld | 6ed922d | 2018-09-12 14:08:32 -0500 | [diff] [blame] | 3546 | client_id = client->id; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3547 | |
| 3548 | cur_endpt = &client->ch_endpts[0]; |
| 3549 | cur_endpt_name = strdup(cur_endpt->name); |
| 3550 | |
| 3551 | while (1) { |
Michal Vasko | 056f53c | 2022-10-21 13:38:15 +0200 | [diff] [blame] | 3552 | if (!cur_attempts) { |
| 3553 | VRB(NULL, "Call Home client \"%s\" endpoint \"%s\" connecting...", data->client_name, cur_endpt_name); |
| 3554 | } |
Michal Vasko | 58bac1c | 2022-03-24 15:25:26 +0100 | [diff] [blame] | 3555 | msgtype = nc_connect_ch_endpt(cur_endpt, data->acquire_ctx_cb, data->release_ctx_cb, data->ctx_cb_data, &session); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3556 | |
| 3557 | if (msgtype == NC_MSG_HELLO) { |
| 3558 | /* UNLOCK */ |
| 3559 | nc_server_ch_client_unlock(client); |
| 3560 | |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 3561 | VRB(NULL, "Call Home client \"%s\" session %u established.", data->client_name, session->id); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3562 | if (nc_server_ch_client_thread_session_cond_wait(session, data)) { |
| 3563 | goto cleanup; |
| 3564 | } |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 3565 | VRB(NULL, "Call Home client \"%s\" session terminated.", data->client_name); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3566 | |
| 3567 | /* LOCK */ |
| 3568 | client = nc_server_ch_client_with_endpt_lock(data->client_name); |
| 3569 | if (!client) { |
| 3570 | goto cleanup; |
| 3571 | } |
Andrew Langefeld | 6ed922d | 2018-09-12 14:08:32 -0500 | [diff] [blame] | 3572 | if (client->id != client_id) { |
| 3573 | nc_server_ch_client_unlock(client); |
| 3574 | goto cleanup; |
| 3575 | } |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3576 | |
| 3577 | /* session changed status -> it was disconnected for whatever reason, |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3578 | * persistent connection immediately tries to reconnect, periodic connects at specific times */ |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3579 | if (client->conn_type == NC_CH_PERIOD) { |
Michal Vasko | 18e1fa0 | 2021-11-29 09:02:05 +0100 | [diff] [blame] | 3580 | if (client->conn.period.anchor_time) { |
| 3581 | /* anchored */ |
| 3582 | reconnect_in = (time(NULL) - client->conn.period.anchor_time) % (client->conn.period.period * 60); |
| 3583 | } else { |
| 3584 | /* fixed timeout */ |
| 3585 | reconnect_in = client->conn.period.period * 60; |
| 3586 | } |
| 3587 | |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3588 | /* UNLOCK */ |
| 3589 | nc_server_ch_client_unlock(client); |
| 3590 | |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3591 | /* sleep until we should reconnect TODO wake up sometimes to check for new notifications */ |
Michal Vasko | 75b836e | 2022-09-07 07:51:45 +0200 | [diff] [blame] | 3592 | VRB(NULL, "Call Home client \"%s\" reconnecting in %" PRIu32 " seconds.", data->client_name, reconnect_in); |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3593 | sleep(reconnect_in); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3594 | |
| 3595 | /* LOCK */ |
| 3596 | client = nc_server_ch_client_with_endpt_lock(data->client_name); |
| 3597 | if (!client) { |
| 3598 | goto cleanup; |
| 3599 | } |
Andrew Langefeld | 6ed922d | 2018-09-12 14:08:32 -0500 | [diff] [blame] | 3600 | if (client->id != client_id) { |
| 3601 | nc_server_ch_client_unlock(client); |
| 3602 | goto cleanup; |
| 3603 | } |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3604 | } |
| 3605 | |
| 3606 | /* set next endpoint to try */ |
| 3607 | if (client->start_with == NC_CH_FIRST_LISTED) { |
Peter Feige | d05f225 | 2018-09-03 08:09:47 +0000 | [diff] [blame] | 3608 | next_endpt_index = 0; |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3609 | } else if (client->start_with == NC_CH_LAST_CONNECTED) { |
Peter Feige | d05f225 | 2018-09-03 08:09:47 +0000 | [diff] [blame] | 3610 | /* we keep the current one but due to unlock/lock we have to find it again */ |
| 3611 | for (next_endpt_index = 0; next_endpt_index < client->ch_endpt_count; ++next_endpt_index) { |
| 3612 | if (!strcmp(client->ch_endpts[next_endpt_index].name, cur_endpt_name)) { |
| 3613 | break; |
| 3614 | } |
| 3615 | } |
| 3616 | if (next_endpt_index >= client->ch_endpt_count) { |
| 3617 | /* endpoint was removed, start with the first one */ |
| 3618 | next_endpt_index = 0; |
| 3619 | } |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 3620 | } else { |
| 3621 | /* just get a random index */ |
| 3622 | next_endpt_index = rand() % client->ch_endpt_count; |
Peter Feige | d05f225 | 2018-09-03 08:09:47 +0000 | [diff] [blame] | 3623 | } |
| 3624 | |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3625 | } else { |
Michal Vasko | 6bb116b | 2016-10-26 13:53:46 +0200 | [diff] [blame] | 3626 | /* UNLOCK */ |
| 3627 | nc_server_ch_client_unlock(client); |
| 3628 | |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3629 | /* session was not created */ |
Michal Vasko | d8951c7 | 2022-09-26 09:39:29 +0200 | [diff] [blame] | 3630 | sleep(NC_CH_ENDPT_BACKOFF_WAIT); |
Michal Vasko | c4bc581 | 2016-10-13 10:59:36 +0200 | [diff] [blame] | 3631 | |
Michal Vasko | 6bb116b | 2016-10-26 13:53:46 +0200 | [diff] [blame] | 3632 | /* LOCK */ |
| 3633 | client = nc_server_ch_client_with_endpt_lock(data->client_name); |
| 3634 | if (!client) { |
| 3635 | goto cleanup; |
| 3636 | } |
Andrew Langefeld | 6ed922d | 2018-09-12 14:08:32 -0500 | [diff] [blame] | 3637 | if (client->id != client_id) { |
| 3638 | nc_server_ch_client_unlock(client); |
| 3639 | goto cleanup; |
| 3640 | } |
Michal Vasko | 6bb116b | 2016-10-26 13:53:46 +0200 | [diff] [blame] | 3641 | |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3642 | ++cur_attempts; |
Michal Vasko | 4cb8de5 | 2018-04-23 14:38:07 +0200 | [diff] [blame] | 3643 | |
| 3644 | /* try to find our endpoint again */ |
Peter Feige | d05f225 | 2018-09-03 08:09:47 +0000 | [diff] [blame] | 3645 | for (next_endpt_index = 0; next_endpt_index < client->ch_endpt_count; ++next_endpt_index) { |
| 3646 | if (!strcmp(client->ch_endpts[next_endpt_index].name, cur_endpt_name)) { |
Michal Vasko | 4cb8de5 | 2018-04-23 14:38:07 +0200 | [diff] [blame] | 3647 | break; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3648 | } |
Michal Vasko | 4cb8de5 | 2018-04-23 14:38:07 +0200 | [diff] [blame] | 3649 | } |
| 3650 | |
Peter Feige | d05f225 | 2018-09-03 08:09:47 +0000 | [diff] [blame] | 3651 | if (next_endpt_index >= client->ch_endpt_count) { |
Michal Vasko | 4cb8de5 | 2018-04-23 14:38:07 +0200 | [diff] [blame] | 3652 | /* endpoint was removed, start with the first one */ |
Michal Vasko | 056f53c | 2022-10-21 13:38:15 +0200 | [diff] [blame] | 3653 | VRB(NULL, "Call Home client \"%s\" endpoint \"%s\" removed.", data->client_name, cur_endpt_name); |
Peter Feige | d05f225 | 2018-09-03 08:09:47 +0000 | [diff] [blame] | 3654 | next_endpt_index = 0; |
Michal Vasko | 4cb8de5 | 2018-04-23 14:38:07 +0200 | [diff] [blame] | 3655 | cur_attempts = 0; |
| 3656 | } else if (cur_attempts == client->max_attempts) { |
| 3657 | /* we have tried to connect to this endpoint enough times */ |
Michal Vasko | 056f53c | 2022-10-21 13:38:15 +0200 | [diff] [blame] | 3658 | VRB(NULL, "Call Home client \"%s\" endpoint \"%s\" failed connection attempt limit %" PRIu8 " reached.", |
| 3659 | data->client_name, cur_endpt_name, client->max_attempts); |
| 3660 | |
| 3661 | /* clear a pending socket, if any */ |
| 3662 | cur_endpt = &client->ch_endpts[next_endpt_index]; |
| 3663 | if (cur_endpt->sock_pending > -1) { |
| 3664 | close(cur_endpt->sock_pending); |
| 3665 | cur_endpt->sock_pending = -1; |
| 3666 | } |
| 3667 | |
Peter Feige | d05f225 | 2018-09-03 08:09:47 +0000 | [diff] [blame] | 3668 | if (next_endpt_index < client->ch_endpt_count - 1) { |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3669 | /* just go to the next endpoint */ |
Peter Feige | d05f225 | 2018-09-03 08:09:47 +0000 | [diff] [blame] | 3670 | ++next_endpt_index; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3671 | } else { |
Michal Vasko | 4cb8de5 | 2018-04-23 14:38:07 +0200 | [diff] [blame] | 3672 | /* cur_endpoint is the last, start with the first one */ |
Michal Vasko | 2a22534 | 2018-09-05 08:38:34 +0200 | [diff] [blame] | 3673 | next_endpt_index = 0; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3674 | } |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3675 | cur_attempts = 0; |
| 3676 | } /* else we keep the current one */ |
| 3677 | } |
Peter Feige | d05f225 | 2018-09-03 08:09:47 +0000 | [diff] [blame] | 3678 | |
| 3679 | cur_endpt = &client->ch_endpts[next_endpt_index]; |
| 3680 | free(cur_endpt_name); |
| 3681 | cur_endpt_name = strdup(cur_endpt->name); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3682 | } |
| 3683 | |
| 3684 | cleanup: |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 3685 | VRB(NULL, "Call Home client \"%s\" thread exit.", data->client_name); |
Michal Vasko | 9550cf1 | 2017-03-21 15:33:58 +0100 | [diff] [blame] | 3686 | free(cur_endpt_name); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3687 | free(data->client_name); |
| 3688 | free(data); |
| 3689 | return NULL; |
| 3690 | } |
| 3691 | |
| 3692 | API int |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 3693 | nc_connect_ch_client_dispatch(const char *client_name, nc_server_ch_session_acquire_ctx_cb acquire_ctx_cb, |
| 3694 | nc_server_ch_session_release_ctx_cb release_ctx_cb, void *ctx_cb_data, nc_server_ch_new_session_cb new_session_cb) |
Michal Vasko | 3f05a09 | 2018-03-13 10:39:49 +0100 | [diff] [blame] | 3695 | { |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3696 | int ret; |
| 3697 | pthread_t tid; |
| 3698 | struct nc_ch_client_thread_arg *arg; |
| 3699 | |
| 3700 | if (!client_name) { |
| 3701 | ERRARG("client_name"); |
| 3702 | return -1; |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 3703 | } else if (!acquire_ctx_cb) { |
| 3704 | ERRARG("acquire_ctx_cb"); |
| 3705 | return -1; |
| 3706 | } else if (!release_ctx_cb) { |
| 3707 | ERRARG("release_ctx_cb"); |
| 3708 | return -1; |
| 3709 | } else if (!new_session_cb) { |
| 3710 | ERRARG("new_session_cb"); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3711 | return -1; |
| 3712 | } |
| 3713 | |
| 3714 | arg = malloc(sizeof *arg); |
| 3715 | if (!arg) { |
| 3716 | ERRMEM; |
| 3717 | return -1; |
| 3718 | } |
| 3719 | arg->client_name = strdup(client_name); |
| 3720 | if (!arg->client_name) { |
| 3721 | ERRMEM; |
| 3722 | free(arg); |
| 3723 | return -1; |
| 3724 | } |
Michal Vasko | 9322407 | 2021-11-09 12:14:28 +0100 | [diff] [blame] | 3725 | arg->acquire_ctx_cb = acquire_ctx_cb; |
| 3726 | arg->release_ctx_cb = release_ctx_cb; |
| 3727 | arg->ctx_cb_data = ctx_cb_data; |
| 3728 | arg->new_session_cb = new_session_cb; |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3729 | |
| 3730 | ret = pthread_create(&tid, NULL, nc_ch_client_thread, arg); |
| 3731 | if (ret) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 3732 | ERR(NULL, "Creating a new thread failed (%s).", strerror(ret)); |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3733 | free(arg->client_name); |
| 3734 | free(arg); |
| 3735 | return -1; |
| 3736 | } |
| 3737 | /* the thread now manages arg */ |
| 3738 | |
| 3739 | pthread_detach(tid); |
| 3740 | |
| 3741 | return 0; |
| 3742 | } |
| 3743 | |
Radek Krejci | 53691be | 2016-02-22 13:58:37 +0100 | [diff] [blame] | 3744 | #endif /* NC_ENABLED_SSH || NC_ENABLED_TLS */ |
Michal Vasko | f835235 | 2016-05-24 09:11:36 +0200 | [diff] [blame] | 3745 | |
Michal Vasko | c45ebd3 | 2016-05-25 11:17:36 +0200 | [diff] [blame] | 3746 | API time_t |
| 3747 | nc_session_get_start_time(const struct nc_session *session) |
Michal Vasko | f835235 | 2016-05-24 09:11:36 +0200 | [diff] [blame] | 3748 | { |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3749 | if (!session || (session->side != NC_SERVER)) { |
Michal Vasko | f835235 | 2016-05-24 09:11:36 +0200 | [diff] [blame] | 3750 | ERRARG("session"); |
Michal Vasko | c45ebd3 | 2016-05-25 11:17:36 +0200 | [diff] [blame] | 3751 | return 0; |
Michal Vasko | f835235 | 2016-05-24 09:11:36 +0200 | [diff] [blame] | 3752 | } |
| 3753 | |
Michal Vasko | 2e6defd | 2016-10-07 15:48:15 +0200 | [diff] [blame] | 3754 | return session->opts.server.session_start; |
Michal Vasko | f835235 | 2016-05-24 09:11:36 +0200 | [diff] [blame] | 3755 | } |
Michal Vasko | 3486a7c | 2017-03-03 13:28:07 +0100 | [diff] [blame] | 3756 | |
| 3757 | API void |
Michal Vasko | 71dbd77 | 2021-03-23 14:08:37 +0100 | [diff] [blame] | 3758 | nc_session_inc_notif_status(struct nc_session *session) |
Michal Vasko | 3486a7c | 2017-03-03 13:28:07 +0100 | [diff] [blame] | 3759 | { |
| 3760 | if (!session || (session->side != NC_SERVER)) { |
| 3761 | ERRARG("session"); |
| 3762 | return; |
| 3763 | } |
| 3764 | |
Michal Vasko | df68e7e | 2022-04-21 11:04:00 +0200 | [diff] [blame] | 3765 | /* NTF STATUS LOCK */ |
| 3766 | pthread_mutex_lock(&session->opts.server.ntf_status_lock); |
| 3767 | |
Michal Vasko | 71dbd77 | 2021-03-23 14:08:37 +0100 | [diff] [blame] | 3768 | ++session->opts.server.ntf_status; |
Michal Vasko | df68e7e | 2022-04-21 11:04:00 +0200 | [diff] [blame] | 3769 | |
| 3770 | /* NTF STATUS UNLOCK */ |
| 3771 | pthread_mutex_unlock(&session->opts.server.ntf_status_lock); |
Michal Vasko | 71dbd77 | 2021-03-23 14:08:37 +0100 | [diff] [blame] | 3772 | } |
| 3773 | |
| 3774 | API void |
| 3775 | nc_session_dec_notif_status(struct nc_session *session) |
| 3776 | { |
| 3777 | if (!session || (session->side != NC_SERVER)) { |
| 3778 | ERRARG("session"); |
| 3779 | return; |
| 3780 | } |
| 3781 | |
Michal Vasko | df68e7e | 2022-04-21 11:04:00 +0200 | [diff] [blame] | 3782 | /* NTF STATUS LOCK */ |
| 3783 | pthread_mutex_lock(&session->opts.server.ntf_status_lock); |
| 3784 | |
Michal Vasko | 71dbd77 | 2021-03-23 14:08:37 +0100 | [diff] [blame] | 3785 | if (session->opts.server.ntf_status) { |
| 3786 | --session->opts.server.ntf_status; |
| 3787 | } |
Michal Vasko | df68e7e | 2022-04-21 11:04:00 +0200 | [diff] [blame] | 3788 | |
| 3789 | /* NTF STATUS UNLOCK */ |
| 3790 | pthread_mutex_unlock(&session->opts.server.ntf_status_lock); |
Michal Vasko | 3486a7c | 2017-03-03 13:28:07 +0100 | [diff] [blame] | 3791 | } |
| 3792 | |
| 3793 | API int |
| 3794 | nc_session_get_notif_status(const struct nc_session *session) |
| 3795 | { |
Michal Vasko | df68e7e | 2022-04-21 11:04:00 +0200 | [diff] [blame] | 3796 | uint32_t ntf_status; |
| 3797 | |
Michal Vasko | 3486a7c | 2017-03-03 13:28:07 +0100 | [diff] [blame] | 3798 | if (!session || (session->side != NC_SERVER)) { |
| 3799 | ERRARG("session"); |
| 3800 | return 0; |
| 3801 | } |
| 3802 | |
Michal Vasko | df68e7e | 2022-04-21 11:04:00 +0200 | [diff] [blame] | 3803 | /* NTF STATUS LOCK */ |
| 3804 | pthread_mutex_lock(&((struct nc_session *)session)->opts.server.ntf_status_lock); |
| 3805 | |
| 3806 | ntf_status = session->opts.server.ntf_status; |
| 3807 | |
| 3808 | /* NTF STATUS UNLOCK */ |
| 3809 | pthread_mutex_unlock(&((struct nc_session *)session)->opts.server.ntf_status_lock); |
| 3810 | |
| 3811 | return ntf_status; |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 3812 | } |
Michal Vasko | 8f43059 | 2019-02-26 08:32:54 +0100 | [diff] [blame] | 3813 | |
| 3814 | API int |
| 3815 | nc_session_is_callhome(const struct nc_session *session) |
| 3816 | { |
| 3817 | if (!session || (session->side != NC_SERVER)) { |
| 3818 | ERRARG("session"); |
| 3819 | return 0; |
| 3820 | } |
| 3821 | |
| 3822 | if (session->flags & NC_SESSION_CALLHOME) { |
| 3823 | return 1; |
| 3824 | } |
| 3825 | |
| 3826 | return 0; |
| 3827 | } |