aboutsummaryrefslogtreecommitdiffstats
path: root/src/libunixonacid/sassclient_update.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2026-02-20 20:55:45 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2026-02-20 20:55:45 +0000
commit48489c67e90a664466ec71c74bda80b1fc0da879 (patch)
tree02a0dd769afa0ac300bbb9fbf586e4dd48850ed0 /src/libunixonacid/sassclient_update.c
parentee9c49369fe58e8159395c5624c654d8ed242a60 (diff)
downloadskalibs-48489c67e90a664466ec71c74bda80b1fc0da879.tar.gz
Add sassclient/sassserver, prepare for 2.14.6.0
Diffstat (limited to 'src/libunixonacid/sassclient_update.c')
-rw-r--r--src/libunixonacid/sassclient_update.c58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/libunixonacid/sassclient_update.c b/src/libunixonacid/sassclient_update.c
new file mode 100644
index 0000000..01a0427
--- /dev/null
+++ b/src/libunixonacid/sassclient_update.c
@@ -0,0 +1,58 @@
+/* ISC license. */
+
+#include <stdint.h>
+#include <string.h>
+#include <errno.h>
+#include <pthread.h>
+
+#include <skalibs/uint32.h>
+#include <skalibs/textclient.h>
+#include <skalibs/gensetdyn.h>
+#include <skalibs/genqdyn.h>
+#include <skalibs/sassclient.h>
+#include "sassclient-internal.h"
+
+#include <skalibs/posixishard.h>
+
+static int sassclient_msghandler (struct iovec const *v, void *aux)
+{
+ sassclient *a = aux ;
+ char const *s = v->iov_base ;
+ int e ;
+ sassclient_data *p ;
+ uint32_t id ;
+ char res[8] ;
+ if (v->iov_len < 8) return (errno = EPROTO, 0) ;
+ uint32_unpack_big(s, &id) ;
+ memcpy(res, s, 4) ; s += 4 ;
+ p = GENSETDYN_P(sassclient_data, &a->store, id) ;
+ if (memcmp(s, "\0\0\0", 4))
+ {
+ if (v->iov_len != 8) return (errno = EPROTO, 0) ;
+ memcpy(res + 4, s, 4) ;
+ }
+ else
+ {
+ e = (*p->cb)(s + 8, v->iov_len - 8, p->data) ;
+ uint32_pack_big(res + 4, e) ;
+ }
+ e = pthread_mutex_lock(&a->results_mutex) ;
+ if (e) return (errno = e, 0) ;
+ if (!genqdyn_push(&a->results, res))
+ {
+ pthread_mutex_unlock(&a->results_mutex) ;
+ return 0 ;
+ }
+ pthread_mutex_unlock(&a->results_mutex) ;
+ if (!gensetdyn_delete(&a->store, id)) return 0 ;
+ return 1 ;
+}
+
+int sassclient_update (sassclient *a)
+{
+ int e = pthread_mutex_lock(&a->connection_mutex) ;
+ if (e) return (errno = e, -1) ;
+ e = textclient_update(&a->connection, &sassclient_msghandler, a) ;
+ pthread_mutex_unlock(&a->connection_mutex) ;
+ return e < 0 ? -1 : !!e ;
+}