blob: 5485e891f64730f55121cc5f92c0b689a2159e29 [file] [log] [blame]
Michal Vasko086311b2016-01-08 09:53:11 +01001/**
Michal Vasko95ea9ff2021-11-09 12:29:14 +01002 * @file session_server.c
3 * @author Michal Vasko <mvasko@cesnet.cz>
4 * @brief libnetconf2 server session manipulation functions
Michal Vasko086311b2016-01-08 09:53:11 +01005 *
Michal Vasko95ea9ff2021-11-09 12:29:14 +01006 * @copyright
7 * Copyright (c) 2015 - 2021 CESNET, z.s.p.o.
Michal Vasko086311b2016-01-08 09:53:11 +01008 *
Radek Krejci9b81f5b2016-02-24 13:14:49 +01009 * 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 Vaskoafd416b2016-02-25 14:51:46 +010012 *
Radek Krejci9b81f5b2016-02-24 13:14:49 +010013 * https://opensource.org/licenses/BSD-3-Clause
Michal Vasko086311b2016-01-08 09:53:11 +010014 */
apropp-molex4e903c32020-04-20 03:06:58 -040015#define _QNX_SOURCE /* getpeereid */
Olivier Matzac7fa2f2018-10-11 10:02:04 +020016#define _GNU_SOURCE /* signals, threads, SO_PEERCRED */
Michal Vasko086311b2016-01-08 09:53:11 +010017
Michal Vaskob83a3fa2021-05-26 09:53:42 +020018#include <arpa/inet.h>
Michal Vasko77e83572022-07-21 15:31:15 +020019#include <assert.h>
Michal Vasko086311b2016-01-08 09:53:11 +010020#include <errno.h>
Michal Vaskob83a3fa2021-05-26 09:53:42 +020021#include <fcntl.h>
Olivier Matzac7fa2f2018-10-11 10:02:04 +020022#include <netinet/in.h>
23#include <netinet/tcp.h>
Michal Vaskob83a3fa2021-05-26 09:53:42 +020024#include <poll.h>
Michal Vaskob48aa812016-01-18 14:13:09 +010025#include <pthread.h>
Olivier Matzac7fa2f2018-10-11 10:02:04 +020026#include <pwd.h>
Michal Vaskob83a3fa2021-05-26 09:53:42 +020027#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 Vasko086311b2016-01-08 09:53:11 +010036
Michal Vasko7a20d2e2021-05-19 16:40:23 +020037#include "compat.h"
Michal Vasko1a38c862016-01-15 15:50:07 +010038#include "libnetconf.h"
Michal Vasko086311b2016-01-08 09:53:11 +010039#include "session_server.h"
Michal Vasko0bdf70b2019-06-24 19:20:20 +020040#include "session_server_ch.h"
Michal Vasko086311b2016-01-08 09:53:11 +010041
Michal Vaskob48aa812016-01-18 14:13:09 +010042struct nc_server_opts server_opts = {
Michal Vaskoade892d2017-02-22 13:40:35 +010043#ifdef NC_ENABLED_SSH
44 .authkey_lock = PTHREAD_MUTEX_INITIALIZER,
45#endif
46 .bind_lock = PTHREAD_MUTEX_INITIALIZER,
Michal Vasko2e6defd2016-10-07 15:48:15 +020047 .endpt_lock = PTHREAD_RWLOCK_INITIALIZER,
48 .ch_client_lock = PTHREAD_RWLOCK_INITIALIZER
Michal Vaskob48aa812016-01-18 14:13:09 +010049};
Michal Vaskoc6b9c7b2016-01-28 11:10:08 +010050
fanchanghu966f2de2016-07-21 02:28:57 -040051static nc_rpc_clb global_rpc_clb = NULL;
52
Michal Vasko3031aae2016-01-27 16:07:18 +010053struct nc_endpt *
Michal Vaskoade892d2017-02-22 13:40:35 +010054nc_server_endpt_lock_get(const char *name, NC_TRANSPORT_IMPL ti, uint16_t *idx)
Michal Vasko3031aae2016-01-27 16:07:18 +010055{
56 uint16_t i;
Michal Vaskoc6b9c7b2016-01-28 11:10:08 +010057 struct nc_endpt *endpt = NULL;
58
Michal Vaskoddce1212019-05-24 09:58:49 +020059 if (!name) {
60 ERRARG("endpt_name");
61 return NULL;
62 }
63
Michal Vaskoade892d2017-02-22 13:40:35 +010064 /* WRITE LOCK */
65 pthread_rwlock_wrlock(&server_opts.endpt_lock);
Michal Vasko3031aae2016-01-27 16:07:18 +010066
67 for (i = 0; i < server_opts.endpt_count; ++i) {
Michal Vasko2e6defd2016-10-07 15:48:15 +020068 if (!strcmp(server_opts.endpts[i].name, name) && (!ti || (server_opts.endpts[i].ti == ti))) {
Michal Vaskoc6b9c7b2016-01-28 11:10:08 +010069 endpt = &server_opts.endpts[i];
70 break;
Michal Vasko3031aae2016-01-27 16:07:18 +010071 }
72 }
73
Michal Vaskoc6b9c7b2016-01-28 11:10:08 +010074 if (!endpt) {
Michal Vasko05532772021-06-03 12:12:38 +020075 ERR(NULL, "Endpoint \"%s\" was not found.", name);
Michal Vaskoade892d2017-02-22 13:40:35 +010076 /* UNLOCK */
Michal Vasko2e6defd2016-10-07 15:48:15 +020077 pthread_rwlock_unlock(&server_opts.endpt_lock);
Michal Vaskoc6b9c7b2016-01-28 11:10:08 +010078 return NULL;
79 }
80
Michal Vaskoe2713da2016-08-22 16:06:40 +020081 if (idx) {
82 *idx = i;
83 }
84
Michal Vaskoc6b9c7b2016-01-28 11:10:08 +010085 return endpt;
86}
87
Michal Vaskoadf30f02019-06-24 09:34:47 +020088struct nc_ch_endpt *
89nc_server_ch_client_lock(const char *name, const char *endpt_name, NC_TRANSPORT_IMPL ti, struct nc_ch_client **client_p)
Michal Vaskoc6b9c7b2016-01-28 11:10:08 +010090{
Michal Vaskoadf30f02019-06-24 09:34:47 +020091 uint16_t i, j;
Michal Vasko2e6defd2016-10-07 15:48:15 +020092 struct nc_ch_client *client = NULL;
Michal Vaskoadf30f02019-06-24 09:34:47 +020093 struct nc_ch_endpt *endpt = NULL;
94
95 *client_p = NULL;
Michal Vasko2e6defd2016-10-07 15:48:15 +020096
Michal Vaskoddce1212019-05-24 09:58:49 +020097 if (!name) {
98 ERRARG("client_name");
99 return NULL;
100 }
101
Michal Vasko2e6defd2016-10-07 15:48:15 +0200102 /* READ LOCK */
103 pthread_rwlock_rdlock(&server_opts.ch_client_lock);
104
105 for (i = 0; i < server_opts.ch_client_count; ++i) {
Michal Vaskoadf30f02019-06-24 09:34:47 +0200106 if (!strcmp(server_opts.ch_clients[i].name, name)) {
Michal Vasko2e6defd2016-10-07 15:48:15 +0200107 client = &server_opts.ch_clients[i];
Michal Vaskoadf30f02019-06-24 09:34:47 +0200108 if (!endpt_name && !ti) {
109 /* return only client */
110 break;
111 }
112 for (j = 0; j < client->ch_endpt_count; ++j) {
Michal Vasko530d95c2021-05-28 13:32:02 +0200113 if ((!endpt_name || !strcmp(client->ch_endpts[j].name, endpt_name)) &&
114 (!ti || (ti == client->ch_endpts[j].ti))) {
Michal Vaskoadf30f02019-06-24 09:34:47 +0200115 endpt = &client->ch_endpts[j];
116 break;
117 }
118 }
Michal Vasko2e6defd2016-10-07 15:48:15 +0200119 break;
120 }
121 }
122
123 if (!client) {
Michal Vasko05532772021-06-03 12:12:38 +0200124 ERR(NULL, "Call Home client \"%s\" was not found.", name);
Michal Vaskoadf30f02019-06-24 09:34:47 +0200125
Michal Vasko2e6defd2016-10-07 15:48:15 +0200126 /* READ UNLOCK */
127 pthread_rwlock_unlock(&server_opts.ch_client_lock);
Michal Vaskoadf30f02019-06-24 09:34:47 +0200128 } else if (endpt_name && ti && !endpt) {
Michal Vasko05532772021-06-03 12:12:38 +0200129 ERR(NULL, "Call Home client \"%s\" endpoint \"%s\" was not found.", name, endpt_name);
Michal Vaskoadf30f02019-06-24 09:34:47 +0200130
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 Vasko2e6defd2016-10-07 15:48:15 +0200138 }
139
Michal Vaskoadf30f02019-06-24 09:34:47 +0200140 return endpt;
Michal Vasko2e6defd2016-10-07 15:48:15 +0200141}
142
143void
144nc_server_ch_client_unlock(struct nc_ch_client *client)
145{
146 /* CH CLIENT UNLOCK */
147 pthread_mutex_unlock(&client->lock);
Michal Vaskoc6b9c7b2016-01-28 11:10:08 +0100148
149 /* READ UNLOCK */
Michal Vasko2e6defd2016-10-07 15:48:15 +0200150 pthread_rwlock_unlock(&server_opts.ch_client_lock);
Michal Vasko3031aae2016-01-27 16:07:18 +0100151}
Michal Vasko086311b2016-01-08 09:53:11 +0100152
Michal Vasko1a38c862016-01-15 15:50:07 +0100153API void
154nc_session_set_term_reason(struct nc_session *session, NC_SESSION_TERM_REASON reason)
155{
Michal Vasko45e53ae2016-04-07 11:46:03 +0200156 if (!session) {
157 ERRARG("session");
158 return;
159 } else if (!reason) {
160 ERRARG("reason");
Michal Vasko1a38c862016-01-15 15:50:07 +0100161 return;
162 }
163
Michal Vasko142cfea2017-08-07 10:12:11 +0200164 if ((reason != NC_SESSION_TERM_KILLED) && (session->term_reason == NC_SESSION_TERM_KILLED)) {
165 session->killed_by = 0;
166 }
Michal Vasko1a38c862016-01-15 15:50:07 +0100167 session->term_reason = reason;
168}
169
Michal Vasko142cfea2017-08-07 10:12:11 +0200170API void
171nc_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
184API void
185nc_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 Vasko086311b2016-01-08 09:53:11 +0100198int
Michal Vaskoe49a15f2019-05-27 14:18:36 +0200199nc_sock_listen_inet(const char *address, uint16_t port, struct nc_keepalives *ka)
Michal Vasko086311b2016-01-08 09:53:11 +0100200{
Michal Vasko06c860d2018-07-09 16:08:52 +0200201 int opt;
Michal Vasko086311b2016-01-08 09:53:11 +0100202 int is_ipv4, sock;
203 struct sockaddr_storage saddr;
204
205 struct sockaddr_in *saddr4;
206 struct sockaddr_in6 *saddr6;
207
Michal Vasko086311b2016-01-08 09:53:11 +0100208 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 Vasko05532772021-06-03 12:12:38 +0200216 ERR(NULL, "Failed to create socket (%s).", strerror(errno));
Michal Vasko086311b2016-01-08 09:53:11 +0100217 goto fail;
218 }
219
Michal Vaskobe52dc22018-10-17 09:28:17 +0200220 /* these options will be inherited by accepted sockets */
Michal Vasko06c860d2018-07-09 16:08:52 +0200221 opt = 1;
222 if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof opt) == -1) {
Michal Vasko05532772021-06-03 12:12:38 +0200223 ERR(NULL, "Could not set SO_REUSEADDR socket option (%s).", strerror(errno));
Michal Vasko06c860d2018-07-09 16:08:52 +0200224 goto fail;
225 }
Michal Vasko83ad17e2019-01-30 10:11:37 +0100226 if (setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, &opt, sizeof opt) == -1) {
Michal Vasko05532772021-06-03 12:12:38 +0200227 ERR(NULL, "Could not set TCP_NODELAY socket option (%s).", strerror(errno));
Michal Vasko83ad17e2019-01-30 10:11:37 +0100228 goto fail;
229 }
Michal Vaskobe52dc22018-10-17 09:28:17 +0200230
Michal Vaskoe49a15f2019-05-27 14:18:36 +0200231 if (nc_sock_enable_keepalive(sock, ka)) {
Michal Vasko086311b2016-01-08 09:53:11 +0100232 goto fail;
233 }
234
Michal Vaskof22d5ff2020-04-15 11:10:27 +0200235 memset(&saddr, 0, sizeof(struct sockaddr_storage));
Michal Vasko086311b2016-01-08 09:53:11 +0100236 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 Vasko05532772021-06-03 12:12:38 +0200243 ERR(NULL, "Failed to convert IPv4 address \"%s\".", address);
Michal Vasko086311b2016-01-08 09:53:11 +0100244 goto fail;
245 }
246
247 if (bind(sock, (struct sockaddr *)saddr4, sizeof(struct sockaddr_in)) == -1) {
Michal Vasko05532772021-06-03 12:12:38 +0200248 ERR(NULL, "Could not bind \"%s\" port %d (%s).", address, port, strerror(errno));
Michal Vasko086311b2016-01-08 09:53:11 +0100249 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 Vasko05532772021-06-03 12:12:38 +0200259 ERR(NULL, "Failed to convert IPv6 address \"%s\".", address);
Michal Vasko086311b2016-01-08 09:53:11 +0100260 goto fail;
261 }
262
263 if (bind(sock, (struct sockaddr *)saddr6, sizeof(struct sockaddr_in6)) == -1) {
Michal Vasko05532772021-06-03 12:12:38 +0200264 ERR(NULL, "Could not bind \"%s\" port %d (%s).", address, port, strerror(errno));
Michal Vasko086311b2016-01-08 09:53:11 +0100265 goto fail;
266 }
267 }
268
Michal Vaskofb89d772016-01-08 12:25:35 +0100269 if (listen(sock, NC_REVERSE_QUEUE) == -1) {
Michal Vasko05532772021-06-03 12:12:38 +0200270 ERR(NULL, "Unable to start listening on \"%s\" port %d (%s).", address, port, strerror(errno));
Michal Vasko086311b2016-01-08 09:53:11 +0100271 goto fail;
272 }
273
274 return sock;
275
276fail:
277 if (sock > -1) {
278 close(sock);
279 }
280
281 return -1;
282}
283
284int
Olivier Matzac7fa2f2018-10-11 10:02:04 +0200285nc_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 Vasko93e96f12021-09-30 10:02:09 +0200290 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 Matzac7fa2f2018-10-11 10:02:04 +0200295 sock = socket(AF_UNIX, SOCK_STREAM, 0);
296 if (sock == -1) {
Michal Vasko05532772021-06-03 12:12:38 +0200297 ERR(NULL, "Failed to create socket (%s).", strerror(errno));
Olivier Matzac7fa2f2018-10-11 10:02:04 +0200298 goto fail;
299 }
300
301 memset(&sun, 0, sizeof(sun));
302 sun.sun_family = AF_UNIX;
Michal Vasko93e96f12021-09-30 10:02:09 +0200303 snprintf(sun.sun_path, sizeof(sun.sun_path) - 1, "%s", address);
Olivier Matzac7fa2f2018-10-11 10:02:04 +0200304
305 unlink(sun.sun_path);
306 if (bind(sock, (struct sockaddr *)&sun, sizeof(sun)) == -1) {
Michal Vasko05532772021-06-03 12:12:38 +0200307 ERR(NULL, "Could not bind \"%s\" (%s).", address, strerror(errno));
Olivier Matzac7fa2f2018-10-11 10:02:04 +0200308 goto fail;
309 }
310
311 if (opts->mode != (mode_t)-1) {
312 if (chmod(sun.sun_path, opts->mode) < 0) {
Michal Vasko05532772021-06-03 12:12:38 +0200313 ERR(NULL, "Failed to set unix socket permissions (%s).", strerror(errno));
Olivier Matzac7fa2f2018-10-11 10:02:04 +0200314 goto fail;
315 }
316 }
317
Michal Vaskob83a3fa2021-05-26 09:53:42 +0200318 if ((opts->uid != (uid_t)-1) || (opts->gid != (gid_t)-1)) {
Olivier Matzac7fa2f2018-10-11 10:02:04 +0200319 if (chown(sun.sun_path, opts->uid, opts->gid) < 0) {
Michal Vasko05532772021-06-03 12:12:38 +0200320 ERR(NULL, "Failed to set unix socket uid/gid (%s).", strerror(errno));
Olivier Matzac7fa2f2018-10-11 10:02:04 +0200321 goto fail;
322 }
323 }
324
325 if (listen(sock, NC_REVERSE_QUEUE) == -1) {
Michal Vasko05532772021-06-03 12:12:38 +0200326 ERR(NULL, "Unable to start listening on \"%s\" (%s).", address, strerror(errno));
Olivier Matzac7fa2f2018-10-11 10:02:04 +0200327 goto fail;
328 }
329
330 return sock;
331
332fail:
333 if (sock > -1) {
334 close(sock);
335 }
Olivier Matzac7fa2f2018-10-11 10:02:04 +0200336 return -1;
337}
338
aPiecek90ff0242021-02-14 14:58:01 +0100339/**
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 */
347static int
348sock_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 Vasko05532772021-06-03 12:12:38 +0200359 ERR(NULL, "getsockname failed (%s).", strerror(errno));
aPiecek90ff0242021-02-14 14:58:01 +0100360 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 */
385static int
386sock_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
aPiecek3da9b342021-02-18 15:00:03 +0100394 if (!inet_ntop(AF_INET, &addr->sin_addr, *host, INET_ADDRSTRLEN)) {
Michal Vasko69e98752022-12-14 14:20:17 +0100395 ERR(NULL, "inet_ntop failed (%s).", strerror(errno));
aPiecek90ff0242021-02-14 14:58:01 +0100396 free(*host);
397 *host = NULL;
398 return -1;
399 }
400
Michal Vasko89ffa8a2021-06-25 08:40:08 +0200401 *port = ntohs(addr->sin_port);
aPiecek90ff0242021-02-14 14:58:01 +0100402
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 */
414static int
415sock_host_inet6(const struct sockaddr_in6 *addr, char **host, uint16_t *port)
416{
Michal Vaskob83a3fa2021-05-26 09:53:42 +0200417 *host = malloc(INET6_ADDRSTRLEN);
aPiecek90ff0242021-02-14 14:58:01 +0100418 if (!(*host)) {
419 ERRMEM;
420 return -1;
421 }
422
aPiecek3da9b342021-02-18 15:00:03 +0100423 if (!inet_ntop(AF_INET6, &addr->sin6_addr, *host, INET6_ADDRSTRLEN)) {
Michal Vasko69e98752022-12-14 14:20:17 +0100424 ERR(NULL, "inet_ntop failed (%s).", strerror(errno));
aPiecek90ff0242021-02-14 14:58:01 +0100425 free(*host);
426 *host = NULL;
427 return -1;
428 }
429
Michal Vasko89ffa8a2021-06-25 08:40:08 +0200430 *port = ntohs(addr->sin6_port);
aPiecek90ff0242021-02-14 14:58:01 +0100431
432 return 0;
433}
434
Olivier Matzac7fa2f2018-10-11 10:02:04 +0200435int
Michal Vasko3031aae2016-01-27 16:07:18 +0100436nc_sock_accept_binds(struct nc_bind *binds, uint16_t bind_count, int timeout, char **host, uint16_t *port, uint16_t *idx)
Michal Vasko086311b2016-01-08 09:53:11 +0100437{
Michal Vaskof54cd352017-02-22 13:42:02 +0100438 sigset_t sigmask, origmask;
Michal Vasko89ffa8a2021-06-25 08:40:08 +0200439 uint16_t i, j, pfd_count, client_port;
440 char *client_address;
Michal Vasko086311b2016-01-08 09:53:11 +0100441 struct pollfd *pfd;
442 struct sockaddr_storage saddr;
443 socklen_t saddr_len = sizeof(saddr);
Michal Vasko89ffa8a2021-06-25 08:40:08 +0200444 int ret, client_sock, sock = -1, flags;
Michal Vasko086311b2016-01-08 09:53:11 +0100445
446 pfd = malloc(bind_count * sizeof *pfd);
Michal Vasko4eb3c312016-03-01 14:09:37 +0100447 if (!pfd) {
448 ERRMEM;
449 return -1;
450 }
451
Michal Vaskoac2f6182017-01-30 14:32:03 +0100452 for (i = 0, pfd_count = 0; i < bind_count; ++i) {
Michal Vasko94acafc2016-09-23 13:40:10 +0200453 if (binds[i].sock < 0) {
454 /* invalid socket */
Michal Vasko94acafc2016-09-23 13:40:10 +0200455 continue;
456 }
Michal Vasko0a3f3752016-10-13 14:58:38 +0200457 if (binds[i].pollin) {
458 binds[i].pollin = 0;
459 /* leftover pollin */
460 sock = binds[i].sock;
Michal Vasko086311b2016-01-08 09:53:11 +0100461 break;
462 }
Michal Vaskoac2f6182017-01-30 14:32:03 +0100463 pfd[pfd_count].fd = binds[i].sock;
464 pfd[pfd_count].events = POLLIN;
465 pfd[pfd_count].revents = 0;
466
467 ++pfd_count;
Michal Vasko086311b2016-01-08 09:53:11 +0100468 }
469
Michal Vasko0a3f3752016-10-13 14:58:38 +0200470 if (sock == -1) {
471 /* poll for a new connection */
Michal Vaskof54cd352017-02-22 13:42:02 +0100472 sigfillset(&sigmask);
473 pthread_sigmask(SIG_SETMASK, &sigmask, &origmask);
Michal Vaskoac2f6182017-01-30 14:32:03 +0100474 ret = poll(pfd, pfd_count, timeout);
Michal Vaskof54cd352017-02-22 13:42:02 +0100475 pthread_sigmask(SIG_SETMASK, &origmask, NULL);
476
Michal Vasko0a3f3752016-10-13 14:58:38 +0200477 if (!ret) {
478 /* we timeouted */
479 free(pfd);
480 return 0;
481 } else if (ret == -1) {
Michal Vasko05532772021-06-03 12:12:38 +0200482 ERR(NULL, "Poll failed (%s).", strerror(errno));
Michal Vasko0a3f3752016-10-13 14:58:38 +0200483 free(pfd);
484 return -1;
485 }
Michal Vasko086311b2016-01-08 09:53:11 +0100486
Michal Vaskoac2f6182017-01-30 14:32:03 +0100487 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 Vasko0a3f3752016-10-13 14:58:38 +0200494 --ret;
495
496 if (!ret) {
497 /* the last socket with an event, use it */
Michal Vaskoac2f6182017-01-30 14:32:03 +0100498 sock = pfd[j].fd;
Michal Vasko0a3f3752016-10-13 14:58:38 +0200499 break;
500 } else {
501 /* just remember the event for next time */
502 binds[i].pollin = 1;
503 }
504 }
Michal Vasko086311b2016-01-08 09:53:11 +0100505 }
506 }
507 free(pfd);
508
509 if (sock == -1) {
Michal Vaskod083db62016-01-19 10:31:29 +0100510 ERRINT;
Michal Vasko086311b2016-01-08 09:53:11 +0100511 return -1;
512 }
513
Michal Vasko89ffa8a2021-06-25 08:40:08 +0200514 /* accept connection */
515 client_sock = accept(sock, (struct sockaddr *)&saddr, &saddr_len);
516 if (client_sock < 0) {
Michal Vasko05532772021-06-03 12:12:38 +0200517 ERR(NULL, "Accept failed (%s).", strerror(errno));
Michal Vasko086311b2016-01-08 09:53:11 +0100518 return -1;
519 }
520
Michal Vasko0190bc32016-03-02 15:47:49 +0100521 /* make the socket non-blocking */
Michal Vasko89ffa8a2021-06-25 08:40:08 +0200522 if (((flags = fcntl(client_sock, F_GETFL)) == -1) || (fcntl(client_sock, F_SETFL, flags | O_NONBLOCK) == -1)) {
Michal Vasko05532772021-06-03 12:12:38 +0200523 ERR(NULL, "Fcntl failed (%s).", strerror(errno));
Michal Vasko89ffa8a2021-06-25 08:40:08 +0200524 goto fail;
Michal Vasko0190bc32016-03-02 15:47:49 +0100525 }
526
Michal Vasko89ffa8a2021-06-25 08:40:08 +0200527 /* 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;
aPiecek90ff0242021-02-14 14:58:01 +0100544 }
Michal Vasko086311b2016-01-08 09:53:11 +0100545
aPiecek90ff0242021-02-14 14:58:01 +0100546 if (saddr.ss_family == AF_UNIX) {
Michal Vasko89ffa8a2021-06-25 08:40:08 +0200547 VRB(NULL, "Accepted a connection on %s.", binds[i].address);
aPiecek90ff0242021-02-14 14:58:01 +0100548 } else {
Michal Vasko89ffa8a2021-06-25 08:40:08 +0200549 VRB(NULL, "Accepted a connection on %s:%u from %s:%u.", binds[i].address, binds[i].port, client_address, client_port);
Michal Vasko086311b2016-01-08 09:53:11 +0100550 }
551
Michal Vasko89ffa8a2021-06-25 08:40:08 +0200552 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
565fail:
566 close(client_sock);
567 return -1;
Michal Vasko086311b2016-01-08 09:53:11 +0100568}
569
Michal Vasko238b6c12021-12-14 15:14:09 +0100570API struct nc_server_reply *
Michal Vasko05532772021-06-03 12:12:38 +0200571nc_clb_default_get_schema(struct lyd_node *rpc, struct nc_session *session)
Michal Vasko05ba9df2016-01-13 14:40:27 +0100572{
Michal Vasko77367452021-02-16 16:32:18 +0100573 const char *identifier = NULL, *revision = NULL, *format = NULL;
Michal Vasko05ba9df2016-01-13 14:40:27 +0100574 char *model_data = NULL;
Michal Vasko77367452021-02-16 16:32:18 +0100575 struct ly_out *out;
Michal Vasko9b1a9522021-03-15 16:24:26 +0100576 const struct lys_module *module = NULL, *mod;
Michal Vasko77367452021-02-16 16:32:18 +0100577 const struct lysp_submodule *submodule = NULL;
578 struct lyd_node *child, *err, *data = NULL;
579 LYS_OUTFORMAT outformat = 0;
Michal Vasko05ba9df2016-01-13 14:40:27 +0100580
Michal Vasko77367452021-02-16 16:32:18 +0100581 LY_LIST_FOR(lyd_child(rpc), child) {
Michal Vasko05ba9df2016-01-13 14:40:27 +0100582 if (!strcmp(child->schema->name, "identifier")) {
Michal Vaskoe97b10a2021-04-28 08:52:52 +0200583 identifier = lyd_get_value(child);
Michal Vasko05ba9df2016-01-13 14:40:27 +0100584 } else if (!strcmp(child->schema->name, "version")) {
Michal Vaskoe97b10a2021-04-28 08:52:52 +0200585 revision = lyd_get_value(child);
Michal Vaskob83a3fa2021-05-26 09:53:42 +0200586 if (revision && (revision[0] == '\0')) {
Michal Vasko77367452021-02-16 16:32:18 +0100587 revision = NULL;
Radek Krejci1afa7792017-03-26 11:24:16 -0500588 }
Michal Vasko05ba9df2016-01-13 14:40:27 +0100589 } else if (!strcmp(child->schema->name, "format")) {
Michal Vaskoe97b10a2021-04-28 08:52:52 +0200590 format = lyd_get_value(child);
Michal Vasko05ba9df2016-01-13 14:40:27 +0100591 }
592 }
Michal Vasko5ca5d972022-09-14 13:51:31 +0200593 VRB(session, "Module \"%s@%s\" was requested.", identifier, revision ? revision : "<any>");
Michal Vasko05ba9df2016-01-13 14:40:27 +0100594
Michal Vasko77367452021-02-16 16:32:18 +0100595 /* check revision */
596 if (revision && (strlen(revision) != 10) && strcmp(revision, "1.0")) {
Michal Vasko93224072021-11-09 12:14:28 +0100597 err = nc_err(session->ctx, NC_ERR_INVALID_VALUE, NC_ERR_TYPE_APP);
Michal Vasko1a38c862016-01-15 15:50:07 +0100598 nc_err_set_msg(err, "The requested version is not supported.", "en");
599 return nc_server_reply_err(err);
Michal Vasko05ba9df2016-01-13 14:40:27 +0100600 }
601
Michal Vasko77367452021-02-16 16:32:18 +0100602 if (revision) {
603 /* get specific module */
Michal Vasko93224072021-11-09 12:14:28 +0100604 module = ly_ctx_get_module(session->ctx, identifier, revision);
Michal Vasko77367452021-02-16 16:32:18 +0100605 if (!module) {
Michal Vasko93224072021-11-09 12:14:28 +0100606 submodule = ly_ctx_get_submodule(session->ctx, identifier, revision);
Michal Vasko77367452021-02-16 16:32:18 +0100607 }
608 } else {
609 /* try to get implemented, then latest module */
Michal Vasko93224072021-11-09 12:14:28 +0100610 module = ly_ctx_get_module_implemented(session->ctx, identifier);
Michal Vasko77367452021-02-16 16:32:18 +0100611 if (!module) {
Michal Vasko93224072021-11-09 12:14:28 +0100612 module = ly_ctx_get_module_latest(session->ctx, identifier);
Michal Vasko77367452021-02-16 16:32:18 +0100613 }
614 if (!module) {
Michal Vasko93224072021-11-09 12:14:28 +0100615 submodule = ly_ctx_get_submodule_latest(session->ctx, identifier);
Michal Vasko77367452021-02-16 16:32:18 +0100616 }
Michal Vaskod91f6e62016-04-05 11:34:22 +0200617 }
Michal Vasko77367452021-02-16 16:32:18 +0100618 if (!module && !submodule) {
Michal Vasko93224072021-11-09 12:14:28 +0100619 err = nc_err(session->ctx, NC_ERR_INVALID_VALUE, NC_ERR_TYPE_APP);
Michal Vasko5ca5d972022-09-14 13:51:31 +0200620 nc_err_set_msg(err, "The requested module was not found.", "en");
Michal Vasko1a38c862016-01-15 15:50:07 +0100621 return nc_server_reply_err(err);
Michal Vasko05ba9df2016-01-13 14:40:27 +0100622 }
623
624 /* check format */
Radek Krejci90fba642016-12-07 15:59:45 +0100625 if (!format || !strcmp(format, "ietf-netconf-monitoring:yang")) {
Michal Vasko77367452021-02-16 16:32:18 +0100626 outformat = LYS_OUT_YANG;
Radek Krejci90fba642016-12-07 15:59:45 +0100627 } else if (!strcmp(format, "ietf-netconf-monitoring:yin")) {
Michal Vasko77367452021-02-16 16:32:18 +0100628 outformat = LYS_OUT_YIN;
Michal Vasko05ba9df2016-01-13 14:40:27 +0100629 } else {
Michal Vasko93224072021-11-09 12:14:28 +0100630 err = nc_err(session->ctx, NC_ERR_INVALID_VALUE, NC_ERR_TYPE_APP);
Michal Vasko1a38c862016-01-15 15:50:07 +0100631 nc_err_set_msg(err, "The requested format is not supported.", "en");
632 return nc_server_reply_err(err);
Michal Vasko05ba9df2016-01-13 14:40:27 +0100633 }
Michal Vasko77367452021-02-16 16:32:18 +0100634
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 Vaskod91f6e62016-04-05 11:34:22 +0200643 if (!model_data) {
644 ERRINT;
645 return NULL;
646 }
Michal Vasko05ba9df2016-01-13 14:40:27 +0100647
Michal Vasko9b1a9522021-03-15 16:24:26 +0100648 /* create reply */
Michal Vasko93224072021-11-09 12:14:28 +0100649 mod = ly_ctx_get_module_implemented(session->ctx, "ietf-netconf-monitoring");
Michal Vasko9b1a9522021-03-15 16:24:26 +0100650 if (!mod || lyd_new_inner(NULL, mod, "get-schema", 0, &data)) {
Michal Vasko05ba9df2016-01-13 14:40:27 +0100651 ERRINT;
Michal Vaskod91f6e62016-04-05 11:34:22 +0200652 free(model_data);
Michal Vasko05ba9df2016-01-13 14:40:27 +0100653 return NULL;
654 }
Michal Vasko9b1a9522021-03-15 16:24:26 +0100655 if (lyd_new_any(data, NULL, "data", model_data, 1, LYD_ANYDATA_STRING, 1, NULL)) {
656 ERRINT;
Michal Vaskoa50f68e2022-02-24 16:10:54 +0100657 free(model_data);
Michal Vasko9b1a9522021-03-15 16:24:26 +0100658 lyd_free_tree(data);
659 return NULL;
660 }
Michal Vasko05ba9df2016-01-13 14:40:27 +0100661
Radek Krejci36dfdb32016-09-01 16:56:35 +0200662 return nc_server_reply_data(data, NC_WD_EXPLICIT, NC_PARAMTYPE_FREE);
Michal Vasko05ba9df2016-01-13 14:40:27 +0100663}
664
Michal Vasko238b6c12021-12-14 15:14:09 +0100665API struct nc_server_reply *
Michal Vasko428087d2016-01-14 16:04:28 +0100666nc_clb_default_close_session(struct lyd_node *UNUSED(rpc), struct nc_session *session)
Michal Vasko05ba9df2016-01-13 14:40:27 +0100667{
Michal Vasko428087d2016-01-14 16:04:28 +0100668 session->term_reason = NC_SESSION_TERM_CLOSED;
669 return nc_server_reply_ok();
Michal Vasko05ba9df2016-01-13 14:40:27 +0100670}
671
Michal Vasko93224072021-11-09 12:14:28 +0100672/**
673 * @brief Initialize a context with default RPC callbacks if none are set.
674 *
675 * @param[in] ctx Context to initialize.
676 */
677static void
678nc_server_init_ctx(const struct ly_ctx *ctx)
Michal Vasko086311b2016-01-08 09:53:11 +0100679{
Michal Vasko77367452021-02-16 16:32:18 +0100680 struct lysc_node *rpc;
Michal Vaskoa7b8ca52016-03-01 12:09:29 +0100681
Michal Vasko238b6c12021-12-14 15:14:09 +0100682 if (global_rpc_clb) {
683 /* expect it to handle these RPCs as well */
684 return;
685 }
686
Michal Vasko05ba9df2016-01-13 14:40:27 +0100687 /* set default <get-schema> callback if not specified */
Michal Vasko77367452021-02-16 16:32:18 +0100688 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 Vasko88639e92017-08-03 14:38:10 +0200692 if (rpc && !rpc->priv) {
Michal Vasko77367452021-02-16 16:32:18 +0100693 rpc->priv = nc_clb_default_get_schema;
Michal Vasko05ba9df2016-01-13 14:40:27 +0100694 }
695
Michal Vasko93224072021-11-09 12:14:28 +0100696 /* set default <close-session> callback if not specified */
Michal Vasko77367452021-02-16 16:32:18 +0100697 rpc = (struct lysc_node *)lys_find_path(ctx, NULL, "/ietf-netconf:close-session", 0);
Michal Vasko88639e92017-08-03 14:38:10 +0200698 if (rpc && !rpc->priv) {
Michal Vasko77367452021-02-16 16:32:18 +0100699 rpc->priv = nc_clb_default_close_session;
Michal Vasko05ba9df2016-01-13 14:40:27 +0100700 }
Michal Vasko93224072021-11-09 12:14:28 +0100701}
Michal Vasko05ba9df2016-01-13 14:40:27 +0100702
Michal Vasko93224072021-11-09 12:14:28 +0100703API int
704nc_server_init(void)
705{
706 pthread_rwlockattr_t attr, *attr_p = NULL;
707 int r;
708
709 nc_init();
Michal Vaskob48aa812016-01-18 14:13:09 +0100710
711 server_opts.new_session_id = 1;
Andrew Langefeld6ed922d2018-09-12 14:08:32 -0500712 server_opts.new_client_id = 1;
Michal Vaskob48aa812016-01-18 14:13:09 +0100713
Michal Vasko93224072021-11-09 12:14:28 +0100714#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 Penevef2f3ac2019-07-15 18:15:28 -0700724#endif
Michal Vasko93224072021-11-09 12:14:28 +0100725
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 Rimpler9f838b02018-07-25 06:44:03 +0000737 }
Michal Vasko086311b2016-01-08 09:53:11 +0100738 return 0;
Michal Vasko93224072021-11-09 12:14:28 +0100739
740error:
741 if (attr_p) {
742 pthread_rwlockattr_destroy(attr_p);
743 }
744 return -1;
Michal Vasko086311b2016-01-08 09:53:11 +0100745}
746
Michal Vaskob48aa812016-01-18 14:13:09 +0100747API void
748nc_server_destroy(void)
749{
Michal Vasko1440a742021-03-31 11:11:03 +0200750 uint32_t i;
Radek Krejci658782b2016-12-04 22:04:55 +0100751
752 for (i = 0; i < server_opts.capabilities_count; i++) {
Michal Vasko93224072021-11-09 12:14:28 +0100753 free(server_opts.capabilities[i]);
Radek Krejci658782b2016-12-04 22:04:55 +0100754 }
755 free(server_opts.capabilities);
Michal Vaskodd6e4f72018-06-01 10:21:27 +0200756 server_opts.capabilities = NULL;
757 server_opts.capabilities_count = 0;
Michal Vasko1440a742021-03-31 11:11:03 +0200758 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 Vaskodd6e4f72018-06-01 10:21:27 +0200761
Michal Vaskob83a3fa2021-05-26 09:53:42 +0200762#if defined (NC_ENABLED_SSH) || defined (NC_ENABLED_TLS)
Michal Vasko59050372016-11-22 14:33:55 +0100763 nc_server_del_endpt(NULL, 0);
Michal Vasko0bdf70b2019-06-24 19:20:20 +0200764 nc_server_ch_del_client(NULL);
Michal Vaskob48aa812016-01-18 14:13:09 +0100765#endif
Michal Vasko17dfda92016-12-01 14:06:16 +0100766#ifdef NC_ENABLED_SSH
Michal Vaskoebba7602018-03-23 13:14:08 +0100767 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 Vaskodd6e4f72018-06-01 10:21:27 +0200770 server_opts.passwd_auth_data = NULL;
771 server_opts.passwd_auth_data_free = NULL;
Michal Vaskoebba7602018-03-23 13:14:08 +0100772
Michal Vasko17dfda92016-12-01 14:06:16 +0100773 nc_server_ssh_del_authkey(NULL, NULL, 0, NULL);
Michal Vasko4c1fb492017-01-30 14:31:07 +0100774
775 if (server_opts.hostkey_data && server_opts.hostkey_data_free) {
776 server_opts.hostkey_data_free(server_opts.hostkey_data);
777 }
Michal Vaskodd6e4f72018-06-01 10:21:27 +0200778 server_opts.hostkey_data = NULL;
779 server_opts.hostkey_data_free = NULL;
roman41a11e42022-06-22 09:27:08 +0200780
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 Vasko4c1fb492017-01-30 14:31:07 +0100786#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 Vaskodd6e4f72018-06-01 10:21:27 +0200791 server_opts.server_cert_data = NULL;
792 server_opts.server_cert_data_free = NULL;
Michal Vasko4c1fb492017-01-30 14:31:07 +0100793 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 Vaskodd6e4f72018-06-01 10:21:27 +0200796 server_opts.trusted_cert_list_data = NULL;
797 server_opts.trusted_cert_list_data_free = NULL;
Michal Vaskob48aa812016-01-18 14:13:09 +0100798#endif
Michal Vaskoa7b8ca52016-03-01 12:09:29 +0100799 nc_destroy();
Michal Vaskob48aa812016-01-18 14:13:09 +0100800}
801
Michal Vasko086311b2016-01-08 09:53:11 +0100802API int
803nc_server_set_capab_withdefaults(NC_WD_MODE basic_mode, int also_supported)
804{
Michal Vasko45e53ae2016-04-07 11:46:03 +0200805 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 Vasko086311b2016-01-08 09:53:11 +0100810 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 Vasko1a38c862016-01-15 15:50:07 +0100818API void
Michal Vasko55f03972016-04-13 08:56:01 +0200819nc_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 Vasko55f03972016-04-13 08:56:01 +0200834API int
Radek Krejci658782b2016-12-04 22:04:55 +0100835nc_server_set_capability(const char *value)
Michal Vasko55f03972016-04-13 08:56:01 +0200836{
Michal Vasko93224072021-11-09 12:14:28 +0100837 void *mem;
Radek Krejci658782b2016-12-04 22:04:55 +0100838
839 if (!value || !value[0]) {
840 ERRARG("value must not be empty");
841 return EXIT_FAILURE;
842 }
843
Michal Vasko93224072021-11-09 12:14:28 +0100844 mem = realloc(server_opts.capabilities, (server_opts.capabilities_count + 1) * sizeof *server_opts.capabilities);
845 if (!mem) {
Radek Krejci658782b2016-12-04 22:04:55 +0100846 ERRMEM;
847 return EXIT_FAILURE;
848 }
Michal Vasko93224072021-11-09 12:14:28 +0100849 server_opts.capabilities = mem;
850
851 server_opts.capabilities[server_opts.capabilities_count] = strdup(value);
852 server_opts.capabilities_count++;
Radek Krejci658782b2016-12-04 22:04:55 +0100853
854 return EXIT_SUCCESS;
Michal Vasko55f03972016-04-13 08:56:01 +0200855}
856
Michal Vasko1a38c862016-01-15 15:50:07 +0100857API void
Michal Vasko1440a742021-03-31 11:11:03 +0200858nc_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
866API void
Michal Vasko086311b2016-01-08 09:53:11 +0100867nc_server_set_hello_timeout(uint16_t hello_timeout)
868{
Michal Vasko086311b2016-01-08 09:53:11 +0100869 server_opts.hello_timeout = hello_timeout;
Michal Vasko086311b2016-01-08 09:53:11 +0100870}
871
Michal Vasko55f03972016-04-13 08:56:01 +0200872API uint16_t
873nc_server_get_hello_timeout(void)
874{
875 return server_opts.hello_timeout;
876}
877
Michal Vasko1a38c862016-01-15 15:50:07 +0100878API void
Michal Vasko086311b2016-01-08 09:53:11 +0100879nc_server_set_idle_timeout(uint16_t idle_timeout)
880{
Michal Vasko086311b2016-01-08 09:53:11 +0100881 server_opts.idle_timeout = idle_timeout;
Michal Vasko086311b2016-01-08 09:53:11 +0100882}
883
Michal Vasko55f03972016-04-13 08:56:01 +0200884API uint16_t
885nc_server_get_idle_timeout(void)
886{
887 return server_opts.idle_timeout;
888}
889
Michal Vasko71090fc2016-05-24 16:37:28 +0200890API NC_MSG_TYPE
Michal Vasko93224072021-11-09 12:14:28 +0100891nc_accept_inout(int fdin, int fdout, const char *username, const struct ly_ctx *ctx, struct nc_session **session)
Michal Vasko086311b2016-01-08 09:53:11 +0100892{
Michal Vasko71090fc2016-05-24 16:37:28 +0200893 NC_MSG_TYPE msgtype;
Michal Vasko9fb42272017-10-05 13:50:05 +0200894 struct timespec ts_cur;
Michal Vasko71090fc2016-05-24 16:37:28 +0200895
Michal Vasko93224072021-11-09 12:14:28 +0100896 if (!ctx) {
897 ERRARG("ctx");
Michal Vasko71090fc2016-05-24 16:37:28 +0200898 return NC_MSG_ERROR;
Michal Vasko45e53ae2016-04-07 11:46:03 +0200899 } else if (fdin < 0) {
900 ERRARG("fdin");
Michal Vasko71090fc2016-05-24 16:37:28 +0200901 return NC_MSG_ERROR;
Michal Vasko45e53ae2016-04-07 11:46:03 +0200902 } else if (fdout < 0) {
903 ERRARG("fdout");
Michal Vasko71090fc2016-05-24 16:37:28 +0200904 return NC_MSG_ERROR;
Michal Vasko45e53ae2016-04-07 11:46:03 +0200905 } else if (!username) {
906 ERRARG("username");
Michal Vasko71090fc2016-05-24 16:37:28 +0200907 return NC_MSG_ERROR;
Michal Vasko45e53ae2016-04-07 11:46:03 +0200908 } else if (!session) {
909 ERRARG("session");
Michal Vasko71090fc2016-05-24 16:37:28 +0200910 return NC_MSG_ERROR;
Michal Vasko086311b2016-01-08 09:53:11 +0100911 }
912
Michal Vasko93224072021-11-09 12:14:28 +0100913 /* init ctx as needed */
914 nc_server_init_ctx(ctx);
915
Michal Vasko086311b2016-01-08 09:53:11 +0100916 /* prepare session structure */
Michal Vasko131120a2018-05-29 15:44:02 +0200917 *session = nc_new_session(NC_SERVER, 0);
Michal Vasko1a38c862016-01-15 15:50:07 +0100918 if (!(*session)) {
Michal Vasko086311b2016-01-08 09:53:11 +0100919 ERRMEM;
Michal Vasko71090fc2016-05-24 16:37:28 +0200920 return NC_MSG_ERROR;
Michal Vasko086311b2016-01-08 09:53:11 +0100921 }
Michal Vasko1a38c862016-01-15 15:50:07 +0100922 (*session)->status = NC_STATUS_STARTING;
Michal Vaskoade892d2017-02-22 13:40:35 +0100923
Michal Vasko086311b2016-01-08 09:53:11 +0100924 /* transport specific data */
Michal Vasko1a38c862016-01-15 15:50:07 +0100925 (*session)->ti_type = NC_TI_FD;
926 (*session)->ti.fd.in = fdin;
927 (*session)->ti.fd.out = fdout;
Michal Vasko086311b2016-01-08 09:53:11 +0100928
Michal Vasko93224072021-11-09 12:14:28 +0100929 /* assign context */
Michal Vasko1a38c862016-01-15 15:50:07 +0100930 (*session)->flags = NC_SESSION_SHAREDCTX;
Michal Vasko93224072021-11-09 12:14:28 +0100931 (*session)->ctx = (struct ly_ctx *)ctx;
Michal Vasko086311b2016-01-08 09:53:11 +0100932
Michal Vaskob48aa812016-01-18 14:13:09 +0100933 /* assign new SID atomically */
Michal Vasko5bd4a3f2021-06-17 16:40:10 +0200934 (*session)->id = ATOMIC_INC_RELAXED(server_opts.new_session_id);
Michal Vaskob48aa812016-01-18 14:13:09 +0100935
Michal Vasko086311b2016-01-08 09:53:11 +0100936 /* NETCONF handshake */
Michal Vasko131120a2018-05-29 15:44:02 +0200937 msgtype = nc_handshake_io(*session);
Michal Vasko71090fc2016-05-24 16:37:28 +0200938 if (msgtype != NC_MSG_HELLO) {
939 nc_session_free(*session, NULL);
940 *session = NULL;
941 return msgtype;
Michal Vasko086311b2016-01-08 09:53:11 +0100942 }
Michal Vasko9fb42272017-10-05 13:50:05 +0200943
Michal Vaskod8a74192023-02-06 15:51:50 +0100944 nc_timeouttime_get(&ts_cur, 0);
Michal Vasko9fb42272017-10-05 13:50:05 +0200945 (*session)->opts.server.last_rpc = ts_cur.tv_sec;
Michal Vaskod8a74192023-02-06 15:51:50 +0100946 nc_realtime_get(&ts_cur);
Michal Vasko9fb42272017-10-05 13:50:05 +0200947 (*session)->opts.server.session_start = ts_cur.tv_sec;
948
Michal Vasko1a38c862016-01-15 15:50:07 +0100949 (*session)->status = NC_STATUS_RUNNING;
Michal Vasko086311b2016-01-08 09:53:11 +0100950
Michal Vasko71090fc2016-05-24 16:37:28 +0200951 return msgtype;
Michal Vasko086311b2016-01-08 09:53:11 +0100952}
Michal Vasko9e036d52016-01-08 10:49:26 +0100953
Michal Vaskob30b99c2016-07-26 11:35:43 +0200954static void
Michal Vasko74c345f2018-02-07 10:37:11 +0100955nc_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
978static void
Michal Vaskob30b99c2016-07-26 11:35:43 +0200979nc_ps_queue_remove_id(struct nc_pollsession *ps, uint8_t id)
980{
Michal Vasko74c345f2018-02-07 10:37:11 +0100981 uint8_t i, q_idx, found = 0;
Michal Vaskob30b99c2016-07-26 11:35:43 +0200982
983 for (i = 0; i < ps->queue_len; ++i) {
Michal Vasko74c345f2018-02-07 10:37:11 +0100984 /* get the actual queue idx */
985 q_idx = (ps->queue_begin + i) % NC_PS_QUEUE_SIZE;
Michal Vaskob30b99c2016-07-26 11:35:43 +0200986
987 if (found) {
Michal Vasko74c345f2018-02-07 10:37:11 +0100988 if (ps->queue[q_idx] == id) {
Michal Vaskob30b99c2016-07-26 11:35:43 +0200989 /* another equal value, simply cannot be */
990 ERRINT;
991 }
Michal Vaskod8340032018-02-12 14:41:00 +0100992 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 Vasko74c345f2018-02-07 10:37:11 +0100996 } else if (ps->queue[q_idx] == id) {
Michal Vaskob30b99c2016-07-26 11:35:43 +0200997 /* found our id, there can be no more equal valid values */
Michal Vaskod8340032018-02-12 14:41:00 +0100998 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 Vaskob30b99c2016-07-26 11:35:43 +02001004 }
1005 }
Michal Vaskob30b99c2016-07-26 11:35:43 +02001006 if (!found) {
1007 ERRINT;
Michal Vasko103fe632018-02-12 16:37:45 +01001008 return;
Michal Vaskob30b99c2016-07-26 11:35:43 +02001009 }
Michal Vasko74c345f2018-02-07 10:37:11 +01001010
Michal Vasko103fe632018-02-12 16:37:45 +01001011 --ps->queue_len;
Michal Vaskod8340032018-02-12 14:41:00 +01001012 if (found == 1) {
Michal Vasko103fe632018-02-12 16:37:45 +01001013 /* remove the id by moving the queue, otherwise all the values in the queue were moved */
Michal Vaskod8340032018-02-12 14:41:00 +01001014 ps->queue_begin = (ps->queue_begin + 1) % NC_PS_QUEUE_SIZE;
1015 }
Michal Vaskob30b99c2016-07-26 11:35:43 +02001016}
1017
Michal Vaskof04a52a2016-04-07 10:52:10 +02001018int
Michal Vasko26043172016-07-26 14:08:59 +02001019nc_ps_lock(struct nc_pollsession *ps, uint8_t *id, const char *func)
Michal Vaskobe86fe32016-04-07 10:43:03 +02001020{
1021 int ret;
Michal Vaskobe86fe32016-04-07 10:43:03 +02001022 struct timespec ts;
1023
Michal Vaskod8a74192023-02-06 15:51:50 +01001024 nc_timeouttime_get(&ts, NC_PS_LOCK_TIMEOUT);
Michal Vaskobe86fe32016-04-07 10:43:03 +02001025
1026 /* LOCK */
Michal Vaskod8a74192023-02-06 15:51:50 +01001027 ret = pthread_mutex_clocklock(&ps->lock, COMPAT_CLOCK_ID, &ts);
Michal Vaskobe86fe32016-04-07 10:43:03 +02001028 if (ret) {
Michal Vasko05532772021-06-03 12:12:38 +02001029 ERR(NULL, "%s: failed to lock a pollsession (%s).", func, strerror(ret));
Michal Vaskobe86fe32016-04-07 10:43:03 +02001030 return -1;
1031 }
1032
Michal Vasko74c345f2018-02-07 10:37:11 +01001033 /* check that the queue is long enough */
Michal Vasko8bc747c2018-02-09 16:37:04 +01001034 if (ps->queue_len == NC_PS_QUEUE_SIZE) {
Michal Vasko05532772021-06-03 12:12:38 +02001035 ERR(NULL, "%s: pollsession queue size (%d) too small.", func, NC_PS_QUEUE_SIZE);
Michal Vasko8bc747c2018-02-09 16:37:04 +01001036 pthread_mutex_unlock(&ps->lock);
1037 return -1;
1038 }
Michal Vasko74c345f2018-02-07 10:37:11 +01001039
1040 /* add ourselves into the queue */
1041 nc_ps_queue_add_id(ps, id);
Michal Vaskofdba4a32022-01-05 12:13:53 +01001042 DBL(NULL, "PS 0x%p TID %lu queue: added %u, head %u, length %u", ps, (long unsigned int)pthread_self(), *id,
Michal Vasko91290952019-09-27 11:30:55 +02001043 ps->queue[ps->queue_begin], ps->queue_len);
Michal Vaskobe86fe32016-04-07 10:43:03 +02001044
1045 /* is it our turn? */
Michal Vaskob30b99c2016-07-26 11:35:43 +02001046 while (ps->queue[ps->queue_begin] != *id) {
Michal Vaskod8a74192023-02-06 15:51:50 +01001047 nc_timeouttime_get(&ts, NC_PS_QUEUE_TIMEOUT);
Michal Vaskobe86fe32016-04-07 10:43:03 +02001048
Michal Vaskod8a74192023-02-06 15:51:50 +01001049 ret = pthread_cond_clockwait(&ps->cond, &ps->lock, COMPAT_CLOCK_ID, &ts);
Michal Vaskobe86fe32016-04-07 10:43:03 +02001050 if (ret) {
preetbhansalif3edf492018-12-14 17:53:32 +05301051 /**
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 */
preetbhansali629dfc42018-12-17 16:04:40 +05301056 if ((ETIMEDOUT == ret) && (ps->queue[ps->queue_begin] == *id)) {
preetbhansalif3edf492018-12-14 17:53:32 +05301057 break;
1058 }
Michal Vasko66032bc2019-01-22 15:03:12 +01001059
Michal Vasko05532772021-06-03 12:12:38 +02001060 ERR(NULL, "%s: failed to wait for a pollsession condition (%s).", func, strerror(ret));
Michal Vaskobe86fe32016-04-07 10:43:03 +02001061 /* remove ourselves from the queue */
Michal Vaskob30b99c2016-07-26 11:35:43 +02001062 nc_ps_queue_remove_id(ps, *id);
1063 pthread_mutex_unlock(&ps->lock);
Michal Vaskobe86fe32016-04-07 10:43:03 +02001064 return -1;
1065 }
1066 }
1067
Michal Vaskobe86fe32016-04-07 10:43:03 +02001068 /* UNLOCK */
1069 pthread_mutex_unlock(&ps->lock);
1070
1071 return 0;
1072}
1073
Michal Vaskof04a52a2016-04-07 10:52:10 +02001074int
Michal Vasko26043172016-07-26 14:08:59 +02001075nc_ps_unlock(struct nc_pollsession *ps, uint8_t id, const char *func)
Michal Vaskobe86fe32016-04-07 10:43:03 +02001076{
1077 int ret;
1078 struct timespec ts;
1079
Michal Vaskod8a74192023-02-06 15:51:50 +01001080 nc_timeouttime_get(&ts, NC_PS_LOCK_TIMEOUT);
Michal Vaskobe86fe32016-04-07 10:43:03 +02001081
1082 /* LOCK */
Michal Vaskod8a74192023-02-06 15:51:50 +01001083 ret = pthread_mutex_clocklock(&ps->lock, COMPAT_CLOCK_ID, &ts);
Michal Vaskobe86fe32016-04-07 10:43:03 +02001084 if (ret) {
Michal Vasko05532772021-06-03 12:12:38 +02001085 ERR(NULL, "%s: failed to lock a pollsession (%s).", func, strerror(ret));
Michal Vaskobe86fe32016-04-07 10:43:03 +02001086 ret = -1;
1087 }
1088
Michal Vaskob30b99c2016-07-26 11:35:43 +02001089 /* we must be the first, it was our turn after all, right? */
1090 if (ps->queue[ps->queue_begin] != id) {
1091 ERRINT;
Michal Vaskob1a094b2016-10-05 14:04:52 +02001092 /* UNLOCK */
1093 if (!ret) {
1094 pthread_mutex_unlock(&ps->lock);
1095 }
Michal Vaskob30b99c2016-07-26 11:35:43 +02001096 return -1;
1097 }
1098
Michal Vaskobe86fe32016-04-07 10:43:03 +02001099 /* remove ourselves from the queue */
Michal Vaskob30b99c2016-07-26 11:35:43 +02001100 nc_ps_queue_remove_id(ps, id);
Michal Vaskofdba4a32022-01-05 12:13:53 +01001101 DBL(NULL, "PS 0x%p TID %lu queue: removed %u, head %u, length %u", ps, (long unsigned int)pthread_self(), id,
Michal Vasko91290952019-09-27 11:30:55 +02001102 ps->queue[ps->queue_begin], ps->queue_len);
Michal Vaskobe86fe32016-04-07 10:43:03 +02001103
1104 /* broadcast to all other threads that the queue moved */
1105 pthread_cond_broadcast(&ps->cond);
1106
Michal Vaskobe86fe32016-04-07 10:43:03 +02001107 /* UNLOCK */
1108 if (!ret) {
1109 pthread_mutex_unlock(&ps->lock);
1110 }
1111
1112 return ret;
1113}
1114
Michal Vasko428087d2016-01-14 16:04:28 +01001115API struct nc_pollsession *
1116nc_ps_new(void)
1117{
Michal Vasko48a63ed2016-03-01 09:48:21 +01001118 struct nc_pollsession *ps;
1119
1120 ps = calloc(1, sizeof(struct nc_pollsession));
Michal Vasko4eb3c312016-03-01 14:09:37 +01001121 if (!ps) {
1122 ERRMEM;
1123 return NULL;
1124 }
Michal Vaskobe86fe32016-04-07 10:43:03 +02001125 pthread_cond_init(&ps->cond, NULL);
Michal Vasko48a63ed2016-03-01 09:48:21 +01001126 pthread_mutex_init(&ps->lock, NULL);
1127
1128 return ps;
Michal Vasko428087d2016-01-14 16:04:28 +01001129}
1130
1131API void
1132nc_ps_free(struct nc_pollsession *ps)
1133{
fanchanghu3d4e7212017-08-09 09:42:30 +08001134 uint16_t i;
1135
Michal Vasko7f1c78b2016-01-19 09:52:14 +01001136 if (!ps) {
1137 return;
1138 }
1139
Michal Vaskobe86fe32016-04-07 10:43:03 +02001140 if (ps->queue_len) {
Michal Vasko05532772021-06-03 12:12:38 +02001141 ERR(NULL, "FATAL: Freeing a pollsession structure that is currently being worked with!");
Michal Vaskobe86fe32016-04-07 10:43:03 +02001142 }
1143
fanchanghu3d4e7212017-08-09 09:42:30 +08001144 for (i = 0; i < ps->session_count; i++) {
1145 free(ps->sessions[i]);
1146 }
1147
Michal Vasko428087d2016-01-14 16:04:28 +01001148 free(ps->sessions);
Michal Vasko48a63ed2016-03-01 09:48:21 +01001149 pthread_mutex_destroy(&ps->lock);
Michal Vaskobe86fe32016-04-07 10:43:03 +02001150 pthread_cond_destroy(&ps->cond);
Michal Vasko48a63ed2016-03-01 09:48:21 +01001151
Michal Vasko428087d2016-01-14 16:04:28 +01001152 free(ps);
1153}
1154
1155API int
1156nc_ps_add_session(struct nc_pollsession *ps, struct nc_session *session)
1157{
Michal Vaskob30b99c2016-07-26 11:35:43 +02001158 uint8_t q_id;
1159
Michal Vasko45e53ae2016-04-07 11:46:03 +02001160 if (!ps) {
1161 ERRARG("ps");
1162 return -1;
1163 } else if (!session) {
1164 ERRARG("session");
Michal Vasko428087d2016-01-14 16:04:28 +01001165 return -1;
1166 }
1167
Michal Vasko48a63ed2016-03-01 09:48:21 +01001168 /* LOCK */
Michal Vasko26043172016-07-26 14:08:59 +02001169 if (nc_ps_lock(ps, &q_id, __func__)) {
Michal Vaskobe86fe32016-04-07 10:43:03 +02001170 return -1;
1171 }
Michal Vasko48a63ed2016-03-01 09:48:21 +01001172
Michal Vasko428087d2016-01-14 16:04:28 +01001173 ++ps->session_count;
Michal Vasko4eb3c312016-03-01 14:09:37 +01001174 ps->sessions = nc_realloc(ps->sessions, ps->session_count * sizeof *ps->sessions);
Michal Vasko9a327362017-01-11 11:31:46 +01001175 if (!ps->sessions) {
Michal Vasko4eb3c312016-03-01 14:09:37 +01001176 ERRMEM;
1177 /* UNLOCK */
Michal Vasko26043172016-07-26 14:08:59 +02001178 nc_ps_unlock(ps, q_id, __func__);
Michal Vasko4eb3c312016-03-01 14:09:37 +01001179 return -1;
1180 }
fanchanghu3d4e7212017-08-09 09:42:30 +08001181 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 Vasko428087d2016-01-14 16:04:28 +01001191
Michal Vasko48a63ed2016-03-01 09:48:21 +01001192 /* UNLOCK */
Michal Vasko26043172016-07-26 14:08:59 +02001193 return nc_ps_unlock(ps, q_id, __func__);
Michal Vasko428087d2016-01-14 16:04:28 +01001194}
1195
Michal Vasko48a63ed2016-03-01 09:48:21 +01001196static int
Radek Krejcid5f978f2016-03-03 13:14:45 +01001197_nc_ps_del_session(struct nc_pollsession *ps, struct nc_session *session, int index)
Michal Vasko428087d2016-01-14 16:04:28 +01001198{
1199 uint16_t i;
1200
Radek Krejcid5f978f2016-03-03 13:14:45 +01001201 if (index >= 0) {
1202 i = (uint16_t)index;
1203 goto remove;
1204 }
Michal Vasko428087d2016-01-14 16:04:28 +01001205 for (i = 0; i < ps->session_count; ++i) {
fanchanghu3d4e7212017-08-09 09:42:30 +08001206 if (ps->sessions[i]->session == session) {
Radek Krejcid5f978f2016-03-03 13:14:45 +01001207remove:
Michal Vasko428087d2016-01-14 16:04:28 +01001208 --ps->session_count;
fanchanghu3d4e7212017-08-09 09:42:30 +08001209 if (i <= ps->session_count) {
1210 free(ps->sessions[i]);
Michal Vasko58005732016-02-02 15:50:52 +01001211 ps->sessions[i] = ps->sessions[ps->session_count];
fanchanghu3d4e7212017-08-09 09:42:30 +08001212 }
1213 if (!ps->session_count) {
Michal Vasko58005732016-02-02 15:50:52 +01001214 free(ps->sessions);
1215 ps->sessions = NULL;
Michal Vasko58005732016-02-02 15:50:52 +01001216 }
Michal Vasko11d2f6a2017-02-02 11:15:06 +01001217 ps->last_event_session = 0;
Michal Vasko428087d2016-01-14 16:04:28 +01001218 return 0;
1219 }
1220 }
1221
Michal Vaskof0537d82016-01-29 14:42:38 +01001222 return -1;
Michal Vasko428087d2016-01-14 16:04:28 +01001223}
1224
Michal Vasko48a63ed2016-03-01 09:48:21 +01001225API int
1226nc_ps_del_session(struct nc_pollsession *ps, struct nc_session *session)
1227{
Michal Vaskob30b99c2016-07-26 11:35:43 +02001228 uint8_t q_id;
Michal Vaskobe86fe32016-04-07 10:43:03 +02001229 int ret, ret2;
Michal Vasko48a63ed2016-03-01 09:48:21 +01001230
Michal Vasko45e53ae2016-04-07 11:46:03 +02001231 if (!ps) {
1232 ERRARG("ps");
1233 return -1;
1234 } else if (!session) {
1235 ERRARG("session");
Michal Vasko48a63ed2016-03-01 09:48:21 +01001236 return -1;
1237 }
1238
1239 /* LOCK */
Michal Vasko26043172016-07-26 14:08:59 +02001240 if (nc_ps_lock(ps, &q_id, __func__)) {
Michal Vaskobe86fe32016-04-07 10:43:03 +02001241 return -1;
1242 }
Michal Vasko48a63ed2016-03-01 09:48:21 +01001243
Radek Krejcid5f978f2016-03-03 13:14:45 +01001244 ret = _nc_ps_del_session(ps, session, -1);
Michal Vasko48a63ed2016-03-01 09:48:21 +01001245
1246 /* UNLOCK */
Michal Vasko26043172016-07-26 14:08:59 +02001247 ret2 = nc_ps_unlock(ps, q_id, __func__);
Michal Vasko48a63ed2016-03-01 09:48:21 +01001248
Michal Vaskob83a3fa2021-05-26 09:53:42 +02001249 return ret || ret2 ? -1 : 0;
Michal Vasko48a63ed2016-03-01 09:48:21 +01001250}
1251
Michal Vaskoe1ee05b2017-03-21 10:10:18 +01001252API struct nc_session *
Michal Vasko4871c9d2017-10-09 14:48:39 +02001253nc_ps_get_session(const struct nc_pollsession *ps, uint16_t idx)
Michal Vaskoe1ee05b2017-03-21 10:10:18 +01001254{
1255 uint8_t q_id;
Michal Vaskoe1ee05b2017-03-21 10:10:18 +01001256 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 Vasko4871c9d2017-10-09 14:48:39 +02001268 if (idx < ps->session_count) {
1269 ret = ps->sessions[idx]->session;
Michal Vaskoe1ee05b2017-03-21 10:10:18 +01001270 }
1271
1272 /* UNLOCK */
1273 nc_ps_unlock((struct nc_pollsession *)ps, q_id, __func__);
1274
1275 return ret;
1276}
1277
Michal Vasko3ec3b112022-07-21 12:32:33 +02001278API struct nc_session *
1279nc_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 Vasko0fdb7ac2016-03-01 09:03:12 +01001308API uint16_t
1309nc_ps_session_count(struct nc_pollsession *ps)
1310{
Michal Vasko47003942019-03-14 12:25:23 +01001311 uint8_t q_id;
1312 uint16_t session_count;
1313
Michal Vasko0fdb7ac2016-03-01 09:03:12 +01001314 if (!ps) {
Michal Vasko45e53ae2016-04-07 11:46:03 +02001315 ERRARG("ps");
Michal Vasko0fdb7ac2016-03-01 09:03:12 +01001316 return 0;
1317 }
1318
Michal Vasko47003942019-03-14 12:25:23 +01001319 /* 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 Vasko0fdb7ac2016-03-01 09:03:12 +01001330}
1331
Michal Vasko77e83572022-07-21 15:31:15 +02001332static NC_MSG_TYPE
1333recv_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 Vasko131120a2018-05-29 15:44:02 +02001354/* should be called holding the session RPC lock! IO lock will be acquired as needed
Michal Vasko71090fc2016-05-24 16:37:28 +02001355 * returns: NC_PSPOLL_ERROR,
Michal Vasko77367452021-02-16 16:32:18 +01001356 * NC_PSPOLL_TIMEOUT,
Michal Vasko77e83572022-07-21 15:31:15 +02001357 * NC_PSPOLL_BAD_RPC,
Michal Vasko71090fc2016-05-24 16:37:28 +02001358 * NC_PSPOLL_RPC
1359 */
1360static int
Michal Vasko131120a2018-05-29 15:44:02 +02001361nc_server_recv_rpc_io(struct nc_session *session, int io_timeout, struct nc_server_rpc **rpc)
Michal Vasko428087d2016-01-14 16:04:28 +01001362{
Michal Vasko77367452021-02-16 16:32:18 +01001363 struct ly_in *msg;
Radek Krejcif93c7d42016-04-06 13:41:15 +02001364 struct nc_server_reply *reply = NULL;
Michal Vasko939ffce2021-04-12 13:02:01 +02001365 struct lyd_node *e;
Michal Vasko77367452021-02-16 16:32:18 +01001366 int r, ret;
Michal Vasko428087d2016-01-14 16:04:28 +01001367
Michal Vasko45e53ae2016-04-07 11:46:03 +02001368 if (!session) {
1369 ERRARG("session");
Michal Vasko71090fc2016-05-24 16:37:28 +02001370 return NC_PSPOLL_ERROR;
Michal Vasko45e53ae2016-04-07 11:46:03 +02001371 } else if (!rpc) {
1372 ERRARG("rpc");
Michal Vasko71090fc2016-05-24 16:37:28 +02001373 return NC_PSPOLL_ERROR;
Michal Vasko428087d2016-01-14 16:04:28 +01001374 } else if ((session->status != NC_STATUS_RUNNING) || (session->side != NC_SERVER)) {
Michal Vasko05532772021-06-03 12:12:38 +02001375 ERR(session, "Invalid session to receive RPCs.");
Michal Vasko71090fc2016-05-24 16:37:28 +02001376 return NC_PSPOLL_ERROR;
Michal Vasko428087d2016-01-14 16:04:28 +01001377 }
1378
Michal Vasko93224072021-11-09 12:14:28 +01001379 *rpc = NULL;
1380
Michal Vasko77367452021-02-16 16:32:18 +01001381 /* get a message */
1382 r = nc_read_msg_io(session, io_timeout, &msg, 0);
1383 if (r == -2) {
1384 /* malformed message */
Michal Vasko77e83572022-07-21 15:31:15 +02001385 ret = NC_PSPOLL_BAD_RPC;
Michal Vasko93224072021-11-09 12:14:28 +01001386 reply = nc_server_reply_err(nc_err(session->ctx, NC_ERR_MALFORMED_MSG));
Michal Vasko77e83572022-07-21 15:31:15 +02001387 goto cleanup;
Michal Vaskob83a3fa2021-05-26 09:53:42 +02001388 }
1389 if (r == -1) {
Michal Vasko77367452021-02-16 16:32:18 +01001390 return NC_PSPOLL_ERROR;
1391 } else if (!r) {
1392 return NC_PSPOLL_TIMEOUT;
Michal Vasko428087d2016-01-14 16:04:28 +01001393 }
1394
Michal Vasko77367452021-02-16 16:32:18 +01001395 *rpc = calloc(1, sizeof **rpc);
1396 if (!*rpc) {
1397 ERRMEM;
Michal Vasko77e83572022-07-21 15:31:15 +02001398 ret = NC_PSPOLL_BAD_RPC;
Michal Vasko77367452021-02-16 16:32:18 +01001399 goto cleanup;
1400 }
1401
1402 /* parse the RPC */
Michal Vasko77e83572022-07-21 15:31:15 +02001403 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 Vasko77367452021-02-16 16:32:18 +01001414 /* bad RPC received */
Michal Vasko77e83572022-07-21 15:31:15 +02001415 ret = NC_PSPOLL_BAD_RPC;
Michal Vasko77367452021-02-16 16:32:18 +01001416
1417 if ((*rpc)->envp) {
1418 /* at least the envelopes were parsed */
Michal Vasko93224072021-11-09 12:14:28 +01001419 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 Vasko939ffce2021-04-12 13:02:01 +02001421 reply = nc_server_reply_err(e);
Michal Vasko77367452021-02-16 16:32:18 +01001422 } else if (session->version == NC_VERSION_11) {
Michal Vasko93224072021-11-09 12:14:28 +01001423 /* 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 Vasko77367452021-02-16 16:32:18 +01001426 }
Michal Vasko77367452021-02-16 16:32:18 +01001427 }
1428
1429cleanup:
Michal Vasko77e83572022-07-21 15:31:15 +02001430 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 Vasko77367452021-02-16 16:32:18 +01001443 ly_in_free(msg, 1);
1444 if (ret != NC_PSPOLL_RPC) {
1445 nc_server_rpc_free(*rpc);
1446 *rpc = NULL;
1447 }
Michal Vasko71090fc2016-05-24 16:37:28 +02001448 return ret;
Michal Vasko428087d2016-01-14 16:04:28 +01001449}
1450
fanchanghu966f2de2016-07-21 02:28:57 -04001451API void
1452nc_set_global_rpc_clb(nc_rpc_clb clb)
1453{
1454 global_rpc_clb = clb;
1455}
1456
Radek Krejci93e80222016-10-03 13:34:25 +02001457API NC_MSG_TYPE
1458nc_server_notif_send(struct nc_session *session, struct nc_server_notif *notif, int timeout)
1459{
Michal Vasko131120a2018-05-29 15:44:02 +02001460 NC_MSG_TYPE ret;
Radek Krejci93e80222016-10-03 13:34:25 +02001461
1462 /* check parameters */
Michal Vaskodf68e7e2022-04-21 11:04:00 +02001463 if (!session || (session->side != NC_SERVER) || !nc_session_get_notif_status(session)) {
Radek Krejci93e80222016-10-03 13:34:25 +02001464 ERRARG("session");
1465 return NC_MSG_ERROR;
Michal Vasko77367452021-02-16 16:32:18 +01001466 } else if (!notif || !notif->ntf || !notif->eventtime) {
Radek Krejci93e80222016-10-03 13:34:25 +02001467 ERRARG("notif");
1468 return NC_MSG_ERROR;
1469 }
1470
Michal Vasko131120a2018-05-29 15:44:02 +02001471 /* 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 Vasko8fe604c2020-02-10 15:25:04 +01001473 if (ret != NC_MSG_NOTIF) {
Michal Vasko05532772021-06-03 12:12:38 +02001474 ERR(session, "Failed to write notification (%s).", nc_msgtype2str[ret]);
Radek Krejci93e80222016-10-03 13:34:25 +02001475 }
Michal Vaskoade892d2017-02-22 13:40:35 +01001476
Michal Vasko131120a2018-05-29 15:44:02 +02001477 return ret;
Radek Krejci93e80222016-10-03 13:34:25 +02001478}
1479
Michal Vasko131120a2018-05-29 15:44:02 +02001480/* must be called holding the session RPC lock! IO lock will be acquired as needed
Michal Vasko71090fc2016-05-24 16:37:28 +02001481 * returns: NC_PSPOLL_ERROR,
1482 * NC_PSPOLL_ERROR | NC_PSPOLL_REPLY_ERROR,
1483 * NC_PSPOLL_REPLY_ERROR,
1484 * 0
1485 */
1486static int
Michal Vasko93224072021-11-09 12:14:28 +01001487nc_server_send_reply_io(struct nc_session *session, int io_timeout, const struct nc_server_rpc *rpc)
Michal Vasko428087d2016-01-14 16:04:28 +01001488{
1489 nc_rpc_clb clb;
1490 struct nc_server_reply *reply;
Michal Vasko77367452021-02-16 16:32:18 +01001491 const struct lysc_node *rpc_act = NULL;
1492 struct lyd_node *elem;
Michal Vasko131120a2018-05-29 15:44:02 +02001493 int ret = 0;
1494 NC_MSG_TYPE r;
Michal Vasko428087d2016-01-14 16:04:28 +01001495
Michal Vasko4a827e52016-03-03 10:59:00 +01001496 if (!rpc) {
1497 ERRINT;
Michal Vasko71090fc2016-05-24 16:37:28 +02001498 return NC_PSPOLL_ERROR;
Michal Vasko4a827e52016-03-03 10:59:00 +01001499 }
1500
Michal Vasko77367452021-02-16 16:32:18 +01001501 if (rpc->rpc->schema->nodetype == LYS_RPC) {
Michal Vasko90e8e692016-07-13 12:27:57 +02001502 /* RPC */
Michal Vasko77367452021-02-16 16:32:18 +01001503 rpc_act = rpc->rpc->schema;
fanchanghu966f2de2016-07-21 02:28:57 -04001504 } else {
Michal Vasko90e8e692016-07-13 12:27:57 +02001505 /* action */
Michal Vasko77367452021-02-16 16:32:18 +01001506 LYD_TREE_DFS_BEGIN(rpc->rpc, elem) {
Michal Vasko90e8e692016-07-13 12:27:57 +02001507 if (elem->schema->nodetype == LYS_ACTION) {
1508 rpc_act = elem->schema;
1509 break;
1510 }
Michal Vasko77367452021-02-16 16:32:18 +01001511 LYD_TREE_DFS_END(rpc->rpc, elem);
fanchanghu966f2de2016-07-21 02:28:57 -04001512 }
Michal Vasko90e8e692016-07-13 12:27:57 +02001513 if (!rpc_act) {
1514 ERRINT;
1515 return NC_PSPOLL_ERROR;
1516 }
1517 }
1518
1519 if (!rpc_act->priv) {
Petr A. Sokolov16284ca2019-02-04 09:02:40 +03001520 if (!global_rpc_clb) {
1521 /* no callback, reply with a not-implemented error */
Michal Vasko93224072021-11-09 12:14:28 +01001522 reply = nc_server_reply_err(nc_err(session->ctx, NC_ERR_OP_NOT_SUPPORTED, NC_ERR_TYPE_PROT));
Petr A. Sokolov16284ca2019-02-04 09:02:40 +03001523 } else {
Michal Vaskob83a3fa2021-05-26 09:53:42 +02001524 reply = global_rpc_clb(rpc->rpc, session);
Petr A. Sokolov16284ca2019-02-04 09:02:40 +03001525 }
Michal Vasko428087d2016-01-14 16:04:28 +01001526 } else {
Michal Vasko90e8e692016-07-13 12:27:57 +02001527 clb = (nc_rpc_clb)rpc_act->priv;
Michal Vasko77367452021-02-16 16:32:18 +01001528 reply = clb(rpc->rpc, session);
Michal Vasko428087d2016-01-14 16:04:28 +01001529 }
1530
1531 if (!reply) {
Michal Vasko93224072021-11-09 12:14:28 +01001532 reply = nc_server_reply_err(nc_err(session->ctx, NC_ERR_OP_FAILED, NC_ERR_TYPE_APP));
Michal Vasko428087d2016-01-14 16:04:28 +01001533 }
Michal Vasko77367452021-02-16 16:32:18 +01001534 r = nc_write_msg_io(session, io_timeout, NC_MSG_REPLY, rpc->envp, reply);
Michal Vasko71090fc2016-05-24 16:37:28 +02001535 if (reply->type == NC_RPL_ERROR) {
1536 ret |= NC_PSPOLL_REPLY_ERROR;
1537 }
1538 nc_server_reply_free(reply);
Michal Vasko428087d2016-01-14 16:04:28 +01001539
Michal Vasko131120a2018-05-29 15:44:02 +02001540 if (r != NC_MSG_REPLY) {
Michal Vasko15469492021-06-09 08:40:48 +02001541 ERR(session, "Failed to write reply (%s).", nc_msgtype2str[r]);
Michal Vasko71090fc2016-05-24 16:37:28 +02001542 ret |= NC_PSPOLL_ERROR;
1543 }
Michal Vasko428087d2016-01-14 16:04:28 +01001544
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 Vasko71090fc2016-05-24 16:37:28 +02001550 return ret;
Michal Vasko428087d2016-01-14 16:04:28 +01001551}
1552
Michal Vasko131120a2018-05-29 15:44:02 +02001553/* session must be running and session RPC lock held!
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001554 * 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 */
1561static int
Michal Vasko131120a2018-05-29 15:44:02 +02001562nc_ps_poll_session_io(struct nc_session *session, int io_timeout, time_t now_mono, char *msg)
Michal Vasko428087d2016-01-14 16:04:28 +01001563{
Michal Vasko9a327362017-01-11 11:31:46 +01001564 struct pollfd pfd;
Michal Vasko2260f552018-06-06 10:06:12 +02001565 int r, ret = 0;
Michal Vaskob83a3fa2021-05-26 09:53:42 +02001566
Michal Vasko9a327362017-01-11 11:31:46 +01001567#ifdef NC_ENABLED_SSH
1568 struct nc_session *new;
1569#endif
Michal Vasko428087d2016-01-14 16:04:28 +01001570
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001571 /* check timeout first */
Michal Vaskodf68e7e2022-04-21 11:04:00 +02001572 if (!(session->flags & NC_SESSION_CALLHOME) && !nc_session_get_notif_status(session) && server_opts.idle_timeout &&
Michal Vaskob83a3fa2021-05-26 09:53:42 +02001573 (now_mono >= session->opts.server.last_rpc + server_opts.idle_timeout)) {
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001574 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 Vasko131120a2018-05-29 15:44:02 +02001580 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 Vaskoefbc5e32017-05-26 14:02:16 +02001588 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 Vasko8dcaa882017-10-19 14:28:42 +02001592 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 Vaskoefbc5e32017-05-26 14:02:16 +02001599 session->status = NC_STATUS_INVALID;
1600 session->term_reason = NC_SESSION_TERM_OTHER;
1601 ret = NC_PSPOLL_SESSION_TERM | NC_PSPOLL_SESSION_ERROR;
Michal Vasko8dcaa882017-10-19 14:28:42 +02001602 } 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 Vaskob83a3fa2021-05-26 09:53:42 +02001608 if ((new->status == NC_STATUS_STARTING) && new->ti.libssh.channel &&
1609 (new->flags & NC_SESSION_SSH_SUBSYS_NETCONF)) {
Michal Vasko8dcaa882017-10-19 14:28:42 +02001610 /* new NETCONF SSH channel */
1611 ret = NC_PSPOLL_SSH_CHANNEL;
1612 break;
1613 }
1614 }
1615 if (new != session) {
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001616 break;
1617 }
1618 }
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001619
Michal Vasko8dcaa882017-10-19 14:28:42 +02001620 /* just some SSH message */
1621 ret = NC_PSPOLL_SSH_MSG;
1622 } else {
1623 ret = NC_PSPOLL_TIMEOUT;
1624 }
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001625 } 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 Matzac7fa2f2018-10-11 10:02:04 +02001673 case NC_TI_UNIX:
1674 pfd.fd = (session->ti_type == NC_TI_FD) ? session->ti.fd.in : session->ti.unixsock.sock;
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001675 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 Vasko131120a2018-05-29 15:44:02 +02001707 nc_session_io_unlock(session, __func__);
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001708 return ret;
1709}
1710
1711API int
1712nc_ps_poll(struct nc_pollsession *ps, int timeout, struct nc_session **session)
1713{
Michal Vasko443faa02022-10-20 09:09:03 +02001714 int ret = NC_PSPOLL_ERROR, r;
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001715 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;
fanchanghu3d4e7212017-08-09 09:42:30 +08001720 struct nc_ps_session *cur_ps_session;
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001721 struct nc_server_rpc *rpc = NULL;
1722
Michal Vasko30a5d6b2017-02-15 14:29:39 +01001723 if (!ps) {
Michal Vasko45e53ae2016-04-07 11:46:03 +02001724 ERRARG("ps");
Michal Vasko71090fc2016-05-24 16:37:28 +02001725 return NC_PSPOLL_ERROR;
Michal Vasko428087d2016-01-14 16:04:28 +01001726 }
1727
Michal Vaskoade892d2017-02-22 13:40:35 +01001728 /* PS LOCK */
Michal Vasko26043172016-07-26 14:08:59 +02001729 if (nc_ps_lock(ps, &q_id, __func__)) {
Michal Vasko71090fc2016-05-24 16:37:28 +02001730 return NC_PSPOLL_ERROR;
Michal Vaskobe86fe32016-04-07 10:43:03 +02001731 }
Michal Vasko48a63ed2016-03-01 09:48:21 +01001732
Michal Vaskoade892d2017-02-22 13:40:35 +01001733 if (!ps->session_count) {
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001734 nc_ps_unlock(ps, q_id, __func__);
1735 return NC_PSPOLL_NOSESSIONS;
Michal Vaskoade892d2017-02-22 13:40:35 +01001736 }
Michal Vaskobd8ef262016-01-20 11:09:27 +01001737
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001738 /* fill timespecs */
Michal Vaskod8a74192023-02-06 15:51:50 +01001739 nc_timeouttime_get(&ts_cur, 0);
Michal Vasko36c7be82017-02-22 13:37:59 +01001740 if (timeout > -1) {
Michal Vaskod8a74192023-02-06 15:51:50 +01001741 nc_timeouttime_get(&ts_timeout, timeout);
Michal Vasko36c7be82017-02-22 13:37:59 +01001742 }
1743
1744 /* poll all the sessions one-by-one */
Michal Vasko9a327362017-01-11 11:31:46 +01001745 do {
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001746 /* loop from i to j once (all sessions) */
Michal Vasko9a327362017-01-11 11:31:46 +01001747 if (ps->last_event_session == ps->session_count - 1) {
1748 i = j = 0;
1749 } else {
1750 i = j = ps->last_event_session + 1;
Michal Vaskobd8ef262016-01-20 11:09:27 +01001751 }
Michal Vasko9a327362017-01-11 11:31:46 +01001752 do {
fanchanghu3d4e7212017-08-09 09:42:30 +08001753 cur_ps_session = ps->sessions[i];
1754 cur_session = cur_ps_session->session;
Michal Vasko428087d2016-01-14 16:04:28 +01001755
Michal Vasko131120a2018-05-29 15:44:02 +02001756 /* SESSION RPC LOCK */
1757 r = nc_session_rpc_lock(cur_session, 0, __func__);
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001758 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 Vaskoc97cb162017-10-16 12:10:23 +02001762 switch (cur_ps_session->state) {
1763 case NC_PS_STATE_NONE:
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001764 if (cur_session->status == NC_STATUS_RUNNING) {
1765 /* session is fine, work with it */
fanchanghu3d4e7212017-08-09 09:42:30 +08001766 cur_ps_session->state = NC_PS_STATE_BUSY;
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001767
Michal Vasko131120a2018-05-29 15:44:02 +02001768 ret = nc_ps_poll_session_io(cur_session, NC_SESSION_LOCK_TIMEOUT, ts_cur.tv_sec, msg);
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001769 switch (ret) {
1770 case NC_PSPOLL_SESSION_TERM | NC_PSPOLL_SESSION_ERROR:
Michal Vasko05532772021-06-03 12:12:38 +02001771 ERR(cur_session, "%s.", msg);
fanchanghu3d4e7212017-08-09 09:42:30 +08001772 cur_ps_session->state = NC_PS_STATE_INVALID;
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001773 break;
1774 case NC_PSPOLL_ERROR:
Michal Vasko05532772021-06-03 12:12:38 +02001775 ERR(cur_session, "%s.", msg);
fanchanghu3d4e7212017-08-09 09:42:30 +08001776 cur_ps_session->state = NC_PS_STATE_NONE;
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001777 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
fanchanghu3d4e7212017-08-09 09:42:30 +08001783 cur_ps_session->state = NC_PS_STATE_NONE;
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001784 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 }
fanchanghu3d4e7212017-08-09 09:42:30 +08001795 cur_ps_session->state = NC_PS_STATE_INVALID;
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001796 }
Michal Vaskoc97cb162017-10-16 12:10:23 +02001797 break;
1798 case NC_PS_STATE_BUSY:
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001799 /* it definitely should not be busy because we have the lock */
1800 ERRINT;
Michal Vasko4992d802017-08-09 12:20:01 +02001801 ret = NC_PSPOLL_ERROR;
Michal Vaskoc97cb162017-10-16 12:10:23 +02001802 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 Vasko428087d2016-01-14 16:04:28 +01001807 }
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001808
Michal Vasko131120a2018-05-29 15:44:02 +02001809 /* keep RPC lock in this one case */
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001810 if (ret != NC_PSPOLL_RPC) {
Michal Vasko131120a2018-05-29 15:44:02 +02001811 /* SESSION RPC UNLOCK */
1812 nc_session_rpc_unlock(cur_session, NC_SESSION_LOCK_TIMEOUT, __func__);
Michal Vaskoade892d2017-02-22 13:40:35 +01001813 }
Michal Vaskoade892d2017-02-22 13:40:35 +01001814 } else {
1815 /* timeout */
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001816 ret = NC_PSPOLL_TIMEOUT;
Michal Vasko428087d2016-01-14 16:04:28 +01001817 }
Michal Vasko428087d2016-01-14 16:04:28 +01001818
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001819 /* something happened */
1820 if (ret != NC_PSPOLL_TIMEOUT) {
1821 break;
1822 }
1823
Michal Vasko9a327362017-01-11 11:31:46 +01001824 if (i == ps->session_count - 1) {
1825 i = 0;
1826 } else {
1827 ++i;
1828 }
1829 } while (i != j);
1830
Michal Vaskoade892d2017-02-22 13:40:35 +01001831 /* no event, no session remains locked */
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001832 if (ret == NC_PSPOLL_TIMEOUT) {
Michal Vasko9a327362017-01-11 11:31:46 +01001833 usleep(NC_TIMEOUT_STEP);
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001834
Michal Vaskod8a74192023-02-06 15:51:50 +01001835 if ((timeout > -1) && (nc_timeouttime_cur_diff(&ts_timeout) < 1)) {
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001836 /* final timeout */
1837 break;
Michal Vasko9a327362017-01-11 11:31:46 +01001838 }
Michal Vasko428087d2016-01-14 16:04:28 +01001839 }
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001840 } while (ret == NC_PSPOLL_TIMEOUT);
Michal Vasko428087d2016-01-14 16:04:28 +01001841
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001842 /* 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 Vasko71090fc2016-05-24 16:37:28 +02001858 }
Michal Vasko428087d2016-01-14 16:04:28 +01001859
Michal Vaskoade892d2017-02-22 13:40:35 +01001860 /* PS UNLOCK */
1861 nc_ps_unlock(ps, q_id, __func__);
Michal Vasko428087d2016-01-14 16:04:28 +01001862
Michal Vasko131120a2018-05-29 15:44:02 +02001863 /* we have some data available and the session is RPC locked (but not IO locked) */
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001864 if (ret == NC_PSPOLL_RPC) {
Michal Vasko131120a2018-05-29 15:44:02 +02001865 ret = nc_server_recv_rpc_io(cur_session, timeout, &rpc);
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001866 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;
fanchanghu3d4e7212017-08-09 09:42:30 +08001869 cur_ps_session->state = NC_PS_STATE_INVALID;
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001870 } else {
fanchanghu3d4e7212017-08-09 09:42:30 +08001871 cur_ps_session->state = NC_PS_STATE_NONE;
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001872 }
1873 } else {
Michal Vasko9fb42272017-10-05 13:50:05 +02001874 cur_session->opts.server.last_rpc = ts_cur.tv_sec;
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001875
Michal Vasko7f1ee932018-10-11 09:41:42 +02001876 /* process RPC */
Michal Vasko131120a2018-05-29 15:44:02 +02001877 ret |= nc_server_send_reply_io(cur_session, timeout, rpc);
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001878 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 }
fanchanghu3d4e7212017-08-09 09:42:30 +08001883 cur_ps_session->state = NC_PS_STATE_INVALID;
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001884 } else {
fanchanghu3d4e7212017-08-09 09:42:30 +08001885 cur_ps_session->state = NC_PS_STATE_NONE;
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001886 }
Michal Vasko428087d2016-01-14 16:04:28 +01001887 }
Michal Vasko77367452021-02-16 16:32:18 +01001888 nc_server_rpc_free(rpc);
Michal Vaskoefbc5e32017-05-26 14:02:16 +02001889
Michal Vasko131120a2018-05-29 15:44:02 +02001890 /* SESSION RPC UNLOCK */
1891 nc_session_rpc_unlock(cur_session, NC_SESSION_LOCK_TIMEOUT, __func__);
Michal Vasko428087d2016-01-14 16:04:28 +01001892 }
1893
Michal Vasko48a63ed2016-03-01 09:48:21 +01001894 return ret;
Michal Vasko428087d2016-01-14 16:04:28 +01001895}
1896
Michal Vaskod09eae62016-02-01 10:32:52 +01001897API void
Michal Vaskoe1a64ec2016-03-01 12:21:58 +01001898nc_ps_clear(struct nc_pollsession *ps, int all, void (*data_free)(void *))
Michal Vaskod09eae62016-02-01 10:32:52 +01001899{
Michal Vaskob30b99c2016-07-26 11:35:43 +02001900 uint8_t q_id;
Michal Vaskod09eae62016-02-01 10:32:52 +01001901 uint16_t i;
1902 struct nc_session *session;
1903
Michal Vasko9a25e932016-02-01 10:36:42 +01001904 if (!ps) {
Michal Vasko45e53ae2016-04-07 11:46:03 +02001905 ERRARG("ps");
Michal Vasko9a25e932016-02-01 10:36:42 +01001906 return;
1907 }
1908
Michal Vasko48a63ed2016-03-01 09:48:21 +01001909 /* LOCK */
Michal Vasko26043172016-07-26 14:08:59 +02001910 if (nc_ps_lock(ps, &q_id, __func__)) {
Michal Vaskobe86fe32016-04-07 10:43:03 +02001911 return;
1912 }
Michal Vaskod09eae62016-02-01 10:32:52 +01001913
Michal Vasko48a63ed2016-03-01 09:48:21 +01001914 if (all) {
Radek Krejci4f8042c2016-03-03 13:11:26 +01001915 for (i = 0; i < ps->session_count; i++) {
fanchanghu3d4e7212017-08-09 09:42:30 +08001916 nc_session_free(ps->sessions[i]->session, data_free);
1917 free(ps->sessions[i]);
Michal Vasko48a63ed2016-03-01 09:48:21 +01001918 }
1919 free(ps->sessions);
1920 ps->sessions = NULL;
Michal Vasko48a63ed2016-03-01 09:48:21 +01001921 ps->session_count = 0;
Michal Vasko9a327362017-01-11 11:31:46 +01001922 ps->last_event_session = 0;
Michal Vasko48a63ed2016-03-01 09:48:21 +01001923 } else {
1924 for (i = 0; i < ps->session_count; ) {
fanchanghu3d4e7212017-08-09 09:42:30 +08001925 if (ps->sessions[i]->session->status != NC_STATUS_RUNNING) {
1926 session = ps->sessions[i]->session;
Radek Krejcid5f978f2016-03-03 13:14:45 +01001927 _nc_ps_del_session(ps, NULL, i);
Michal Vaskoe1a64ec2016-03-01 12:21:58 +01001928 nc_session_free(session, data_free);
Michal Vasko48a63ed2016-03-01 09:48:21 +01001929 continue;
1930 }
1931
1932 ++i;
1933 }
Michal Vaskod09eae62016-02-01 10:32:52 +01001934 }
Michal Vasko48a63ed2016-03-01 09:48:21 +01001935
1936 /* UNLOCK */
Michal Vasko26043172016-07-26 14:08:59 +02001937 nc_ps_unlock(ps, q_id, __func__);
Michal Vaskod09eae62016-02-01 10:32:52 +01001938}
1939
Michal Vasko5f352c52019-07-10 16:12:06 +02001940static int
apropp-molex4e903c32020-04-20 03:06:58 -04001941nc_get_uid(int sock, uid_t *uid)
1942{
Michal Vaskod3910912020-04-20 09:12:49 +02001943 int ret;
apropp-molex4e903c32020-04-20 03:06:58 -04001944
Michal Vaskod3910912020-04-20 09:12:49 +02001945#ifdef SO_PEERCRED
1946 struct ucred ucred;
1947 socklen_t len;
Michal Vasko292c5542023-02-01 14:33:17 +01001948
Michal Vaskod3910912020-04-20 09:12:49 +02001949 len = sizeof(ucred);
1950 ret = getsockopt(sock, SOL_SOCKET, SO_PEERCRED, &ucred, &len);
1951 if (!ret) {
1952 *uid = ucred.uid;
1953 }
1954#else
1955 ret = getpeereid(sock, uid, NULL);
1956#endif
1957
1958 if (ret < 0) {
Michal Vasko05532772021-06-03 12:12:38 +02001959 ERR(NULL, "Failed to get credentials from unix socket (%s).", strerror(errno));
Michal Vaskod3910912020-04-20 09:12:49 +02001960 return -1;
1961 }
apropp-molex4e903c32020-04-20 03:06:58 -04001962 return 0;
1963}
1964
1965static int
Michal Vasko5f352c52019-07-10 16:12:06 +02001966nc_accept_unix(struct nc_session *session, int sock)
1967{
Michal Vaskob83a3fa2021-05-26 09:53:42 +02001968#if defined (SO_PEERCRED) || defined (HAVE_GETPEEREID)
Jan Kundrát6aa0eeb2021-10-08 21:10:05 +02001969 struct passwd *pw, pw_buf;
Michal Vasko5f352c52019-07-10 16:12:06 +02001970 char *username;
Michal Vasko292c5542023-02-01 14:33:17 +01001971
Michal Vasko5f352c52019-07-10 16:12:06 +02001972 session->ti_type = NC_TI_UNIX;
Michal Vasko143aa142021-10-01 15:31:48 +02001973 uid_t uid = 0;
Jan Kundrát6aa0eeb2021-10-08 21:10:05 +02001974 char *buf = NULL;
1975 size_t buf_len = 0;
Michal Vasko5f352c52019-07-10 16:12:06 +02001976
Michal Vaskod3910912020-04-20 09:12:49 +02001977 if (nc_get_uid(sock, &uid)) {
1978 close(sock);
Michal Vasko5f352c52019-07-10 16:12:06 +02001979 return -1;
1980 }
1981
Jan Kundrát6aa0eeb2021-10-08 21:10:05 +02001982 pw = nc_getpwuid(uid, &pw_buf, &buf, &buf_len);
Michal Vasko5f352c52019-07-10 16:12:06 +02001983 if (pw == NULL) {
Michal Vasko05532772021-06-03 12:12:38 +02001984 ERR(NULL, "Failed to find username for uid=%u (%s).\n", uid, strerror(errno));
Michal Vasko5f352c52019-07-10 16:12:06 +02001985 close(sock);
1986 return -1;
1987 }
1988
1989 username = strdup(pw->pw_name);
Michal Vaskoccd2dd02021-10-11 09:13:01 +02001990 free(buf);
Michal Vasko5f352c52019-07-10 16:12:06 +02001991 if (username == NULL) {
1992 ERRMEM;
1993 close(sock);
1994 return -1;
1995 }
Michal Vasko93224072021-11-09 12:14:28 +01001996 session->username = username;
Michal Vasko5f352c52019-07-10 16:12:06 +02001997
1998 session->ti.unixsock.sock = sock;
1999
2000 return 1;
Claus Klein22091912020-01-20 13:45:47 +01002001#else
2002 return -1;
2003#endif
Michal Vasko5f352c52019-07-10 16:12:06 +02002004}
2005
Michal Vaskoe2713da2016-08-22 16:06:40 +02002006API int
Michal Vasko2e6defd2016-10-07 15:48:15 +02002007nc_server_add_endpt(const char *name, NC_TRANSPORT_IMPL ti)
Michal Vasko9e036d52016-01-08 10:49:26 +01002008{
Michal Vasko3031aae2016-01-27 16:07:18 +01002009 uint16_t i;
Michal Vaskoade892d2017-02-22 13:40:35 +01002010 int ret = 0;
Michal Vasko9e036d52016-01-08 10:49:26 +01002011
Michal Vasko45e53ae2016-04-07 11:46:03 +02002012 if (!name) {
2013 ERRARG("name");
2014 return -1;
Michal Vasko9e036d52016-01-08 10:49:26 +01002015 }
2016
Michal Vaskoade892d2017-02-22 13:40:35 +01002017 /* BIND LOCK */
2018 pthread_mutex_lock(&server_opts.bind_lock);
2019
2020 /* ENDPT WRITE LOCK */
Michal Vasko2e6defd2016-10-07 15:48:15 +02002021 pthread_rwlock_wrlock(&server_opts.endpt_lock);
Michal Vasko3031aae2016-01-27 16:07:18 +01002022
2023 /* check name uniqueness */
2024 for (i = 0; i < server_opts.endpt_count; ++i) {
Michal Vaskoe2713da2016-08-22 16:06:40 +02002025 if (!strcmp(server_opts.endpts[i].name, name)) {
Michal Vasko05532772021-06-03 12:12:38 +02002026 ERR(NULL, "Endpoint \"%s\" already exists.", name);
Michal Vaskoade892d2017-02-22 13:40:35 +01002027 ret = -1;
2028 goto cleanup;
Michal Vasko3031aae2016-01-27 16:07:18 +01002029 }
2030 }
2031
Michal Vasko93224072021-11-09 12:14:28 +01002032 server_opts.endpts = nc_realloc(server_opts.endpts, (server_opts.endpt_count + 1) * sizeof *server_opts.endpts);
Michal Vaskoe2713da2016-08-22 16:06:40 +02002033 if (!server_opts.endpts) {
Michal Vasko4eb3c312016-03-01 14:09:37 +01002034 ERRMEM;
Michal Vaskoade892d2017-02-22 13:40:35 +01002035 ret = -1;
2036 goto cleanup;
Michal Vaskoe2713da2016-08-22 16:06:40 +02002037 }
Michal Vasko93224072021-11-09 12:14:28 +01002038 memset(&server_opts.endpts[server_opts.endpt_count], 0, sizeof *server_opts.endpts);
2039 ++server_opts.endpt_count;
2040
2041 server_opts.endpts[server_opts.endpt_count - 1].name = strdup(name);
Michal Vasko2e6defd2016-10-07 15:48:15 +02002042 server_opts.endpts[server_opts.endpt_count - 1].ti = ti;
Michal Vaskoe49a15f2019-05-27 14:18:36 +02002043 server_opts.endpts[server_opts.endpt_count - 1].ka.idle_time = 1;
2044 server_opts.endpts[server_opts.endpt_count - 1].ka.max_probes = 10;
2045 server_opts.endpts[server_opts.endpt_count - 1].ka.probe_interval = 5;
Michal Vaskoe2713da2016-08-22 16:06:40 +02002046
Michal Vaskoe2713da2016-08-22 16:06:40 +02002047 server_opts.binds = nc_realloc(server_opts.binds, server_opts.endpt_count * sizeof *server_opts.binds);
Michal Vaskoe2713da2016-08-22 16:06:40 +02002048 if (!server_opts.binds) {
2049 ERRMEM;
Michal Vaskoade892d2017-02-22 13:40:35 +01002050 ret = -1;
2051 goto cleanup;
Michal Vasko4eb3c312016-03-01 14:09:37 +01002052 }
Michal Vasko9e036d52016-01-08 10:49:26 +01002053
Michal Vaskoe49a15f2019-05-27 14:18:36 +02002054 memset(&server_opts.binds[server_opts.endpt_count - 1], 0, sizeof *server_opts.binds);
Michal Vasko2e6defd2016-10-07 15:48:15 +02002055 server_opts.binds[server_opts.endpt_count - 1].sock = -1;
2056
2057 switch (ti) {
Radek Krejci53691be2016-02-22 13:58:37 +01002058#ifdef NC_ENABLED_SSH
Michal Vasko2e6defd2016-10-07 15:48:15 +02002059 case NC_TI_LIBSSH:
2060 server_opts.endpts[server_opts.endpt_count - 1].opts.ssh = calloc(1, sizeof(struct nc_server_ssh_opts));
2061 if (!server_opts.endpts[server_opts.endpt_count - 1].opts.ssh) {
2062 ERRMEM;
Michal Vaskoade892d2017-02-22 13:40:35 +01002063 ret = -1;
2064 goto cleanup;
Michal Vasko2e6defd2016-10-07 15:48:15 +02002065 }
2066 server_opts.endpts[server_opts.endpt_count - 1].opts.ssh->auth_methods =
roman41a11e42022-06-22 09:27:08 +02002067 NC_SSH_AUTH_PUBLICKEY | NC_SSH_AUTH_PASSWORD;
Michal Vasko2e6defd2016-10-07 15:48:15 +02002068 server_opts.endpts[server_opts.endpt_count - 1].opts.ssh->auth_attempts = 3;
Michal Vaskocbad4c52019-06-27 16:30:35 +02002069 server_opts.endpts[server_opts.endpt_count - 1].opts.ssh->auth_timeout = 30;
Michal Vasko2e6defd2016-10-07 15:48:15 +02002070 break;
Michal Vaskoe2713da2016-08-22 16:06:40 +02002071#endif
Michal Vaskoe2713da2016-08-22 16:06:40 +02002072#ifdef NC_ENABLED_TLS
Michal Vasko2e6defd2016-10-07 15:48:15 +02002073 case NC_TI_OPENSSL:
2074 server_opts.endpts[server_opts.endpt_count - 1].opts.tls = calloc(1, sizeof(struct nc_server_tls_opts));
2075 if (!server_opts.endpts[server_opts.endpt_count - 1].opts.tls) {
2076 ERRMEM;
Michal Vaskoade892d2017-02-22 13:40:35 +01002077 ret = -1;
2078 goto cleanup;
Michal Vasko2e6defd2016-10-07 15:48:15 +02002079 }
2080 break;
Michal Vaskoe2713da2016-08-22 16:06:40 +02002081#endif
Olivier Matzac7fa2f2018-10-11 10:02:04 +02002082 case NC_TI_UNIX:
2083 server_opts.endpts[server_opts.endpt_count - 1].opts.unixsock = calloc(1, sizeof(struct nc_server_unix_opts));
2084 if (!server_opts.endpts[server_opts.endpt_count - 1].opts.unixsock) {
2085 ERRMEM;
2086 ret = -1;
2087 goto cleanup;
2088 }
2089 server_opts.endpts[server_opts.endpt_count - 1].opts.unixsock->mode = (mode_t)-1;
2090 server_opts.endpts[server_opts.endpt_count - 1].opts.unixsock->uid = (uid_t)-1;
2091 server_opts.endpts[server_opts.endpt_count - 1].opts.unixsock->gid = (gid_t)-1;
2092 break;
Michal Vasko2e6defd2016-10-07 15:48:15 +02002093 default:
2094 ERRINT;
Michal Vaskoade892d2017-02-22 13:40:35 +01002095 ret = -1;
2096 goto cleanup;
Michal Vaskoe2713da2016-08-22 16:06:40 +02002097 }
Michal Vaskoe2713da2016-08-22 16:06:40 +02002098
Michal Vaskoade892d2017-02-22 13:40:35 +01002099cleanup:
2100 /* ENDPT UNLOCK */
Michal Vasko2e6defd2016-10-07 15:48:15 +02002101 pthread_rwlock_unlock(&server_opts.endpt_lock);
Michal Vasko9e036d52016-01-08 10:49:26 +01002102
Michal Vaskoade892d2017-02-22 13:40:35 +01002103 /* BIND UNLOCK */
2104 pthread_mutex_unlock(&server_opts.bind_lock);
Michal Vaskob48aa812016-01-18 14:13:09 +01002105
Michal Vaskoade892d2017-02-22 13:40:35 +01002106 return ret;
Michal Vasko9e036d52016-01-08 10:49:26 +01002107}
2108
Olivier Matzac7fa2f2018-10-11 10:02:04 +02002109API int
Michal Vasko59050372016-11-22 14:33:55 +01002110nc_server_del_endpt(const char *name, NC_TRANSPORT_IMPL ti)
Michal Vasko9e036d52016-01-08 10:49:26 +01002111{
2112 uint32_t i;
2113 int ret = -1;
2114
Michal Vaskoade892d2017-02-22 13:40:35 +01002115 /* BIND LOCK */
2116 pthread_mutex_lock(&server_opts.bind_lock);
Michal Vaskob48aa812016-01-18 14:13:09 +01002117
Michal Vaskoade892d2017-02-22 13:40:35 +01002118 /* ENDPT WRITE LOCK */
Michal Vasko2e6defd2016-10-07 15:48:15 +02002119 pthread_rwlock_wrlock(&server_opts.endpt_lock);
Michal Vasko9e036d52016-01-08 10:49:26 +01002120
Michal Vasko59050372016-11-22 14:33:55 +01002121 if (!name && !ti) {
Michal Vaskoe2713da2016-08-22 16:06:40 +02002122 /* remove all endpoints */
Michal Vasko3031aae2016-01-27 16:07:18 +01002123 for (i = 0; i < server_opts.endpt_count; ++i) {
Michal Vasko93224072021-11-09 12:14:28 +01002124 free(server_opts.endpts[i].name);
Michal Vasko2e6defd2016-10-07 15:48:15 +02002125 switch (server_opts.endpts[i].ti) {
Radek Krejci53691be2016-02-22 13:58:37 +01002126#ifdef NC_ENABLED_SSH
Michal Vasko2e6defd2016-10-07 15:48:15 +02002127 case NC_TI_LIBSSH:
2128 nc_server_ssh_clear_opts(server_opts.endpts[i].opts.ssh);
2129 free(server_opts.endpts[i].opts.ssh);
2130 break;
Michal Vasko3031aae2016-01-27 16:07:18 +01002131#endif
Radek Krejci53691be2016-02-22 13:58:37 +01002132#ifdef NC_ENABLED_TLS
Michal Vasko2e6defd2016-10-07 15:48:15 +02002133 case NC_TI_OPENSSL:
2134 nc_server_tls_clear_opts(server_opts.endpts[i].opts.tls);
2135 free(server_opts.endpts[i].opts.tls);
2136 break;
Michal Vasko3031aae2016-01-27 16:07:18 +01002137#endif
Olivier Matzac7fa2f2018-10-11 10:02:04 +02002138 case NC_TI_UNIX:
2139 free(server_opts.endpts[i].opts.unixsock);
2140 break;
Michal Vasko2e6defd2016-10-07 15:48:15 +02002141 default:
2142 ERRINT;
2143 /* won't get here ...*/
2144 break;
2145 }
Michal Vasko9e036d52016-01-08 10:49:26 +01002146 ret = 0;
2147 }
Michal Vasko3031aae2016-01-27 16:07:18 +01002148 free(server_opts.endpts);
2149 server_opts.endpts = NULL;
Michal Vaskoe2713da2016-08-22 16:06:40 +02002150
2151 /* remove all binds */
2152 for (i = 0; i < server_opts.endpt_count; ++i) {
Michal Vasko93224072021-11-09 12:14:28 +01002153 free(server_opts.binds[i].address);
Michal Vaskoe2713da2016-08-22 16:06:40 +02002154 if (server_opts.binds[i].sock > -1) {
2155 close(server_opts.binds[i].sock);
2156 }
2157 }
Michal Vaskoe2713da2016-08-22 16:06:40 +02002158 free(server_opts.binds);
2159 server_opts.binds = NULL;
2160
Michal Vasko3031aae2016-01-27 16:07:18 +01002161 server_opts.endpt_count = 0;
2162
Michal Vasko1a38c862016-01-15 15:50:07 +01002163 } else {
Michal Vasko59050372016-11-22 14:33:55 +01002164 /* remove one endpoint with bind(s) or all endpoints using one transport protocol */
Michal Vasko3031aae2016-01-27 16:07:18 +01002165 for (i = 0; i < server_opts.endpt_count; ++i) {
Michal Vasko59050372016-11-22 14:33:55 +01002166 if ((name && !strcmp(server_opts.endpts[i].name, name)) || (!name && (server_opts.endpts[i].ti == ti))) {
Michal Vaskoe2713da2016-08-22 16:06:40 +02002167 /* remove endpt */
Michal Vasko93224072021-11-09 12:14:28 +01002168 free(server_opts.endpts[i].name);
Michal Vasko2e6defd2016-10-07 15:48:15 +02002169 switch (server_opts.endpts[i].ti) {
Radek Krejci53691be2016-02-22 13:58:37 +01002170#ifdef NC_ENABLED_SSH
Michal Vasko2e6defd2016-10-07 15:48:15 +02002171 case NC_TI_LIBSSH:
2172 nc_server_ssh_clear_opts(server_opts.endpts[i].opts.ssh);
2173 free(server_opts.endpts[i].opts.ssh);
2174 break;
Michal Vasko3031aae2016-01-27 16:07:18 +01002175#endif
Radek Krejci53691be2016-02-22 13:58:37 +01002176#ifdef NC_ENABLED_TLS
Michal Vasko2e6defd2016-10-07 15:48:15 +02002177 case NC_TI_OPENSSL:
2178 nc_server_tls_clear_opts(server_opts.endpts[i].opts.tls);
2179 free(server_opts.endpts[i].opts.tls);
2180 break;
Michal Vasko3031aae2016-01-27 16:07:18 +01002181#endif
Olivier Matzac7fa2f2018-10-11 10:02:04 +02002182 case NC_TI_UNIX:
2183 free(server_opts.endpts[i].opts.unixsock);
2184 break;
Michal Vasko2e6defd2016-10-07 15:48:15 +02002185 default:
2186 ERRINT;
2187 break;
2188 }
Michal Vasko1a38c862016-01-15 15:50:07 +01002189
Michal Vaskoe2713da2016-08-22 16:06:40 +02002190 /* remove bind(s) */
Michal Vasko93224072021-11-09 12:14:28 +01002191 free(server_opts.binds[i].address);
Michal Vaskoe2713da2016-08-22 16:06:40 +02002192 if (server_opts.binds[i].sock > -1) {
2193 close(server_opts.binds[i].sock);
2194 }
2195
2196 /* move last endpt and bind(s) to the empty space */
Michal Vasko3031aae2016-01-27 16:07:18 +01002197 --server_opts.endpt_count;
Michal Vasko9ed67a72016-10-13 15:00:51 +02002198 if (!server_opts.endpt_count) {
Michal Vaskoc0256492016-02-02 12:19:06 +01002199 free(server_opts.binds);
2200 server_opts.binds = NULL;
2201 free(server_opts.endpts);
2202 server_opts.endpts = NULL;
Michal Vasko9ed67a72016-10-13 15:00:51 +02002203 } else if (i < server_opts.endpt_count) {
2204 memcpy(&server_opts.binds[i], &server_opts.binds[server_opts.endpt_count], sizeof *server_opts.binds);
2205 memcpy(&server_opts.endpts[i], &server_opts.endpts[server_opts.endpt_count], sizeof *server_opts.endpts);
Michal Vaskoc0256492016-02-02 12:19:06 +01002206 }
Michal Vasko1a38c862016-01-15 15:50:07 +01002207
2208 ret = 0;
Michal Vasko59050372016-11-22 14:33:55 +01002209 if (name) {
2210 break;
2211 }
Michal Vasko1a38c862016-01-15 15:50:07 +01002212 }
2213 }
Michal Vasko9e036d52016-01-08 10:49:26 +01002214 }
2215
Michal Vaskoade892d2017-02-22 13:40:35 +01002216 /* ENDPT UNLOCK */
Michal Vasko2e6defd2016-10-07 15:48:15 +02002217 pthread_rwlock_unlock(&server_opts.endpt_lock);
Michal Vaskob48aa812016-01-18 14:13:09 +01002218
Michal Vaskoade892d2017-02-22 13:40:35 +01002219 /* BIND UNLOCK */
2220 pthread_mutex_unlock(&server_opts.bind_lock);
Michal Vasko9e036d52016-01-08 10:49:26 +01002221
2222 return ret;
2223}
2224
Michal Vaskoe49a15f2019-05-27 14:18:36 +02002225API int
2226nc_server_endpt_count(void)
2227{
2228 return server_opts.endpt_count;
2229}
2230
Michal Vasko1b5973e2020-01-30 16:05:46 +01002231API int
2232nc_server_is_endpt(const char *name)
2233{
2234 uint16_t i;
2235 int found = 0;
2236
Michal Vaskofb1724b2020-01-31 11:02:00 +01002237 if (!name) {
2238 return found;
2239 }
2240
Michal Vasko1b5973e2020-01-30 16:05:46 +01002241 /* ENDPT READ LOCK */
2242 pthread_rwlock_rdlock(&server_opts.endpt_lock);
2243
2244 /* check name uniqueness */
2245 for (i = 0; i < server_opts.endpt_count; ++i) {
2246 if (!strcmp(server_opts.endpts[i].name, name)) {
2247 found = 1;
2248 break;
2249 }
2250 }
2251
2252 /* ENDPT UNLOCK */
2253 pthread_rwlock_unlock(&server_opts.endpt_lock);
2254
2255 return found;
2256}
2257
Michal Vaskoe49a15f2019-05-27 14:18:36 +02002258int
2259nc_server_endpt_set_address_port(const char *endpt_name, const char *address, uint16_t port)
2260{
2261 struct nc_endpt *endpt;
2262 struct nc_bind *bind = NULL;
2263 uint16_t i;
2264 int sock = -1, set_addr, ret = 0;
2265
2266 if (!endpt_name) {
2267 ERRARG("endpt_name");
2268 return -1;
2269 } else if ((!address && !port) || (address && port)) {
2270 ERRARG("address and port");
2271 return -1;
2272 }
2273
2274 if (address) {
2275 set_addr = 1;
2276 } else {
2277 set_addr = 0;
2278 }
2279
2280 /* BIND LOCK */
2281 pthread_mutex_lock(&server_opts.bind_lock);
2282
2283 /* ENDPT LOCK */
2284 endpt = nc_server_endpt_lock_get(endpt_name, 0, &i);
2285 if (!endpt) {
2286 /* BIND UNLOCK */
2287 pthread_mutex_unlock(&server_opts.bind_lock);
2288 return -1;
2289 }
2290
2291 bind = &server_opts.binds[i];
2292
2293 if (set_addr) {
2294 port = bind->port;
2295 } else {
2296 address = bind->address;
2297 }
2298
Michal Vaskob83a3fa2021-05-26 09:53:42 +02002299 if (!set_addr && (endpt->ti == NC_TI_UNIX)) {
Michal Vaskoe49a15f2019-05-27 14:18:36 +02002300 ret = -1;
2301 goto cleanup;
2302 }
2303
2304 /* we have all the information we need to create a listening socket */
Michal Vaskob83a3fa2021-05-26 09:53:42 +02002305 if (address && (port || (endpt->ti == NC_TI_UNIX))) {
Michal Vaskoe49a15f2019-05-27 14:18:36 +02002306 /* create new socket, close the old one */
Michal Vaskob83a3fa2021-05-26 09:53:42 +02002307 if (endpt->ti == NC_TI_UNIX) {
Michal Vaskoe49a15f2019-05-27 14:18:36 +02002308 sock = nc_sock_listen_unix(address, endpt->opts.unixsock);
Michal Vaskob83a3fa2021-05-26 09:53:42 +02002309 } else {
Michal Vaskoe49a15f2019-05-27 14:18:36 +02002310 sock = nc_sock_listen_inet(address, port, &endpt->ka);
Michal Vaskob83a3fa2021-05-26 09:53:42 +02002311 }
Michal Vaskoe49a15f2019-05-27 14:18:36 +02002312 if (sock == -1) {
2313 ret = -1;
2314 goto cleanup;
2315 }
2316
2317 if (bind->sock > -1) {
2318 close(bind->sock);
2319 }
2320 bind->sock = sock;
2321 } /* else we are just setting address or port */
2322
2323 if (set_addr) {
Michal Vasko93224072021-11-09 12:14:28 +01002324 free(bind->address);
2325 bind->address = strdup(address);
Michal Vaskoe49a15f2019-05-27 14:18:36 +02002326 } else {
2327 bind->port = port;
2328 }
2329
2330 if (sock > -1) {
Michal Vasko946cacb2020-08-12 11:18:08 +02002331 switch (endpt->ti) {
2332 case NC_TI_UNIX:
Michal Vasko05532772021-06-03 12:12:38 +02002333 VRB(NULL, "Listening on %s for UNIX connections.", address);
Michal Vasko946cacb2020-08-12 11:18:08 +02002334 break;
2335#ifdef NC_ENABLED_SSH
2336 case NC_TI_LIBSSH:
Michal Vasko05532772021-06-03 12:12:38 +02002337 VRB(NULL, "Listening on %s:%u for SSH connections.", address, port);
Michal Vasko946cacb2020-08-12 11:18:08 +02002338 break;
Michal Vaskoe49a15f2019-05-27 14:18:36 +02002339#endif
Michal Vasko946cacb2020-08-12 11:18:08 +02002340#ifdef NC_ENABLED_TLS
2341 case NC_TI_OPENSSL:
Michal Vasko05532772021-06-03 12:12:38 +02002342 VRB(NULL, "Listening on %s:%u for TLS connections.", address, port);
Michal Vasko946cacb2020-08-12 11:18:08 +02002343 break;
2344#endif
2345 default:
2346 ERRINT;
2347 break;
2348 }
Michal Vaskoe49a15f2019-05-27 14:18:36 +02002349 }
2350
2351cleanup:
2352 /* ENDPT UNLOCK */
2353 pthread_rwlock_unlock(&server_opts.endpt_lock);
2354
2355 /* BIND UNLOCK */
2356 pthread_mutex_unlock(&server_opts.bind_lock);
2357
2358 return ret;
2359}
2360
2361API int
2362nc_server_endpt_set_address(const char *endpt_name, const char *address)
2363{
2364 return nc_server_endpt_set_address_port(endpt_name, address, 0);
2365}
2366
Michal Vaskob83a3fa2021-05-26 09:53:42 +02002367#if defined (NC_ENABLED_SSH) || defined (NC_ENABLED_TLS)
Michal Vasko946cacb2020-08-12 11:18:08 +02002368
Michal Vaskoe49a15f2019-05-27 14:18:36 +02002369API int
2370nc_server_endpt_set_port(const char *endpt_name, uint16_t port)
2371{
2372 return nc_server_endpt_set_address_port(endpt_name, NULL, port);
2373}
2374
Michal Vasko946cacb2020-08-12 11:18:08 +02002375#endif
2376
Michal Vaskoe49a15f2019-05-27 14:18:36 +02002377API int
2378nc_server_endpt_set_perms(const char *endpt_name, mode_t mode, uid_t uid, gid_t gid)
2379{
2380 struct nc_endpt *endpt;
2381 uint16_t i;
2382 int ret = 0;
2383
2384 if (!endpt_name) {
2385 ERRARG("endpt_name");
2386 return -1;
2387 } else if (mode == 0) {
2388 ERRARG("mode");
2389 return -1;
2390 }
2391
2392 /* ENDPT LOCK */
2393 endpt = nc_server_endpt_lock_get(endpt_name, 0, &i);
Michal Vaskob83a3fa2021-05-26 09:53:42 +02002394 if (!endpt) {
Michal Vaskoe49a15f2019-05-27 14:18:36 +02002395 return -1;
Michal Vaskob83a3fa2021-05-26 09:53:42 +02002396 }
Michal Vaskoe49a15f2019-05-27 14:18:36 +02002397
2398 if (endpt->ti != NC_TI_UNIX) {
2399 ret = -1;
2400 goto cleanup;
2401 }
2402
2403 endpt->opts.unixsock->mode = mode;
2404 endpt->opts.unixsock->uid = uid;
2405 endpt->opts.unixsock->gid = gid;
2406
2407cleanup:
2408 /* ENDPT UNLOCK */
2409 pthread_rwlock_unlock(&server_opts.endpt_lock);
2410
2411 return ret;
2412}
2413
2414API int
2415nc_server_endpt_enable_keepalives(const char *endpt_name, int enable)
2416{
2417 struct nc_endpt *endpt;
2418 int ret = 0;
2419
2420 if (!endpt_name) {
2421 ERRARG("endpt_name");
2422 return -1;
2423 }
2424
2425 /* ENDPT LOCK */
2426 endpt = nc_server_endpt_lock_get(endpt_name, 0, NULL);
2427 if (!endpt) {
2428 return -1;
2429 }
2430
2431 endpt->ka.enabled = (enable ? 1 : 0);
2432
2433 /* ENDPT UNLOCK */
2434 pthread_rwlock_unlock(&server_opts.endpt_lock);
2435
2436 return ret;
2437}
2438
2439API int
2440nc_server_endpt_set_keepalives(const char *endpt_name, int idle_time, int max_probes, int probe_interval)
2441{
2442 struct nc_endpt *endpt;
2443 int ret = 0;
2444
2445 if (!endpt_name) {
2446 ERRARG("endpt_name");
2447 return -1;
2448 }
2449
2450 /* ENDPT LOCK */
2451 endpt = nc_server_endpt_lock_get(endpt_name, 0, NULL);
2452 if (!endpt) {
2453 return -1;
2454 }
2455
2456 if (idle_time > -1) {
2457 endpt->ka.idle_time = idle_time;
2458 }
2459 if (max_probes > -1) {
2460 endpt->ka.max_probes = max_probes;
2461 }
2462 if (probe_interval > -1) {
2463 endpt->ka.probe_interval = probe_interval;
2464 }
2465
2466 /* ENDPT UNLOCK */
2467 pthread_rwlock_unlock(&server_opts.endpt_lock);
2468
2469 return ret;
2470}
2471
Michal Vasko71090fc2016-05-24 16:37:28 +02002472API NC_MSG_TYPE
Michal Vasko93224072021-11-09 12:14:28 +01002473nc_accept(int timeout, const struct ly_ctx *ctx, struct nc_session **session)
Michal Vasko9e036d52016-01-08 10:49:26 +01002474{
Michal Vasko71090fc2016-05-24 16:37:28 +02002475 NC_MSG_TYPE msgtype;
Michal Vasko1a38c862016-01-15 15:50:07 +01002476 int sock, ret;
Michal Vasko5c2f7952016-01-22 13:16:31 +01002477 char *host = NULL;
Michal Vasko2e6defd2016-10-07 15:48:15 +02002478 uint16_t port, bind_idx;
Michal Vasko9fb42272017-10-05 13:50:05 +02002479 struct timespec ts_cur;
Michal Vasko9e036d52016-01-08 10:49:26 +01002480
Michal Vasko93224072021-11-09 12:14:28 +01002481 if (!ctx) {
2482 ERRARG("ctx");
Michal Vasko71090fc2016-05-24 16:37:28 +02002483 return NC_MSG_ERROR;
Michal Vasko45e53ae2016-04-07 11:46:03 +02002484 } else if (!session) {
2485 ERRARG("session");
Michal Vasko71090fc2016-05-24 16:37:28 +02002486 return NC_MSG_ERROR;
Michal Vasko9e036d52016-01-08 10:49:26 +01002487 }
2488
Michal Vasko93224072021-11-09 12:14:28 +01002489 /* init ctx as needed */
2490 nc_server_init_ctx(ctx);
2491
Michal Vaskoade892d2017-02-22 13:40:35 +01002492 /* BIND LOCK */
2493 pthread_mutex_lock(&server_opts.bind_lock);
Michal Vasko51e514d2016-02-02 15:51:52 +01002494
2495 if (!server_opts.endpt_count) {
Michal Vasko05532772021-06-03 12:12:38 +02002496 ERR(NULL, "No endpoints to accept sessions on.");
Michal Vaskoade892d2017-02-22 13:40:35 +01002497 /* BIND UNLOCK */
2498 pthread_mutex_unlock(&server_opts.bind_lock);
Michal Vasko71090fc2016-05-24 16:37:28 +02002499 return NC_MSG_ERROR;
Michal Vasko51e514d2016-02-02 15:51:52 +01002500 }
Michal Vaskob48aa812016-01-18 14:13:09 +01002501
Michal Vaskoe2713da2016-08-22 16:06:40 +02002502 ret = nc_sock_accept_binds(server_opts.binds, server_opts.endpt_count, timeout, &host, &port, &bind_idx);
Michal Vasko50456e82016-02-02 12:16:08 +01002503 if (ret < 1) {
Michal Vaskoade892d2017-02-22 13:40:35 +01002504 /* BIND UNLOCK */
2505 pthread_mutex_unlock(&server_opts.bind_lock);
Michal Vaskob737d752016-02-09 09:01:27 +01002506 free(host);
Michal Vasko5e203472016-05-30 15:27:58 +02002507 if (!ret) {
2508 return NC_MSG_WOULDBLOCK;
2509 }
Michal Vasko71090fc2016-05-24 16:37:28 +02002510 return NC_MSG_ERROR;
Michal Vasko9e036d52016-01-08 10:49:26 +01002511 }
Michal Vaskoade892d2017-02-22 13:40:35 +01002512
2513 /* switch bind_lock for endpt_lock, so that another thread can accept another session */
2514 /* ENDPT READ LOCK */
2515 pthread_rwlock_rdlock(&server_opts.endpt_lock);
2516
2517 /* BIND UNLOCK */
2518 pthread_mutex_unlock(&server_opts.bind_lock);
2519
Michal Vaskob48aa812016-01-18 14:13:09 +01002520 sock = ret;
Michal Vasko9e036d52016-01-08 10:49:26 +01002521
Michal Vasko131120a2018-05-29 15:44:02 +02002522 *session = nc_new_session(NC_SERVER, 0);
Michal Vasko686aa312016-01-21 15:58:18 +01002523 if (!(*session)) {
Michal Vasko9e036d52016-01-08 10:49:26 +01002524 ERRMEM;
Michal Vaskoc14e3c82016-01-11 16:14:30 +01002525 close(sock);
Michal Vasko5c2f7952016-01-22 13:16:31 +01002526 free(host);
Michal Vasko71090fc2016-05-24 16:37:28 +02002527 msgtype = NC_MSG_ERROR;
2528 goto cleanup;
Michal Vasko9e036d52016-01-08 10:49:26 +01002529 }
Michal Vasko1a38c862016-01-15 15:50:07 +01002530 (*session)->status = NC_STATUS_STARTING;
Michal Vasko93224072021-11-09 12:14:28 +01002531 (*session)->ctx = (struct ly_ctx *)ctx;
Michal Vasko1a38c862016-01-15 15:50:07 +01002532 (*session)->flags = NC_SESSION_SHAREDCTX;
Michal Vasko93224072021-11-09 12:14:28 +01002533 (*session)->host = host;
Michal Vasko1a38c862016-01-15 15:50:07 +01002534 (*session)->port = port;
Michal Vasko9e036d52016-01-08 10:49:26 +01002535
Michal Vaskoc14e3c82016-01-11 16:14:30 +01002536 /* sock gets assigned to session or closed */
Radek Krejci53691be2016-02-22 13:58:37 +01002537#ifdef NC_ENABLED_SSH
Michal Vasko2e6defd2016-10-07 15:48:15 +02002538 if (server_opts.endpts[bind_idx].ti == NC_TI_LIBSSH) {
2539 (*session)->data = server_opts.endpts[bind_idx].opts.ssh;
Michal Vaskob70c8b82017-03-17 09:09:29 +01002540 ret = nc_accept_ssh_session(*session, sock, NC_TRANSPORT_TIMEOUT);
Michal Vasko71090fc2016-05-24 16:37:28 +02002541 if (ret < 0) {
2542 msgtype = NC_MSG_ERROR;
2543 goto cleanup;
2544 } else if (!ret) {
2545 msgtype = NC_MSG_WOULDBLOCK;
2546 goto cleanup;
Michal Vasko9e036d52016-01-08 10:49:26 +01002547 }
Michal Vasko3d865d22016-01-28 16:00:53 +01002548 } else
2549#endif
Radek Krejci53691be2016-02-22 13:58:37 +01002550#ifdef NC_ENABLED_TLS
Michal Vasko2e6defd2016-10-07 15:48:15 +02002551 if (server_opts.endpts[bind_idx].ti == NC_TI_OPENSSL) {
2552 (*session)->data = server_opts.endpts[bind_idx].opts.tls;
Michal Vaskob70c8b82017-03-17 09:09:29 +01002553 ret = nc_accept_tls_session(*session, sock, NC_TRANSPORT_TIMEOUT);
Michal Vasko71090fc2016-05-24 16:37:28 +02002554 if (ret < 0) {
2555 msgtype = NC_MSG_ERROR;
2556 goto cleanup;
2557 } else if (!ret) {
2558 msgtype = NC_MSG_WOULDBLOCK;
2559 goto cleanup;
Michal Vasko9e036d52016-01-08 10:49:26 +01002560 }
Michal Vasko3d865d22016-01-28 16:00:53 +01002561 } else
2562#endif
Olivier Matzac7fa2f2018-10-11 10:02:04 +02002563 if (server_opts.endpts[bind_idx].ti == NC_TI_UNIX) {
2564 (*session)->data = server_opts.endpts[bind_idx].opts.unixsock;
2565 ret = nc_accept_unix(*session, sock);
2566 if (ret < 0) {
2567 msgtype = NC_MSG_ERROR;
2568 goto cleanup;
2569 }
2570 } else {
Michal Vasko9e036d52016-01-08 10:49:26 +01002571 ERRINT;
Michal Vaskoc14e3c82016-01-11 16:14:30 +01002572 close(sock);
Michal Vasko71090fc2016-05-24 16:37:28 +02002573 msgtype = NC_MSG_ERROR;
2574 goto cleanup;
Michal Vasko9e036d52016-01-08 10:49:26 +01002575 }
2576
Michal Vasko2cc4c682016-03-01 09:16:48 +01002577 (*session)->data = NULL;
2578
Michal Vaskoade892d2017-02-22 13:40:35 +01002579 /* ENDPT UNLOCK */
Michal Vasko2e6defd2016-10-07 15:48:15 +02002580 pthread_rwlock_unlock(&server_opts.endpt_lock);
Michal Vasko3031aae2016-01-27 16:07:18 +01002581
Michal Vaskob48aa812016-01-18 14:13:09 +01002582 /* assign new SID atomically */
Michal Vasko5bd4a3f2021-06-17 16:40:10 +02002583 (*session)->id = ATOMIC_INC_RELAXED(server_opts.new_session_id);
Michal Vaskob48aa812016-01-18 14:13:09 +01002584
Michal Vasko9e036d52016-01-08 10:49:26 +01002585 /* NETCONF handshake */
Michal Vasko131120a2018-05-29 15:44:02 +02002586 msgtype = nc_handshake_io(*session);
Michal Vasko71090fc2016-05-24 16:37:28 +02002587 if (msgtype != NC_MSG_HELLO) {
Michal Vaskoe1a64ec2016-03-01 12:21:58 +01002588 nc_session_free(*session, NULL);
Michal Vasko3031aae2016-01-27 16:07:18 +01002589 *session = NULL;
Michal Vasko71090fc2016-05-24 16:37:28 +02002590 return msgtype;
Michal Vasko9e036d52016-01-08 10:49:26 +01002591 }
Michal Vasko9fb42272017-10-05 13:50:05 +02002592
Michal Vaskod8a74192023-02-06 15:51:50 +01002593 nc_timeouttime_get(&ts_cur, 0);
Michal Vasko9fb42272017-10-05 13:50:05 +02002594 (*session)->opts.server.last_rpc = ts_cur.tv_sec;
Michal Vaskod8a74192023-02-06 15:51:50 +01002595 nc_realtime_get(&ts_cur);
Michal Vasko9fb42272017-10-05 13:50:05 +02002596 (*session)->opts.server.session_start = ts_cur.tv_sec;
Michal Vasko1a38c862016-01-15 15:50:07 +01002597 (*session)->status = NC_STATUS_RUNNING;
Michal Vasko9e036d52016-01-08 10:49:26 +01002598
Michal Vasko71090fc2016-05-24 16:37:28 +02002599 return msgtype;
Michal Vasko9e036d52016-01-08 10:49:26 +01002600
Michal Vasko71090fc2016-05-24 16:37:28 +02002601cleanup:
Michal Vaskoade892d2017-02-22 13:40:35 +01002602 /* ENDPT UNLOCK */
Michal Vasko2e6defd2016-10-07 15:48:15 +02002603 pthread_rwlock_unlock(&server_opts.endpt_lock);
Michal Vasko3031aae2016-01-27 16:07:18 +01002604
Michal Vaskoe1a64ec2016-03-01 12:21:58 +01002605 nc_session_free(*session, NULL);
Michal Vasko1a38c862016-01-15 15:50:07 +01002606 *session = NULL;
Michal Vasko71090fc2016-05-24 16:37:28 +02002607 return msgtype;
Michal Vasko9e036d52016-01-08 10:49:26 +01002608}
2609
Michal Vaskob83a3fa2021-05-26 09:53:42 +02002610#if defined (NC_ENABLED_SSH) || defined (NC_ENABLED_TLS)
Michal Vasko946cacb2020-08-12 11:18:08 +02002611
Michal Vaskoadf30f02019-06-24 09:34:47 +02002612/* client is expected to be locked */
2613static int
2614_nc_server_ch_client_del_endpt(struct nc_ch_client *client, const char *endpt_name, NC_TRANSPORT_IMPL ti)
Michal Vasko2e6defd2016-10-07 15:48:15 +02002615{
2616 uint16_t i;
Michal Vaskoadf30f02019-06-24 09:34:47 +02002617 int ret = -1;
2618
2619 if (!endpt_name) {
2620 /* remove all endpoints */
2621 for (i = 0; i < client->ch_endpt_count; ++i) {
Michal Vasko93224072021-11-09 12:14:28 +01002622 free(client->ch_endpts[i].name);
2623 free(client->ch_endpts[i].address);
Michal Vaskoadf30f02019-06-24 09:34:47 +02002624 if (client->ch_endpts[i].sock_pending != -1) {
2625 close(client->ch_endpts[i].sock_pending);
2626 }
2627 switch (client->ch_endpts[i].ti) {
2628#ifdef NC_ENABLED_SSH
2629 case NC_TI_LIBSSH:
2630 nc_server_ssh_clear_opts(client->ch_endpts[i].opts.ssh);
2631 free(client->ch_endpts[i].opts.ssh);
2632 break;
2633#endif
2634#ifdef NC_ENABLED_TLS
2635 case NC_TI_OPENSSL:
2636 nc_server_tls_clear_opts(client->ch_endpts[i].opts.tls);
2637 free(client->ch_endpts[i].opts.tls);
2638 break;
2639#endif
2640 default:
2641 ERRINT;
2642 /* won't get here ...*/
2643 break;
2644 }
2645 }
2646 free(client->ch_endpts);
2647 client->ch_endpts = NULL;
2648 client->ch_endpt_count = 0;
2649
2650 ret = 0;
2651 } else {
2652 for (i = 0; i < client->ch_endpt_count; ++i) {
2653 if (!strcmp(client->ch_endpts[i].name, endpt_name) && (!ti || (ti == client->ch_endpts[i].ti))) {
Michal Vasko93224072021-11-09 12:14:28 +01002654 free(client->ch_endpts[i].name);
2655 free(client->ch_endpts[i].address);
Michal Vaskoadf30f02019-06-24 09:34:47 +02002656 if (client->ch_endpts[i].sock_pending != -1) {
2657 close(client->ch_endpts[i].sock_pending);
2658 }
2659 switch (client->ch_endpts[i].ti) {
2660#ifdef NC_ENABLED_SSH
2661 case NC_TI_LIBSSH:
2662 nc_server_ssh_clear_opts(client->ch_endpts[i].opts.ssh);
2663 free(client->ch_endpts[i].opts.ssh);
2664 break;
2665#endif
2666#ifdef NC_ENABLED_TLS
2667 case NC_TI_OPENSSL:
2668 nc_server_tls_clear_opts(client->ch_endpts[i].opts.tls);
2669 free(client->ch_endpts[i].opts.tls);
2670 break;
2671#endif
2672 default:
2673 ERRINT;
2674 /* won't get here ...*/
2675 break;
2676 }
2677
2678 /* move last endpoint to the empty space */
2679 --client->ch_endpt_count;
2680 if (i < client->ch_endpt_count) {
2681 memcpy(&client->ch_endpts[i], &client->ch_endpts[client->ch_endpt_count], sizeof *client->ch_endpts);
2682 } else if (!server_opts.ch_client_count) {
2683 free(server_opts.ch_clients);
2684 server_opts.ch_clients = NULL;
2685 }
2686
2687 ret = 0;
2688 break;
2689 }
2690 }
2691 }
2692
2693 return ret;
2694}
2695
2696API int
2697nc_server_ch_add_client(const char *name)
2698{
2699 uint16_t i;
2700 struct nc_ch_client *client;
Michal Vasko2e6defd2016-10-07 15:48:15 +02002701
2702 if (!name) {
2703 ERRARG("name");
2704 return -1;
Michal Vasko2e6defd2016-10-07 15:48:15 +02002705 }
2706
2707 /* WRITE LOCK */
2708 pthread_rwlock_wrlock(&server_opts.ch_client_lock);
2709
2710 /* check name uniqueness */
2711 for (i = 0; i < server_opts.ch_client_count; ++i) {
2712 if (!strcmp(server_opts.ch_clients[i].name, name)) {
Michal Vasko05532772021-06-03 12:12:38 +02002713 ERR(NULL, "Call Home client \"%s\" already exists.", name);
Michal Vasko2e6defd2016-10-07 15:48:15 +02002714 /* WRITE UNLOCK */
2715 pthread_rwlock_unlock(&server_opts.ch_client_lock);
2716 return -1;
2717 }
2718 }
2719
2720 ++server_opts.ch_client_count;
2721 server_opts.ch_clients = nc_realloc(server_opts.ch_clients, server_opts.ch_client_count * sizeof *server_opts.ch_clients);
2722 if (!server_opts.ch_clients) {
2723 ERRMEM;
2724 /* WRITE UNLOCK */
2725 pthread_rwlock_unlock(&server_opts.ch_client_lock);
2726 return -1;
2727 }
Michal Vaskoadf30f02019-06-24 09:34:47 +02002728 client = &server_opts.ch_clients[server_opts.ch_client_count - 1];
Michal Vasko2e6defd2016-10-07 15:48:15 +02002729
Michal Vasko93224072021-11-09 12:14:28 +01002730 client->name = strdup(name);
Michal Vasko5bd4a3f2021-06-17 16:40:10 +02002731 client->id = ATOMIC_INC_RELAXED(server_opts.new_client_id);
Michal Vaskoadf30f02019-06-24 09:34:47 +02002732 client->ch_endpts = NULL;
2733 client->ch_endpt_count = 0;
2734 client->conn_type = 0;
Michal Vaskoc4bc5812016-10-13 10:59:36 +02002735
Michal Vasko2e6defd2016-10-07 15:48:15 +02002736 /* set CH default options */
Michal Vaskoadf30f02019-06-24 09:34:47 +02002737 client->start_with = NC_CH_FIRST_LISTED;
2738 client->max_attempts = 3;
Michal Vasko2e6defd2016-10-07 15:48:15 +02002739
Michal Vaskoadf30f02019-06-24 09:34:47 +02002740 pthread_mutex_init(&client->lock, NULL);
Michal Vasko2e6defd2016-10-07 15:48:15 +02002741
2742 /* WRITE UNLOCK */
2743 pthread_rwlock_unlock(&server_opts.ch_client_lock);
2744
2745 return 0;
2746}
2747
2748API int
Michal Vaskoadf30f02019-06-24 09:34:47 +02002749nc_server_ch_del_client(const char *name)
Michal Vasko2e6defd2016-10-07 15:48:15 +02002750{
Michal Vaskoadf30f02019-06-24 09:34:47 +02002751 uint16_t i;
Michal Vasko2e6defd2016-10-07 15:48:15 +02002752 int ret = -1;
2753
2754 /* WRITE LOCK */
2755 pthread_rwlock_wrlock(&server_opts.ch_client_lock);
2756
Michal Vaskoadf30f02019-06-24 09:34:47 +02002757 if (!name) {
2758 /* remove all CH clients with endpoints */
Michal Vasko2e6defd2016-10-07 15:48:15 +02002759 for (i = 0; i < server_opts.ch_client_count; ++i) {
Michal Vasko93224072021-11-09 12:14:28 +01002760 free(server_opts.ch_clients[i].name);
Michal Vasko2e6defd2016-10-07 15:48:15 +02002761
2762 /* remove all endpoints */
Michal Vaskoadf30f02019-06-24 09:34:47 +02002763 _nc_server_ch_client_del_endpt(&server_opts.ch_clients[i], NULL, 0);
Michal Vasko2e6defd2016-10-07 15:48:15 +02002764
2765 pthread_mutex_destroy(&server_opts.ch_clients[i].lock);
Michal Vasko2e6defd2016-10-07 15:48:15 +02002766 ret = 0;
2767 }
2768 free(server_opts.ch_clients);
2769 server_opts.ch_clients = NULL;
2770
2771 server_opts.ch_client_count = 0;
2772
2773 } else {
Michal Vaskoadf30f02019-06-24 09:34:47 +02002774 /* remove one client with endpoints */
Michal Vasko2e6defd2016-10-07 15:48:15 +02002775 for (i = 0; i < server_opts.ch_client_count; ++i) {
Michal Vaskoadf30f02019-06-24 09:34:47 +02002776 if (!strcmp(server_opts.ch_clients[i].name, name)) {
Michal Vasko93224072021-11-09 12:14:28 +01002777 free(server_opts.ch_clients[i].name);
Michal Vasko2e6defd2016-10-07 15:48:15 +02002778
Michal Vasko2e6defd2016-10-07 15:48:15 +02002779 /* remove all endpoints */
Michal Vaskoadf30f02019-06-24 09:34:47 +02002780 _nc_server_ch_client_del_endpt(&server_opts.ch_clients[i], NULL, 0);
Michal Vasko2e6defd2016-10-07 15:48:15 +02002781
2782 pthread_mutex_destroy(&server_opts.ch_clients[i].lock);
2783
2784 /* move last client and endpoint(s) to the empty space */
2785 --server_opts.ch_client_count;
2786 if (i < server_opts.ch_client_count) {
2787 memcpy(&server_opts.ch_clients[i], &server_opts.ch_clients[server_opts.ch_client_count],
Michal Vaskoadf30f02019-06-24 09:34:47 +02002788 sizeof *server_opts.ch_clients);
Michal Vasko2e6defd2016-10-07 15:48:15 +02002789 } else if (!server_opts.ch_client_count) {
2790 free(server_opts.ch_clients);
2791 server_opts.ch_clients = NULL;
2792 }
2793
2794 ret = 0;
Michal Vaskoadf30f02019-06-24 09:34:47 +02002795 break;
Michal Vasko2e6defd2016-10-07 15:48:15 +02002796 }
2797 }
2798 }
2799
2800 /* WRITE UNLOCK */
2801 pthread_rwlock_unlock(&server_opts.ch_client_lock);
2802
2803 return ret;
2804}
2805
2806API int
Michal Vaskofb1724b2020-01-31 11:02:00 +01002807nc_server_ch_is_client(const char *name)
2808{
2809 uint16_t i;
2810 int found = 0;
2811
2812 if (!name) {
2813 return found;
2814 }
2815
2816 /* READ LOCK */
2817 pthread_rwlock_rdlock(&server_opts.ch_client_lock);
2818
2819 /* check name uniqueness */
2820 for (i = 0; i < server_opts.ch_client_count; ++i) {
2821 if (!strcmp(server_opts.ch_clients[i].name, name)) {
2822 found = 1;
2823 break;
2824 }
2825 }
2826
2827 /* UNLOCK */
2828 pthread_rwlock_unlock(&server_opts.ch_client_lock);
2829
2830 return found;
2831}
2832
2833API int
Michal Vaskoadf30f02019-06-24 09:34:47 +02002834nc_server_ch_client_add_endpt(const char *client_name, const char *endpt_name, NC_TRANSPORT_IMPL ti)
Michal Vasko2e6defd2016-10-07 15:48:15 +02002835{
2836 uint16_t i;
2837 struct nc_ch_client *client;
Michal Vaskoadf30f02019-06-24 09:34:47 +02002838 struct nc_ch_endpt *endpt;
2839 int ret = -1;
Michal Vasko2e6defd2016-10-07 15:48:15 +02002840
2841 if (!client_name) {
2842 ERRARG("client_name");
2843 return -1;
2844 } else if (!endpt_name) {
2845 ERRARG("endpt_name");
2846 return -1;
Michal Vaskoadf30f02019-06-24 09:34:47 +02002847 } else if (!ti) {
2848 ERRARG("ti");
2849 return -1;
Michal Vasko2e6defd2016-10-07 15:48:15 +02002850 }
2851
2852 /* LOCK */
Michal Vaskoadf30f02019-06-24 09:34:47 +02002853 nc_server_ch_client_lock(client_name, NULL, 0, &client);
Michal Vasko2e6defd2016-10-07 15:48:15 +02002854 if (!client) {
2855 return -1;
2856 }
2857
2858 for (i = 0; i < client->ch_endpt_count; ++i) {
2859 if (!strcmp(client->ch_endpts[i].name, endpt_name)) {
Michal Vasko05532772021-06-03 12:12:38 +02002860 ERR(NULL, "Call Home client \"%s\" endpoint \"%s\" already exists.", client_name, endpt_name);
Michal Vaskoadf30f02019-06-24 09:34:47 +02002861 goto cleanup;
Michal Vasko2e6defd2016-10-07 15:48:15 +02002862 }
2863 }
2864
2865 ++client->ch_endpt_count;
2866 client->ch_endpts = realloc(client->ch_endpts, client->ch_endpt_count * sizeof *client->ch_endpts);
2867 if (!client->ch_endpts) {
2868 ERRMEM;
Michal Vaskoadf30f02019-06-24 09:34:47 +02002869 goto cleanup;
2870 }
2871 endpt = &client->ch_endpts[client->ch_endpt_count - 1];
2872
2873 memset(endpt, 0, sizeof *client->ch_endpts);
Michal Vasko93224072021-11-09 12:14:28 +01002874 endpt->name = strdup(endpt_name);
Michal Vaskoadf30f02019-06-24 09:34:47 +02002875 endpt->ti = ti;
2876 endpt->sock_pending = -1;
2877 endpt->ka.idle_time = 1;
2878 endpt->ka.max_probes = 10;
2879 endpt->ka.probe_interval = 5;
2880
2881 switch (ti) {
2882#ifdef NC_ENABLED_SSH
2883 case NC_TI_LIBSSH:
2884 endpt->opts.ssh = calloc(1, sizeof(struct nc_server_ssh_opts));
2885 if (!endpt->opts.ssh) {
2886 ERRMEM;
2887 goto cleanup;
2888 }
roman41a11e42022-06-22 09:27:08 +02002889 endpt->opts.ssh->auth_methods = NC_SSH_AUTH_PUBLICKEY | NC_SSH_AUTH_PASSWORD;
Michal Vaskoadf30f02019-06-24 09:34:47 +02002890 endpt->opts.ssh->auth_attempts = 3;
Michal Vaskocbad4c52019-06-27 16:30:35 +02002891 endpt->opts.ssh->auth_timeout = 30;
Michal Vaskoadf30f02019-06-24 09:34:47 +02002892 break;
2893#endif
2894#ifdef NC_ENABLED_TLS
2895 case NC_TI_OPENSSL:
2896 endpt->opts.tls = calloc(1, sizeof(struct nc_server_tls_opts));
2897 if (!endpt->opts.tls) {
2898 ERRMEM;
2899 goto cleanup;
2900 }
2901 break;
2902#endif
2903 default:
2904 ERRINT;
2905 goto cleanup;
Michal Vasko2e6defd2016-10-07 15:48:15 +02002906 }
2907
Michal Vaskoadf30f02019-06-24 09:34:47 +02002908 /* success */
2909 ret = 0;
Michal Vasko2e6defd2016-10-07 15:48:15 +02002910
Michal Vaskoadf30f02019-06-24 09:34:47 +02002911cleanup:
Michal Vasko2e6defd2016-10-07 15:48:15 +02002912 /* UNLOCK */
2913 nc_server_ch_client_unlock(client);
2914
Michal Vaskoadf30f02019-06-24 09:34:47 +02002915 return ret;
Michal Vasko2e6defd2016-10-07 15:48:15 +02002916}
2917
2918API int
Michal Vaskoadf30f02019-06-24 09:34:47 +02002919nc_server_ch_client_del_endpt(const char *client_name, const char *endpt_name, NC_TRANSPORT_IMPL ti)
Michal Vasko2e6defd2016-10-07 15:48:15 +02002920{
Michal Vaskoadf30f02019-06-24 09:34:47 +02002921 int ret;
Michal Vasko2e6defd2016-10-07 15:48:15 +02002922 struct nc_ch_client *client;
2923
2924 if (!client_name) {
2925 ERRARG("client_name");
2926 return -1;
2927 }
2928
2929 /* LOCK */
Michal Vaskoadf30f02019-06-24 09:34:47 +02002930 nc_server_ch_client_lock(client_name, NULL, 0, &client);
Michal Vasko2e6defd2016-10-07 15:48:15 +02002931 if (!client) {
2932 return -1;
2933 }
2934
Michal Vaskoadf30f02019-06-24 09:34:47 +02002935 ret = _nc_server_ch_client_del_endpt(client, endpt_name, ti);
Michal Vasko2e6defd2016-10-07 15:48:15 +02002936
2937 /* UNLOCK */
2938 nc_server_ch_client_unlock(client);
2939
2940 return ret;
2941}
2942
2943API int
Michal Vaskofb1724b2020-01-31 11:02:00 +01002944nc_server_ch_client_is_endpt(const char *client_name, const char *endpt_name)
2945{
2946 uint16_t i;
2947 struct nc_ch_client *client = NULL;
2948 int found = 0;
2949
2950 if (!client_name || !endpt_name) {
2951 return found;
2952 }
2953
2954 /* READ LOCK */
2955 pthread_rwlock_rdlock(&server_opts.ch_client_lock);
2956
2957 for (i = 0; i < server_opts.ch_client_count; ++i) {
2958 if (!strcmp(server_opts.ch_clients[i].name, client_name)) {
2959 client = &server_opts.ch_clients[i];
2960 break;
2961 }
2962 }
2963
2964 if (!client) {
2965 goto cleanup;
2966 }
2967
2968 for (i = 0; i < client->ch_endpt_count; ++i) {
2969 if (!strcmp(client->ch_endpts[i].name, endpt_name)) {
2970 found = 1;
2971 break;
2972 }
2973 }
2974
2975cleanup:
2976 /* UNLOCK */
2977 pthread_rwlock_unlock(&server_opts.ch_client_lock);
2978 return found;
2979}
2980
2981API int
Michal Vasko2e6defd2016-10-07 15:48:15 +02002982nc_server_ch_client_endpt_set_address(const char *client_name, const char *endpt_name, const char *address)
2983{
Michal Vasko2e6defd2016-10-07 15:48:15 +02002984 struct nc_ch_client *client;
Michal Vaskoadf30f02019-06-24 09:34:47 +02002985 struct nc_ch_endpt *endpt;
Michal Vasko2e6defd2016-10-07 15:48:15 +02002986
2987 if (!client_name) {
2988 ERRARG("client_name");
2989 return -1;
2990 } else if (!endpt_name) {
2991 ERRARG("endpt_name");
2992 return -1;
2993 } else if (!address) {
2994 ERRARG("address");
2995 return -1;
2996 }
2997
2998 /* LOCK */
Michal Vaskoadf30f02019-06-24 09:34:47 +02002999 endpt = nc_server_ch_client_lock(client_name, endpt_name, 0, &client);
3000 if (!endpt) {
Michal Vasko2e6defd2016-10-07 15:48:15 +02003001 return -1;
3002 }
3003
Michal Vasko93224072021-11-09 12:14:28 +01003004 free(endpt->address);
3005 endpt->address = strdup(address);
Michal Vasko2e6defd2016-10-07 15:48:15 +02003006
3007 /* UNLOCK */
3008 nc_server_ch_client_unlock(client);
3009
Michal Vaskoadf30f02019-06-24 09:34:47 +02003010 return 0;
Michal Vasko2e6defd2016-10-07 15:48:15 +02003011}
3012
3013API int
3014nc_server_ch_client_endpt_set_port(const char *client_name, const char *endpt_name, uint16_t port)
3015{
Michal Vasko2e6defd2016-10-07 15:48:15 +02003016 struct nc_ch_client *client;
Michal Vaskoadf30f02019-06-24 09:34:47 +02003017 struct nc_ch_endpt *endpt;
Michal Vasko2e6defd2016-10-07 15:48:15 +02003018
3019 if (!client_name) {
3020 ERRARG("client_name");
3021 return -1;
3022 } else if (!endpt_name) {
3023 ERRARG("endpt_name");
3024 return -1;
3025 } else if (!port) {
3026 ERRARG("port");
3027 return -1;
3028 }
3029
3030 /* LOCK */
Michal Vaskoadf30f02019-06-24 09:34:47 +02003031 endpt = nc_server_ch_client_lock(client_name, endpt_name, 0, &client);
3032 if (!endpt) {
Michal Vasko2e6defd2016-10-07 15:48:15 +02003033 return -1;
3034 }
3035
Michal Vaskoadf30f02019-06-24 09:34:47 +02003036 endpt->port = port;
Michal Vasko2e6defd2016-10-07 15:48:15 +02003037
3038 /* UNLOCK */
3039 nc_server_ch_client_unlock(client);
3040
ravsz5c5a4422020-03-31 15:53:21 +02003041 return 0;
Michal Vasko2e6defd2016-10-07 15:48:15 +02003042}
3043
3044API int
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003045nc_server_ch_client_endpt_enable_keepalives(const char *client_name, const char *endpt_name, int enable)
3046{
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003047 struct nc_ch_client *client;
Michal Vaskoadf30f02019-06-24 09:34:47 +02003048 struct nc_ch_endpt *endpt;
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003049
3050 if (!client_name) {
3051 ERRARG("client_name");
3052 return -1;
3053 } else if (!endpt_name) {
3054 ERRARG("endpt_name");
3055 return -1;
3056 }
3057
3058 /* LOCK */
Michal Vaskoadf30f02019-06-24 09:34:47 +02003059 endpt = nc_server_ch_client_lock(client_name, endpt_name, 0, &client);
3060 if (!endpt) {
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003061 return -1;
3062 }
3063
Michal Vaskoadf30f02019-06-24 09:34:47 +02003064 endpt->ka.enabled = (enable ? 1 : 0);
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003065
3066 /* UNLOCK */
3067 nc_server_ch_client_unlock(client);
3068
Michal Vasko9af829a2019-09-12 13:50:00 +02003069 return 0;
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003070}
3071
3072API int
3073nc_server_ch_client_endpt_set_keepalives(const char *client_name, const char *endpt_name, int idle_time, int max_probes,
3074 int probe_interval)
3075{
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003076 struct nc_ch_client *client;
Michal Vaskoadf30f02019-06-24 09:34:47 +02003077 struct nc_ch_endpt *endpt;
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003078
3079 if (!client_name) {
3080 ERRARG("client_name");
3081 return -1;
3082 } else if (!endpt_name) {
3083 ERRARG("endpt_name");
3084 return -1;
3085 }
3086
3087 /* LOCK */
Michal Vaskoadf30f02019-06-24 09:34:47 +02003088 endpt = nc_server_ch_client_lock(client_name, endpt_name, 0, &client);
3089 if (!endpt) {
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003090 return -1;
3091 }
3092
Michal Vaskoadf30f02019-06-24 09:34:47 +02003093 if (idle_time > -1) {
3094 endpt->ka.idle_time = idle_time;
3095 }
3096 if (max_probes > -1) {
3097 endpt->ka.max_probes = max_probes;
3098 }
3099 if (probe_interval > -1) {
3100 endpt->ka.probe_interval = probe_interval;
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003101 }
3102
3103 /* UNLOCK */
3104 nc_server_ch_client_unlock(client);
3105
Michal Vasko9af829a2019-09-12 13:50:00 +02003106 return 0;
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003107}
3108
3109API int
Michal Vasko2e6defd2016-10-07 15:48:15 +02003110nc_server_ch_client_set_conn_type(const char *client_name, NC_CH_CONN_TYPE conn_type)
3111{
3112 struct nc_ch_client *client;
3113
3114 if (!client_name) {
3115 ERRARG("client_name");
3116 return -1;
3117 } else if (!conn_type) {
3118 ERRARG("conn_type");
3119 return -1;
3120 }
3121
3122 /* LOCK */
Michal Vaskoadf30f02019-06-24 09:34:47 +02003123 nc_server_ch_client_lock(client_name, NULL, 0, &client);
Michal Vasko2e6defd2016-10-07 15:48:15 +02003124 if (!client) {
3125 return -1;
3126 }
3127
3128 if (client->conn_type != conn_type) {
3129 client->conn_type = conn_type;
3130
3131 /* set default options */
3132 switch (conn_type) {
3133 case NC_CH_PERSIST:
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003134 /* no options */
Michal Vasko2e6defd2016-10-07 15:48:15 +02003135 break;
3136 case NC_CH_PERIOD:
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003137 client->conn.period.period = 60;
3138 client->conn.period.anchor_time = 0;
3139 client->conn.period.idle_timeout = 120;
Michal Vasko2e6defd2016-10-07 15:48:15 +02003140 break;
3141 default:
3142 ERRINT;
3143 break;
3144 }
3145 }
3146
3147 /* UNLOCK */
3148 nc_server_ch_client_unlock(client);
3149
3150 return 0;
3151}
3152
3153API int
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003154nc_server_ch_client_periodic_set_period(const char *client_name, uint16_t period)
3155{
3156 struct nc_ch_client *client;
3157
3158 if (!client_name) {
3159 ERRARG("client_name");
3160 return -1;
3161 } else if (!period) {
3162 ERRARG("period");
3163 return -1;
3164 }
3165
3166 /* LOCK */
Michal Vaskoadf30f02019-06-24 09:34:47 +02003167 nc_server_ch_client_lock(client_name, NULL, 0, &client);
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003168 if (!client) {
3169 return -1;
3170 }
3171
3172 if (client->conn_type != NC_CH_PERIOD) {
Michal Vasko05532772021-06-03 12:12:38 +02003173 ERR(NULL, "Call Home client \"%s\" is not of periodic connection type.", client_name);
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003174 /* UNLOCK */
3175 nc_server_ch_client_unlock(client);
3176 return -1;
3177 }
3178
3179 client->conn.period.period = period;
3180
3181 /* UNLOCK */
3182 nc_server_ch_client_unlock(client);
3183
3184 return 0;
3185}
3186
3187API int
3188nc_server_ch_client_periodic_set_anchor_time(const char *client_name, time_t anchor_time)
Michal Vasko2e6defd2016-10-07 15:48:15 +02003189{
3190 struct nc_ch_client *client;
3191
3192 if (!client_name) {
3193 ERRARG("client_name");
3194 return -1;
3195 }
3196
3197 /* LOCK */
Michal Vaskoadf30f02019-06-24 09:34:47 +02003198 nc_server_ch_client_lock(client_name, NULL, 0, &client);
Michal Vasko2e6defd2016-10-07 15:48:15 +02003199 if (!client) {
3200 return -1;
3201 }
3202
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003203 if (client->conn_type != NC_CH_PERIOD) {
Michal Vasko05532772021-06-03 12:12:38 +02003204 ERR(NULL, "Call Home client \"%s\" is not of periodic connection type.", client_name);
Michal Vasko2e6defd2016-10-07 15:48:15 +02003205 /* UNLOCK */
3206 nc_server_ch_client_unlock(client);
3207 return -1;
3208 }
3209
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003210 client->conn.period.anchor_time = anchor_time;
Michal Vasko2e6defd2016-10-07 15:48:15 +02003211
3212 /* UNLOCK */
3213 nc_server_ch_client_unlock(client);
3214
3215 return 0;
3216}
3217
3218API int
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003219nc_server_ch_client_periodic_set_idle_timeout(const char *client_name, uint16_t idle_timeout)
Michal Vasko2e6defd2016-10-07 15:48:15 +02003220{
3221 struct nc_ch_client *client;
3222
3223 if (!client_name) {
3224 ERRARG("client_name");
3225 return -1;
3226 }
3227
3228 /* LOCK */
Michal Vaskoadf30f02019-06-24 09:34:47 +02003229 nc_server_ch_client_lock(client_name, NULL, 0, &client);
Michal Vasko2e6defd2016-10-07 15:48:15 +02003230 if (!client) {
3231 return -1;
3232 }
3233
3234 if (client->conn_type != NC_CH_PERIOD) {
Michal Vasko05532772021-06-03 12:12:38 +02003235 ERR(NULL, "Call Home client \"%s\" is not of periodic connection type.", client_name);
Michal Vasko2e6defd2016-10-07 15:48:15 +02003236 /* UNLOCK */
3237 nc_server_ch_client_unlock(client);
3238 return -1;
3239 }
3240
3241 client->conn.period.idle_timeout = idle_timeout;
3242
3243 /* UNLOCK */
3244 nc_server_ch_client_unlock(client);
3245
3246 return 0;
3247}
3248
3249API int
Michal Vasko2e6defd2016-10-07 15:48:15 +02003250nc_server_ch_client_set_start_with(const char *client_name, NC_CH_START_WITH start_with)
3251{
3252 struct nc_ch_client *client;
3253
3254 if (!client_name) {
3255 ERRARG("client_name");
3256 return -1;
3257 }
3258
3259 /* LOCK */
Michal Vaskoadf30f02019-06-24 09:34:47 +02003260 nc_server_ch_client_lock(client_name, NULL, 0, &client);
Michal Vasko2e6defd2016-10-07 15:48:15 +02003261 if (!client) {
3262 return -1;
3263 }
3264
3265 client->start_with = start_with;
3266
3267 /* UNLOCK */
3268 nc_server_ch_client_unlock(client);
3269
3270 return 0;
3271}
3272
3273API int
3274nc_server_ch_client_set_max_attempts(const char *client_name, uint8_t max_attempts)
3275{
3276 struct nc_ch_client *client;
3277
3278 if (!client_name) {
3279 ERRARG("client_name");
3280 return -1;
3281 } else if (!max_attempts) {
3282 ERRARG("max_attempts");
3283 return -1;
3284 }
3285
3286 /* LOCK */
Michal Vaskoadf30f02019-06-24 09:34:47 +02003287 nc_server_ch_client_lock(client_name, NULL, 0, &client);
Michal Vasko2e6defd2016-10-07 15:48:15 +02003288 if (!client) {
3289 return -1;
3290 }
3291
3292 client->max_attempts = max_attempts;
3293
3294 /* UNLOCK */
3295 nc_server_ch_client_unlock(client);
3296
3297 return 0;
3298}
3299
Michal Vasko056f53c2022-10-21 13:38:15 +02003300/**
3301 * @brief Create a connection for an endpoint.
3302 *
3303 * Client lock is expected to be held.
3304 *
3305 * @param[in] endpt Endpoint to use.
3306 * @param[in] acquire_ctx_cb Callback for acquiring the libyang context.
3307 * @param[in] release_ctx_cb Callback for releasing the libyang context.
3308 * @param[in] ctx_cb_data Context callbacks data.
3309 * @param[out] session Created NC session.
3310 * @return NC_MSG values.
3311 */
Michal Vasko2e6defd2016-10-07 15:48:15 +02003312static NC_MSG_TYPE
Michal Vasko58bac1c2022-03-24 15:25:26 +01003313nc_connect_ch_endpt(struct nc_ch_endpt *endpt, nc_server_ch_session_acquire_ctx_cb acquire_ctx_cb,
3314 nc_server_ch_session_release_ctx_cb release_ctx_cb, void *ctx_cb_data, struct nc_session **session)
Michal Vaskob05053d2016-01-22 16:12:06 +01003315{
Michal Vasko71090fc2016-05-24 16:37:28 +02003316 NC_MSG_TYPE msgtype;
Michal Vasko58bac1c2022-03-24 15:25:26 +01003317 const struct ly_ctx *ctx = NULL;
Michal Vaskob05053d2016-01-22 16:12:06 +01003318 int sock, ret;
Michal Vasko9fb42272017-10-05 13:50:05 +02003319 struct timespec ts_cur;
Michal Vasko66032bc2019-01-22 15:03:12 +01003320 char *ip_host;
Michal Vaskob05053d2016-01-22 16:12:06 +01003321
Michal Vasko056f53c2022-10-21 13:38:15 +02003322 sock = nc_sock_connect(endpt->address, endpt->port, NC_CH_CONNECT_TIMEOUT, &endpt->ka, &endpt->sock_pending, &ip_host);
Michal Vaskoc61c4492016-01-25 11:13:34 +01003323 if (sock < 0) {
Michal Vasko71090fc2016-05-24 16:37:28 +02003324 return NC_MSG_ERROR;
Michal Vaskob05053d2016-01-22 16:12:06 +01003325 }
3326
Michal Vasko93224072021-11-09 12:14:28 +01003327 /* acquire context */
3328 ctx = acquire_ctx_cb(ctx_cb_data);
3329 if (!ctx) {
3330 ERR(NULL, "Failed to acquire context for a new Call Home session.");
3331 close(sock);
3332 free(ip_host);
3333 return NC_MSG_ERROR;
3334 }
3335
3336 /* create session */
Michal Vasko131120a2018-05-29 15:44:02 +02003337 *session = nc_new_session(NC_SERVER, 0);
Michal Vaskob05053d2016-01-22 16:12:06 +01003338 if (!(*session)) {
3339 ERRMEM;
3340 close(sock);
Michal Vasko66032bc2019-01-22 15:03:12 +01003341 free(ip_host);
Michal Vaskod530d362022-09-07 10:07:57 +02003342 msgtype = NC_MSG_ERROR;
3343 goto fail;
Michal Vaskob05053d2016-01-22 16:12:06 +01003344 }
3345 (*session)->status = NC_STATUS_STARTING;
Michal Vasko93224072021-11-09 12:14:28 +01003346 (*session)->ctx = (struct ly_ctx *)ctx;
Michal Vaskodc96bb92023-03-28 08:52:48 +02003347 (*session)->flags = NC_SESSION_SHAREDCTX | NC_SESSION_CALLHOME;
Michal Vasko93224072021-11-09 12:14:28 +01003348 (*session)->host = ip_host;
Michal Vasko2e6defd2016-10-07 15:48:15 +02003349 (*session)->port = endpt->port;
Michal Vaskob05053d2016-01-22 16:12:06 +01003350
Michal Vaskob05053d2016-01-22 16:12:06 +01003351 /* sock gets assigned to session or closed */
Radek Krejci53691be2016-02-22 13:58:37 +01003352#ifdef NC_ENABLED_SSH
Michal Vaskoadf30f02019-06-24 09:34:47 +02003353 if (endpt->ti == NC_TI_LIBSSH) {
3354 (*session)->data = endpt->opts.ssh;
Michal Vasko0190bc32016-03-02 15:47:49 +01003355 ret = nc_accept_ssh_session(*session, sock, NC_TRANSPORT_TIMEOUT);
Michal Vasko2cc4c682016-03-01 09:16:48 +01003356 (*session)->data = NULL;
Michal Vaskoc6b9c7b2016-01-28 11:10:08 +01003357
Michal Vasko71090fc2016-05-24 16:37:28 +02003358 if (ret < 0) {
3359 msgtype = NC_MSG_ERROR;
3360 goto fail;
3361 } else if (!ret) {
3362 msgtype = NC_MSG_WOULDBLOCK;
Michal Vaskob05053d2016-01-22 16:12:06 +01003363 goto fail;
3364 }
Michal Vasko3d865d22016-01-28 16:00:53 +01003365 } else
3366#endif
Radek Krejci53691be2016-02-22 13:58:37 +01003367#ifdef NC_ENABLED_TLS
Michal Vaskoadf30f02019-06-24 09:34:47 +02003368 if (endpt->ti == NC_TI_OPENSSL) {
3369 (*session)->data = endpt->opts.tls;
Michal Vasko0190bc32016-03-02 15:47:49 +01003370 ret = nc_accept_tls_session(*session, sock, NC_TRANSPORT_TIMEOUT);
Michal Vasko2cc4c682016-03-01 09:16:48 +01003371 (*session)->data = NULL;
Michal Vaskoc6b9c7b2016-01-28 11:10:08 +01003372
Michal Vasko71090fc2016-05-24 16:37:28 +02003373 if (ret < 0) {
3374 msgtype = NC_MSG_ERROR;
3375 goto fail;
3376 } else if (!ret) {
3377 msgtype = NC_MSG_WOULDBLOCK;
Michal Vaskob05053d2016-01-22 16:12:06 +01003378 goto fail;
3379 }
Michal Vasko3d865d22016-01-28 16:00:53 +01003380 } else
3381#endif
3382 {
Michal Vaskob05053d2016-01-22 16:12:06 +01003383 ERRINT;
3384 close(sock);
Michal Vasko71090fc2016-05-24 16:37:28 +02003385 msgtype = NC_MSG_ERROR;
Michal Vaskob05053d2016-01-22 16:12:06 +01003386 goto fail;
3387 }
3388
3389 /* assign new SID atomically */
Michal Vasko5bd4a3f2021-06-17 16:40:10 +02003390 (*session)->id = ATOMIC_INC_RELAXED(server_opts.new_session_id);
Michal Vaskob05053d2016-01-22 16:12:06 +01003391
3392 /* NETCONF handshake */
Michal Vasko131120a2018-05-29 15:44:02 +02003393 msgtype = nc_handshake_io(*session);
Michal Vasko71090fc2016-05-24 16:37:28 +02003394 if (msgtype != NC_MSG_HELLO) {
Michal Vaskob05053d2016-01-22 16:12:06 +01003395 goto fail;
3396 }
Michal Vasko9fb42272017-10-05 13:50:05 +02003397
Michal Vaskod8a74192023-02-06 15:51:50 +01003398 nc_timeouttime_get(&ts_cur, 0);
Michal Vasko9fb42272017-10-05 13:50:05 +02003399 (*session)->opts.server.last_rpc = ts_cur.tv_sec;
Michal Vaskod8a74192023-02-06 15:51:50 +01003400 nc_realtime_get(&ts_cur);
Michal Vasko9fb42272017-10-05 13:50:05 +02003401 (*session)->opts.server.session_start = ts_cur.tv_sec;
Michal Vaskob05053d2016-01-22 16:12:06 +01003402 (*session)->status = NC_STATUS_RUNNING;
3403
Michal Vasko71090fc2016-05-24 16:37:28 +02003404 return msgtype;
Michal Vaskob05053d2016-01-22 16:12:06 +01003405
3406fail:
Michal Vaskoe1a64ec2016-03-01 12:21:58 +01003407 nc_session_free(*session, NULL);
Michal Vaskob05053d2016-01-22 16:12:06 +01003408 *session = NULL;
Michal Vasko58bac1c2022-03-24 15:25:26 +01003409 if (ctx) {
3410 release_ctx_cb(ctx_cb_data);
3411 }
Michal Vasko71090fc2016-05-24 16:37:28 +02003412 return msgtype;
Michal Vaskob05053d2016-01-22 16:12:06 +01003413}
3414
Michal Vasko2e6defd2016-10-07 15:48:15 +02003415struct nc_ch_client_thread_arg {
3416 char *client_name;
Michal Vasko93224072021-11-09 12:14:28 +01003417 nc_server_ch_session_acquire_ctx_cb acquire_ctx_cb;
3418 nc_server_ch_session_release_ctx_cb release_ctx_cb;
3419 void *ctx_cb_data;
3420 nc_server_ch_new_session_cb new_session_cb;
Michal Vasko2e6defd2016-10-07 15:48:15 +02003421};
3422
3423static struct nc_ch_client *
3424nc_server_ch_client_with_endpt_lock(const char *name)
3425{
3426 struct nc_ch_client *client;
3427
3428 while (1) {
3429 /* LOCK */
Michal Vaskoadf30f02019-06-24 09:34:47 +02003430 nc_server_ch_client_lock(name, NULL, 0, &client);
Michal Vasko2e6defd2016-10-07 15:48:15 +02003431 if (!client) {
3432 return NULL;
3433 }
3434 if (client->ch_endpt_count) {
3435 return client;
3436 }
3437 /* no endpoints defined yet */
3438
3439 /* UNLOCK */
3440 nc_server_ch_client_unlock(client);
3441
3442 usleep(NC_CH_NO_ENDPT_WAIT * 1000);
3443 }
3444
3445 return NULL;
3446}
3447
3448static int
3449nc_server_ch_client_thread_session_cond_wait(struct nc_session *session, struct nc_ch_client_thread_arg *data)
3450{
Michal Vasko3f05a092018-03-13 10:39:49 +01003451 int ret = 0, r;
Michal Vaskoc4bc5812016-10-13 10:59:36 +02003452 uint32_t idle_timeout;
Michal Vasko2e6defd2016-10-07 15:48:15 +02003453 struct timespec ts;
3454 struct nc_ch_client *client;
3455
Michal Vasko2e6defd2016-10-07 15:48:15 +02003456 /* CH LOCK */
Michal Vaskoacf98472021-02-04 15:33:57 +01003457 pthread_mutex_lock(&session->opts.server.ch_lock);
Michal Vasko2e6defd2016-10-07 15:48:15 +02003458
Michal Vaskofeccb312022-03-24 15:24:59 +01003459 session->flags |= NC_SESSION_CH_THREAD;
Michal Vasko0db3db52021-03-03 10:45:42 +01003460
Michal Vasko2e6defd2016-10-07 15:48:15 +02003461 /* give the session to the user */
Michal Vasko93224072021-11-09 12:14:28 +01003462 if (data->new_session_cb(data->client_name, session)) {
Michal Vaskof1c26c22021-04-12 16:34:33 +02003463 /* something is wrong, free the session */
Michal Vaskofeccb312022-03-24 15:24:59 +01003464 session->flags &= ~NC_SESSION_CH_THREAD;
Michal Vaskof1c26c22021-04-12 16:34:33 +02003465
3466 /* CH UNLOCK */
3467 pthread_mutex_unlock(&session->opts.server.ch_lock);
3468
Michal Vasko77d56d72022-09-07 10:30:48 +02003469 /* session terminated, free it and release its context */
Michal Vaskof1c26c22021-04-12 16:34:33 +02003470 nc_session_free(session, NULL);
Michal Vasko58bac1c2022-03-24 15:25:26 +01003471 data->release_ctx_cb(data->ctx_cb_data);
3472 return ret;
Michal Vaskof1c26c22021-04-12 16:34:33 +02003473 }
Michal Vasko2e6defd2016-10-07 15:48:15 +02003474
3475 do {
Michal Vaskod8a74192023-02-06 15:51:50 +01003476 nc_timeouttime_get(&ts, NC_CH_NO_ENDPT_WAIT);
Michal Vasko2e6defd2016-10-07 15:48:15 +02003477
Michal Vasko0db3db52021-03-03 10:45:42 +01003478 /* CH COND WAIT */
Michal Vaskod8a74192023-02-06 15:51:50 +01003479 r = pthread_cond_clockwait(&session->opts.server.ch_cond, &session->opts.server.ch_lock, COMPAT_CLOCK_ID, &ts);
Michal Vasko3f05a092018-03-13 10:39:49 +01003480 if (!r) {
3481 /* we were woken up, something probably happened */
3482 if (session->status != NC_STATUS_RUNNING) {
3483 break;
3484 }
3485 } else if (r != ETIMEDOUT) {
Michal Vasko05532772021-06-03 12:12:38 +02003486 ERR(session, "Pthread condition timedwait failed (%s).", strerror(r));
Michal Vasko3f05a092018-03-13 10:39:49 +01003487 ret = -1;
3488 break;
Michal Vasko2e39ed92018-03-12 13:51:44 +01003489 }
3490
Michal Vasko2e6defd2016-10-07 15:48:15 +02003491 /* check whether the client was not removed */
3492 /* LOCK */
Michal Vaskoadf30f02019-06-24 09:34:47 +02003493 nc_server_ch_client_lock(data->client_name, NULL, 0, &client);
Michal Vasko2e6defd2016-10-07 15:48:15 +02003494 if (!client) {
3495 /* client was removed, finish thread */
Michal Vasko05532772021-06-03 12:12:38 +02003496 VRB(session, "Call Home client \"%s\" removed, but an established session will not be terminated.",
Michal Vaskoadf30f02019-06-24 09:34:47 +02003497 data->client_name);
Michal Vasko3f05a092018-03-13 10:39:49 +01003498 ret = 1;
3499 break;
Michal Vasko2e6defd2016-10-07 15:48:15 +02003500 }
3501
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003502 if (client->conn_type == NC_CH_PERIOD) {
Michal Vaskoc4bc5812016-10-13 10:59:36 +02003503 idle_timeout = client->conn.period.idle_timeout;
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003504 } else {
3505 idle_timeout = 0;
Michal Vaskoc4bc5812016-10-13 10:59:36 +02003506 }
3507
Michal Vaskod8a74192023-02-06 15:51:50 +01003508 nc_timeouttime_get(&ts, 0);
Michal Vaskodf68e7e2022-04-21 11:04:00 +02003509 if (!nc_session_get_notif_status(session) && idle_timeout && (ts.tv_sec >= session->opts.server.last_rpc + idle_timeout)) {
Michal Vasko05532772021-06-03 12:12:38 +02003510 VRB(session, "Call Home client \"%s\": session idle timeout elapsed.", client->name);
Michal Vaskoc4bc5812016-10-13 10:59:36 +02003511 session->status = NC_STATUS_INVALID;
3512 session->term_reason = NC_SESSION_TERM_TIMEOUT;
3513 }
Michal Vasko2e6defd2016-10-07 15:48:15 +02003514
3515 /* UNLOCK */
3516 nc_server_ch_client_unlock(client);
3517
3518 } while (session->status == NC_STATUS_RUNNING);
3519
Michal Vaskofeccb312022-03-24 15:24:59 +01003520 /* signal to nc_session_free() that CH thread is terminating */
3521 session->flags &= ~NC_SESSION_CH_THREAD;
3522 pthread_cond_signal(&session->opts.server.ch_cond);
Michal Vasko0db3db52021-03-03 10:45:42 +01003523
Michal Vasko27377422018-03-15 08:59:35 +01003524 /* CH UNLOCK */
Michal Vaskoacf98472021-02-04 15:33:57 +01003525 pthread_mutex_unlock(&session->opts.server.ch_lock);
Michal Vasko27377422018-03-15 08:59:35 +01003526
Michal Vasko3f05a092018-03-13 10:39:49 +01003527 return ret;
Michal Vasko2e6defd2016-10-07 15:48:15 +02003528}
3529
3530static void *
3531nc_ch_client_thread(void *arg)
3532{
3533 struct nc_ch_client_thread_arg *data = (struct nc_ch_client_thread_arg *)arg;
3534 NC_MSG_TYPE msgtype;
3535 uint8_t cur_attempts = 0;
Peter Feiged05f2252018-09-03 08:09:47 +00003536 uint16_t next_endpt_index;
Michal Vasko9550cf12017-03-21 15:33:58 +01003537 char *cur_endpt_name = NULL;
Michal Vasko2e6defd2016-10-07 15:48:15 +02003538 struct nc_ch_endpt *cur_endpt;
3539 struct nc_session *session;
3540 struct nc_ch_client *client;
Michal Vasko5d0a1e32022-09-07 07:46:36 +02003541 uint32_t client_id, reconnect_in;
Michal Vasko2e6defd2016-10-07 15:48:15 +02003542
3543 /* LOCK */
3544 client = nc_server_ch_client_with_endpt_lock(data->client_name);
3545 if (!client) {
3546 goto cleanup;
3547 }
Andrew Langefeld6ed922d2018-09-12 14:08:32 -05003548 client_id = client->id;
Michal Vasko2e6defd2016-10-07 15:48:15 +02003549
3550 cur_endpt = &client->ch_endpts[0];
3551 cur_endpt_name = strdup(cur_endpt->name);
3552
3553 while (1) {
Michal Vasko056f53c2022-10-21 13:38:15 +02003554 if (!cur_attempts) {
3555 VRB(NULL, "Call Home client \"%s\" endpoint \"%s\" connecting...", data->client_name, cur_endpt_name);
3556 }
Michal Vasko58bac1c2022-03-24 15:25:26 +01003557 msgtype = nc_connect_ch_endpt(cur_endpt, data->acquire_ctx_cb, data->release_ctx_cb, data->ctx_cb_data, &session);
Michal Vasko2e6defd2016-10-07 15:48:15 +02003558
3559 if (msgtype == NC_MSG_HELLO) {
3560 /* UNLOCK */
3561 nc_server_ch_client_unlock(client);
3562
Michal Vasko05532772021-06-03 12:12:38 +02003563 VRB(NULL, "Call Home client \"%s\" session %u established.", data->client_name, session->id);
Michal Vasko2e6defd2016-10-07 15:48:15 +02003564 if (nc_server_ch_client_thread_session_cond_wait(session, data)) {
3565 goto cleanup;
3566 }
Michal Vasko05532772021-06-03 12:12:38 +02003567 VRB(NULL, "Call Home client \"%s\" session terminated.", data->client_name);
Michal Vasko2e6defd2016-10-07 15:48:15 +02003568
3569 /* LOCK */
3570 client = nc_server_ch_client_with_endpt_lock(data->client_name);
3571 if (!client) {
3572 goto cleanup;
3573 }
Andrew Langefeld6ed922d2018-09-12 14:08:32 -05003574 if (client->id != client_id) {
3575 nc_server_ch_client_unlock(client);
3576 goto cleanup;
3577 }
Michal Vasko2e6defd2016-10-07 15:48:15 +02003578
3579 /* session changed status -> it was disconnected for whatever reason,
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003580 * persistent connection immediately tries to reconnect, periodic connects at specific times */
Michal Vasko2e6defd2016-10-07 15:48:15 +02003581 if (client->conn_type == NC_CH_PERIOD) {
Michal Vasko18e1fa02021-11-29 09:02:05 +01003582 if (client->conn.period.anchor_time) {
3583 /* anchored */
3584 reconnect_in = (time(NULL) - client->conn.period.anchor_time) % (client->conn.period.period * 60);
3585 } else {
3586 /* fixed timeout */
3587 reconnect_in = client->conn.period.period * 60;
3588 }
3589
Michal Vasko2e6defd2016-10-07 15:48:15 +02003590 /* UNLOCK */
3591 nc_server_ch_client_unlock(client);
3592
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003593 /* sleep until we should reconnect TODO wake up sometimes to check for new notifications */
Michal Vasko75b836e2022-09-07 07:51:45 +02003594 VRB(NULL, "Call Home client \"%s\" reconnecting in %" PRIu32 " seconds.", data->client_name, reconnect_in);
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003595 sleep(reconnect_in);
Michal Vasko2e6defd2016-10-07 15:48:15 +02003596
3597 /* LOCK */
3598 client = nc_server_ch_client_with_endpt_lock(data->client_name);
3599 if (!client) {
3600 goto cleanup;
3601 }
Andrew Langefeld6ed922d2018-09-12 14:08:32 -05003602 if (client->id != client_id) {
3603 nc_server_ch_client_unlock(client);
3604 goto cleanup;
3605 }
Michal Vasko2e6defd2016-10-07 15:48:15 +02003606 }
3607
3608 /* set next endpoint to try */
3609 if (client->start_with == NC_CH_FIRST_LISTED) {
Peter Feiged05f2252018-09-03 08:09:47 +00003610 next_endpt_index = 0;
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003611 } else if (client->start_with == NC_CH_LAST_CONNECTED) {
Peter Feiged05f2252018-09-03 08:09:47 +00003612 /* we keep the current one but due to unlock/lock we have to find it again */
3613 for (next_endpt_index = 0; next_endpt_index < client->ch_endpt_count; ++next_endpt_index) {
3614 if (!strcmp(client->ch_endpts[next_endpt_index].name, cur_endpt_name)) {
3615 break;
3616 }
3617 }
3618 if (next_endpt_index >= client->ch_endpt_count) {
3619 /* endpoint was removed, start with the first one */
3620 next_endpt_index = 0;
3621 }
Michal Vaskoe49a15f2019-05-27 14:18:36 +02003622 } else {
3623 /* just get a random index */
3624 next_endpt_index = rand() % client->ch_endpt_count;
Peter Feiged05f2252018-09-03 08:09:47 +00003625 }
3626
Michal Vasko2e6defd2016-10-07 15:48:15 +02003627 } else {
Michal Vasko6bb116b2016-10-26 13:53:46 +02003628 /* UNLOCK */
3629 nc_server_ch_client_unlock(client);
3630
Michal Vasko2e6defd2016-10-07 15:48:15 +02003631 /* session was not created */
Michal Vaskod8951c72022-09-26 09:39:29 +02003632 sleep(NC_CH_ENDPT_BACKOFF_WAIT);
Michal Vaskoc4bc5812016-10-13 10:59:36 +02003633
Michal Vasko6bb116b2016-10-26 13:53:46 +02003634 /* LOCK */
3635 client = nc_server_ch_client_with_endpt_lock(data->client_name);
3636 if (!client) {
3637 goto cleanup;
3638 }
Andrew Langefeld6ed922d2018-09-12 14:08:32 -05003639 if (client->id != client_id) {
3640 nc_server_ch_client_unlock(client);
3641 goto cleanup;
3642 }
Michal Vasko6bb116b2016-10-26 13:53:46 +02003643
Michal Vasko2e6defd2016-10-07 15:48:15 +02003644 ++cur_attempts;
Michal Vasko4cb8de52018-04-23 14:38:07 +02003645
3646 /* try to find our endpoint again */
Peter Feiged05f2252018-09-03 08:09:47 +00003647 for (next_endpt_index = 0; next_endpt_index < client->ch_endpt_count; ++next_endpt_index) {
3648 if (!strcmp(client->ch_endpts[next_endpt_index].name, cur_endpt_name)) {
Michal Vasko4cb8de52018-04-23 14:38:07 +02003649 break;
Michal Vasko2e6defd2016-10-07 15:48:15 +02003650 }
Michal Vasko4cb8de52018-04-23 14:38:07 +02003651 }
3652
Peter Feiged05f2252018-09-03 08:09:47 +00003653 if (next_endpt_index >= client->ch_endpt_count) {
Michal Vasko4cb8de52018-04-23 14:38:07 +02003654 /* endpoint was removed, start with the first one */
Michal Vasko056f53c2022-10-21 13:38:15 +02003655 VRB(NULL, "Call Home client \"%s\" endpoint \"%s\" removed.", data->client_name, cur_endpt_name);
Peter Feiged05f2252018-09-03 08:09:47 +00003656 next_endpt_index = 0;
Michal Vasko4cb8de52018-04-23 14:38:07 +02003657 cur_attempts = 0;
3658 } else if (cur_attempts == client->max_attempts) {
3659 /* we have tried to connect to this endpoint enough times */
Michal Vasko056f53c2022-10-21 13:38:15 +02003660 VRB(NULL, "Call Home client \"%s\" endpoint \"%s\" failed connection attempt limit %" PRIu8 " reached.",
3661 data->client_name, cur_endpt_name, client->max_attempts);
3662
3663 /* clear a pending socket, if any */
3664 cur_endpt = &client->ch_endpts[next_endpt_index];
3665 if (cur_endpt->sock_pending > -1) {
3666 close(cur_endpt->sock_pending);
3667 cur_endpt->sock_pending = -1;
3668 }
3669
Peter Feiged05f2252018-09-03 08:09:47 +00003670 if (next_endpt_index < client->ch_endpt_count - 1) {
Michal Vasko2e6defd2016-10-07 15:48:15 +02003671 /* just go to the next endpoint */
Peter Feiged05f2252018-09-03 08:09:47 +00003672 ++next_endpt_index;
Michal Vasko2e6defd2016-10-07 15:48:15 +02003673 } else {
Michal Vasko4cb8de52018-04-23 14:38:07 +02003674 /* cur_endpoint is the last, start with the first one */
Michal Vasko2a225342018-09-05 08:38:34 +02003675 next_endpt_index = 0;
Michal Vasko2e6defd2016-10-07 15:48:15 +02003676 }
Michal Vasko2e6defd2016-10-07 15:48:15 +02003677 cur_attempts = 0;
3678 } /* else we keep the current one */
3679 }
Peter Feiged05f2252018-09-03 08:09:47 +00003680
3681 cur_endpt = &client->ch_endpts[next_endpt_index];
3682 free(cur_endpt_name);
3683 cur_endpt_name = strdup(cur_endpt->name);
Michal Vasko2e6defd2016-10-07 15:48:15 +02003684 }
3685
3686cleanup:
Michal Vasko05532772021-06-03 12:12:38 +02003687 VRB(NULL, "Call Home client \"%s\" thread exit.", data->client_name);
Michal Vasko9550cf12017-03-21 15:33:58 +01003688 free(cur_endpt_name);
Michal Vasko2e6defd2016-10-07 15:48:15 +02003689 free(data->client_name);
3690 free(data);
3691 return NULL;
3692}
3693
3694API int
Michal Vasko93224072021-11-09 12:14:28 +01003695nc_connect_ch_client_dispatch(const char *client_name, nc_server_ch_session_acquire_ctx_cb acquire_ctx_cb,
3696 nc_server_ch_session_release_ctx_cb release_ctx_cb, void *ctx_cb_data, nc_server_ch_new_session_cb new_session_cb)
Michal Vasko3f05a092018-03-13 10:39:49 +01003697{
Michal Vasko2e6defd2016-10-07 15:48:15 +02003698 int ret;
3699 pthread_t tid;
3700 struct nc_ch_client_thread_arg *arg;
3701
3702 if (!client_name) {
3703 ERRARG("client_name");
3704 return -1;
Michal Vasko93224072021-11-09 12:14:28 +01003705 } else if (!acquire_ctx_cb) {
3706 ERRARG("acquire_ctx_cb");
3707 return -1;
3708 } else if (!release_ctx_cb) {
3709 ERRARG("release_ctx_cb");
3710 return -1;
3711 } else if (!new_session_cb) {
3712 ERRARG("new_session_cb");
Michal Vasko2e6defd2016-10-07 15:48:15 +02003713 return -1;
3714 }
3715
3716 arg = malloc(sizeof *arg);
3717 if (!arg) {
3718 ERRMEM;
3719 return -1;
3720 }
3721 arg->client_name = strdup(client_name);
3722 if (!arg->client_name) {
3723 ERRMEM;
3724 free(arg);
3725 return -1;
3726 }
Michal Vasko93224072021-11-09 12:14:28 +01003727 arg->acquire_ctx_cb = acquire_ctx_cb;
3728 arg->release_ctx_cb = release_ctx_cb;
3729 arg->ctx_cb_data = ctx_cb_data;
3730 arg->new_session_cb = new_session_cb;
Michal Vasko2e6defd2016-10-07 15:48:15 +02003731
3732 ret = pthread_create(&tid, NULL, nc_ch_client_thread, arg);
3733 if (ret) {
Michal Vasko05532772021-06-03 12:12:38 +02003734 ERR(NULL, "Creating a new thread failed (%s).", strerror(ret));
Michal Vasko2e6defd2016-10-07 15:48:15 +02003735 free(arg->client_name);
3736 free(arg);
3737 return -1;
3738 }
3739 /* the thread now manages arg */
3740
3741 pthread_detach(tid);
3742
3743 return 0;
3744}
3745
Radek Krejci53691be2016-02-22 13:58:37 +01003746#endif /* NC_ENABLED_SSH || NC_ENABLED_TLS */
Michal Vaskof8352352016-05-24 09:11:36 +02003747
Michal Vaskoc45ebd32016-05-25 11:17:36 +02003748API time_t
3749nc_session_get_start_time(const struct nc_session *session)
Michal Vaskof8352352016-05-24 09:11:36 +02003750{
Michal Vasko2e6defd2016-10-07 15:48:15 +02003751 if (!session || (session->side != NC_SERVER)) {
Michal Vaskof8352352016-05-24 09:11:36 +02003752 ERRARG("session");
Michal Vaskoc45ebd32016-05-25 11:17:36 +02003753 return 0;
Michal Vaskof8352352016-05-24 09:11:36 +02003754 }
3755
Michal Vasko2e6defd2016-10-07 15:48:15 +02003756 return session->opts.server.session_start;
Michal Vaskof8352352016-05-24 09:11:36 +02003757}
Michal Vasko3486a7c2017-03-03 13:28:07 +01003758
3759API void
Michal Vasko71dbd772021-03-23 14:08:37 +01003760nc_session_inc_notif_status(struct nc_session *session)
Michal Vasko3486a7c2017-03-03 13:28:07 +01003761{
3762 if (!session || (session->side != NC_SERVER)) {
3763 ERRARG("session");
3764 return;
3765 }
3766
Michal Vaskodf68e7e2022-04-21 11:04:00 +02003767 /* NTF STATUS LOCK */
3768 pthread_mutex_lock(&session->opts.server.ntf_status_lock);
3769
Michal Vasko71dbd772021-03-23 14:08:37 +01003770 ++session->opts.server.ntf_status;
Michal Vaskodf68e7e2022-04-21 11:04:00 +02003771
3772 /* NTF STATUS UNLOCK */
3773 pthread_mutex_unlock(&session->opts.server.ntf_status_lock);
Michal Vasko71dbd772021-03-23 14:08:37 +01003774}
3775
3776API void
3777nc_session_dec_notif_status(struct nc_session *session)
3778{
3779 if (!session || (session->side != NC_SERVER)) {
3780 ERRARG("session");
3781 return;
3782 }
3783
Michal Vaskodf68e7e2022-04-21 11:04:00 +02003784 /* NTF STATUS LOCK */
3785 pthread_mutex_lock(&session->opts.server.ntf_status_lock);
3786
Michal Vasko71dbd772021-03-23 14:08:37 +01003787 if (session->opts.server.ntf_status) {
3788 --session->opts.server.ntf_status;
3789 }
Michal Vaskodf68e7e2022-04-21 11:04:00 +02003790
3791 /* NTF STATUS UNLOCK */
3792 pthread_mutex_unlock(&session->opts.server.ntf_status_lock);
Michal Vasko3486a7c2017-03-03 13:28:07 +01003793}
3794
3795API int
3796nc_session_get_notif_status(const struct nc_session *session)
3797{
Michal Vaskodf68e7e2022-04-21 11:04:00 +02003798 uint32_t ntf_status;
3799
Michal Vasko3486a7c2017-03-03 13:28:07 +01003800 if (!session || (session->side != NC_SERVER)) {
3801 ERRARG("session");
3802 return 0;
3803 }
3804
Michal Vaskodf68e7e2022-04-21 11:04:00 +02003805 /* NTF STATUS LOCK */
3806 pthread_mutex_lock(&((struct nc_session *)session)->opts.server.ntf_status_lock);
3807
3808 ntf_status = session->opts.server.ntf_status;
3809
3810 /* NTF STATUS UNLOCK */
3811 pthread_mutex_unlock(&((struct nc_session *)session)->opts.server.ntf_status_lock);
3812
3813 return ntf_status;
Michal Vasko086311b2016-01-08 09:53:11 +01003814}