summaryrefslogtreecommitdiff
path: root/taler_wallet_core_lib.c
blob: 072b6aca28d6ee942d1f657cdb95537ac609ab7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
/*
   This file is part of GNU Taler
   Copyright (C) 2014-2022 Taler Systems SA

   GNU Taler is free software; you can redistribute it and/or modify it under the
   terms of the GNU Affero General Public License as published by the Free Software
   Foundation; either version 3, or (at your option) any later version.

   GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
   WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
   A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more details.

   You should have received a copy of the GNU Affero General Public License along with
   GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
 */

#include "taler_wallet_core_lib.h"

#include "quickjs/quickjs.h"
#include "quickjs/quickjs-libc.h"
#include "tart_module.h"
#include <pthread.h>
#include "quickjs/list.h"
#include <unistd.h>
#include <string.h>

extern const uint8_t qjsc_prelude[];
extern const uint32_t qjsc_prelude_size;

extern const uint8_t qjsc_wallet_core[];
extern const uint32_t qjsc_wallet_core_size;

struct HostMessage {
    struct list_head link;
    char *data;
};

struct TALER_WALLET_Instance
{
    // Mutex that is locked while initializing the handle
    pthread_mutex_t handle_mutex;

    JSRuntime *rt;
    JSContext *ctx;

    pthread_t wallet_thread;

    TALER_WALLET_MessageHandlerFn handler_f;
    void *handler_cls;
};


static int eval_buf(JSContext *ctx, const char *codestr, const char *filename)
{
    JSValue val;
    int ret;
    val = JS_Eval(ctx, codestr, strlen(codestr), filename, 0);
    if (JS_IsException(val)) {
        js_std_dump_error(ctx);
        ret = -1;
    } else {
        ret = 0;
    }
    JS_FreeValue(ctx, val);
    return ret;
}


/* also used to initialize the worker context */
static JSContext *JS_NewCustomContext(JSRuntime *rt)
{
    JSContext *ctx;
    ctx = JS_NewContext(rt);
    if (!ctx)
        return NULL;
    /* system modules */
    js_init_module_std(ctx, "std");
    js_init_module_os(ctx, "os");
    /* taler runtime */
    tart_init_module_talercrypto(ctx, "tart");
    return ctx;
}


void
TALER_WALLET_set_message_handler(struct TALER_WALLET_Instance *twi,
                         TALER_WALLET_MessageHandlerFn handler_f,
                         void *handler_cls)
{
    twi->handler_cls = handler_cls;
    twi->handler_f = handler_f;
}


void
TALER_WALLET_set_log_handler(struct TALER_WALLET_Instance *twi,
                             TALER_WALLET_LogHandlerFn *handler_f,
                             void *handler_cls)
{
  // FIXME: Implement!
}


int
TALER_WALLET_send_request (struct TALER_WALLET_Instance *twi,
                           const char *msg)
{
    int ret;
    pthread_mutex_lock(&twi->handle_mutex);
    ret = js_os_post_message_from_host(twi->ctx, msg);
    pthread_mutex_unlock(&twi->handle_mutex);
    return ret;
}


static void
wallet_host_message_handler(void *cls, const char *msg)
{
  struct TALER_WALLET_Instance *wh = cls;

  if (wh->handler_f) {
    wh->handler_f(wh->handler_cls, msg);
  }
}


struct TALER_WALLET_Instance *
TALER_WALLET_create(void)
{
    struct TALER_WALLET_Instance *wh;
    wh = malloc(sizeof (*wh));
    memset(wh, 0, sizeof *wh);
    if (0 != pthread_mutex_init(&wh->handle_mutex, NULL)) {
        abort();
    }

    return wh;
}


static void *
run(void *cls)
{
    struct TALER_WALLET_Instance *wh = cls;

    wh->rt = JS_NewRuntime();

    js_std_init_handlers(wh->rt);
    wh->ctx = JS_NewCustomContext(wh->rt);


    if (!wh->ctx) {
        fprintf(stderr, "qjs: cannot allocate JS context\n");
        pthread_mutex_unlock(&wh->handle_mutex);
        return NULL;
    }


    JS_SetHostPromiseRejectionTracker(wh->rt, js_std_promise_rejection_tracker,
                                          NULL);

    js_std_add_helpers(wh->ctx, 0, NULL);

    fprintf(stderr, "qtart: loading JS code\n");
    js_std_eval_binary(wh->ctx, qjsc_prelude, qjsc_prelude_size, 0);
    js_std_eval_binary(wh->ctx, qjsc_wallet_core, qjsc_wallet_core_size, 0);
    fprintf(stderr, "qtart: done loading JS code\n");

    js_os_set_host_message_handler(wh->ctx, wallet_host_message_handler, wh);

    pthread_mutex_unlock(&wh->handle_mutex);

    eval_buf(wh->ctx, "installNativeWalletListener()", "<talerwalletcore>");

    printf("starting main loop\n");

    js_std_loop(wh->ctx);

    printf("done with main loop\n");
    return NULL;
}

#define WALLET_THREAD_STACK_SIZE (1024 * 512)

int
TALER_WALLET_run (struct TALER_WALLET_Instance *wh)
{
    pthread_t wallet_thread;
    pthread_attr_t tattr;

    pthread_mutex_lock(&wh->handle_mutex);

    if (0 != pthread_attr_init(&tattr)) {
      pthread_mutex_unlock(&wh->handle_mutex);
      fprintf(stderr, "could not initialize pthread attr\n");
      return -1;
    }

    if (0 != pthread_attr_setstacksize(&tattr, WALLET_THREAD_STACK_SIZE)) {
      pthread_mutex_unlock(&wh->handle_mutex);
      fprintf(stderr, "could not set stack size\n");
      return -1;
    }

    if (0 != pthread_create(&wallet_thread, &tattr, run, wh)) {
      pthread_mutex_unlock(&wh->handle_mutex);
      fprintf(stderr, "could not create wallet thread\n");
      return -1;
    }

    wh->wallet_thread = wallet_thread;

    return 0;
}


void TALER_WALLET_join(struct TALER_WALLET_Instance *wh)
{
    pthread_join(wh->wallet_thread, NULL);
}


void
TALER_WALLET_destroy(struct TALER_WALLET_Instance *twi)
{
    // FIXME: Implement!
}



struct LogRedirectContext {
    int active;
    TALER_LogFn logfn;
    void *cls;
};

static struct LogRedirectContext redir_ctx;
static int pfd[2];
static pthread_t log_thr;

static void *thread_func(void *) {
    ssize_t rdsz;
    char buf[1024];
    while ((rdsz = read(pfd[0], buf, sizeof buf - 1)) > 0) {
        if (buf[rdsz - 1] == '\n') --rdsz;
        buf[rdsz] = 0;  /* add null-terminator */
        redir_ctx.logfn(redir_ctx.cls, 0, buf);
    }
    return 0;
}


int
TALER_start_redirect_std(TALER_LogFn logfn, void *cls)
{
    if (redir_ctx.active) {
        return -2;
    }
    /* make stdout line-buffered and stderr unbuffered */
    setvbuf(stdout, 0, _IOLBF, 0);
    setvbuf(stderr, 0, _IONBF, 0);

    /* create the pipe and redirect stdout and stderr */
    pipe(pfd);
    dup2(pfd[1], 1);
    dup2(pfd[1], 2);

    redir_ctx.cls = cls;
    redir_ctx.logfn = logfn;
    redir_ctx.active = 1;

    /* spawn the logging thread */
    if (pthread_create(&log_thr, 0, thread_func, 0) == -1) {
        return -1;
    }
    pthread_detach(log_thr);
    return 0;
}