-
Notifications
You must be signed in to change notification settings - Fork 7
/
sentry.c
565 lines (454 loc) · 15 KB
/
sentry.c
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
#include <uwsgi.h>
#include <curl/curl.h>
extern struct uwsgi_server uwsgi;
/*
Sentry integration plugin, exposes:
alarm handler
internal routing action
hook
exception handler
alarm = foobar sentry:dns=http:///,culprit=foobar,platform=test,...
required fields:
dsn
event_id
message
timestamp
level (fatal, error, warning, info, debug)
logger
additional:
platform
culprit
server_name
release
tags
extra
exception
Authentication: X-Sentry-Auth: Sentry sentry_version=5, sentry_timestamp=1329096377,
sentry_key=b70a31b3510c4cf793964a185cfe1fd0, sentry_client=raven-python/1.0,
sentry_secret=b7d80b520139450f903720eb7991bf3d
*/
struct sentry_config {
char *dsn;
char *url;
char *key;
char *secret;
// this is a uuid (dashes will be removed)
char event_id[37];
char *message;
char *timestamp;
char *level;
char *logger;
char *platform;
char *culprit;
char *server_name;
char *release;
char *no_verify;
char *debug;
char *exception_type;
char *exception_value;
char *tags;
char *extra;
char *timeout;
};
#define skv(x) #x, &sc->x
#define sc_free(x) if (sc->x) free(sc->x);
static void sentry_request(struct sentry_config *, char *, size_t);
static int sentry_config_do(char *arg, struct sentry_config *sc) {
if (uwsgi_kvlist_parse(arg, strlen(arg), ',', '=',
skv(dsn),
skv(level),
skv(logger),
skv(message),
skv(platform),
skv(culprit),
skv(server_name),
skv(release),
skv(no_verify),
skv(debug),
skv(exception_type),
skv(exception_value),
skv(tags),
skv(extra),
skv(timeout),
NULL)) {
uwsgi_log("[sentry] unable to parse sentry options\n");
return -1;
}
if (!sc->dsn) {
uwsgi_log("[sentry] you need to specify a dsn\n");
return -1;
}
return 0 ;
}
static void sentry_config_free(struct sentry_config *sc) {
sc_free(url);
sc_free(key);
sc_free(secret);
sc_free(dsn);
sc_free(level);
sc_free(logger);
sc_free(message);
sc_free(platform);
sc_free(culprit);
sc_free(server_name);
sc_free(release);
sc_free(exception_type);
sc_free(exception_value);
sc_free(tags);
sc_free(extra);
sc_free(timeout);
free(sc);
}
static int sentry_dsn_parse(struct sentry_config *sc) {
// only http and https are supported
size_t skip = 0;
size_t dsn_len = strlen(sc->dsn);
if (!uwsgi_starts_with(sc->dsn, dsn_len, "http://", 7)) {
skip = 7;
}
if (!uwsgi_starts_with(sc->dsn, dsn_len, "https://", 8)) {
skip = 8;
}
// find the @
char *at = strchr(sc->dsn+skip, '@');
if (!at) goto error;
// find the last slash
// does the dsn ends with a slash ?
int ends_with_a_slash = 0;
if (sc->dsn[dsn_len-1] == '/') {
ends_with_a_slash = 1;
sc->dsn[dsn_len-1] = 0;
}
char *last_slash = strrchr(at+1, '/');
if (ends_with_a_slash) sc->dsn[dsn_len-1] = '/';
if (!last_slash) goto error;
size_t base_len = last_slash - (at+1);
char *base = uwsgi_concat4n(sc->dsn, skip, at+1, base_len, "/api/", 5, last_slash+1, strlen(last_slash+1));
// append /store
if (ends_with_a_slash) {
sc->url = uwsgi_concat2(base, "store/");
}
else {
sc->url = uwsgi_concat2(base, "/store/");
}
free(base);
// now manage the auth part
char *auth = sc->dsn+skip;
size_t auth_len = at-auth;
// find colon
char *colon = memchr(auth, ':', auth_len);
if (!colon) goto error;
sc->key = uwsgi_concat2n(auth, colon-auth, "", 0);
sc->secret = uwsgi_concat2n(colon+1, at-(colon+1), "", 0);
if (sc->debug) {
uwsgi_log("[sentry] parsed url: %s\n", sc->url);
}
return 0;
error:
uwsgi_log("[sentry] unable to parse dsn: %s\n", sc->dsn);
return -1;
}
static void sentry_exception_parser(char *key, uint16_t keylen, char *value, uint16_t vallen, void *data) {
struct sentry_config *sc = (struct sentry_config *) data;
if (!uwsgi_strncmp(key, keylen, "class", 5)) {
if (sc->exception_type) free(sc->exception_type);
sc->exception_type = uwsgi_concat2n(value, vallen, "", 0);
return;
}
if (!uwsgi_strncmp(key, keylen, "msg", 3)) {
if (sc->exception_value) free(sc->exception_value);
sc->exception_value = uwsgi_concat2n(value, vallen, "", 0);
return;
}
if (!uwsgi_strncmp(key, keylen, "repr", 4)) {
if (sc->message) free(sc->message);
sc->message = uwsgi_concat2n(value, vallen, "", 0);
return;
}
}
static int sentry_exception_handler(struct uwsgi_exception_handler_instance *uehi, char *buf, size_t len) {
struct sentry_config *sc = (struct sentry_config *) uehi->custom_ptr;
if (!uehi->configured) {
sc = uwsgi_calloc(sizeof(struct sentry_config));
if (sentry_config_do(uehi->arg, sc)) {
goto error;
}
if (sentry_dsn_parse(sc)) {
goto error;
}
uehi->custom_ptr = sc;
uehi->configured = 1;
}
uwsgi_hooked_parse(buf, len, sentry_exception_parser, sc);
// empty message in case sc->message is not defined
sentry_request(sc, "", 0);
return 0;
error:
sentry_config_free(sc);
return -1;
}
static size_t sentry_curl_writefunc(void *ptr, size_t size, size_t nmemb, void *data) {
struct sentry_config *sc = (struct sentry_config *) data;
size_t len = size*nmemb;
if (sc->debug) {
uwsgi_log("%.*s\n", len, (char *)ptr);
}
return len;
}
static int sentry_add_kv(struct uwsgi_buffer *ub, char *items) {
size_t i, argc = 0;
char **argv = uwsgi_split_quoted(items, strlen(items), ";", &argc);
if (!argv) return -1;
int ret = -1;
for(i=0;i<argc;i++) {
char *value = argv[i];
char *colon = strchr(value, ':');
if (!colon) goto destroy;
if (uwsgi_buffer_append(ub, "\"", 1)) goto destroy;
if (uwsgi_buffer_append(ub, value, colon-value)) goto destroy;
if (uwsgi_buffer_append(ub, "\":\"", 3)) goto destroy;
if (uwsgi_buffer_append(ub, colon+1, strlen(colon+1))) goto destroy;
if (uwsgi_buffer_append(ub, "\"", 1)) goto destroy;
if (i+1 < argc) {
if (uwsgi_buffer_append(ub, ",", 1)) goto destroy;
}
}
ret = 0;
destroy:
for(i=0;i<argc;i++) {
free(argv[i]);
}
free(argv);
return ret;
}
static void sentry_request(struct sentry_config *sc, char *msg, size_t len) {
CURL *curl = curl_easy_init();
if (!curl) return;
struct uwsgi_buffer *ub_auth = NULL, *ub_body = NULL;
struct curl_slist *headers = NULL, *header = NULL;
time_t now = uwsgi_now();
int timeout = uwsgi.socket_timeout;
if (sc->timeout) {
timeout = atoi(sc->timeout);
}
curl_easy_setopt(curl, CURLOPT_TIMEOUT, timeout);
curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, timeout);
curl_easy_setopt(curl, CURLOPT_URL, sc->url);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, sentry_curl_writefunc);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, sc);
if (sc->no_verify) {
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L);
}
curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "POST");
// we need a uwsgi buffer to build the X-Sentry-Auth header
ub_auth = uwsgi_buffer_new(uwsgi.page_size);
if (uwsgi_buffer_append(ub_auth, "X-Sentry-Auth: Sentry sentry_version=5, sentry_timestamp=", 57)) goto end;;
if (uwsgi_buffer_num64(ub_auth, now)) goto end;
if (uwsgi_buffer_append(ub_auth, ", sentry_key=", 13)) goto end;
if (uwsgi_buffer_append(ub_auth, sc->key, strlen(sc->key))) goto end;
if (uwsgi_buffer_append(ub_auth, ", sentry_client=uwsgi-sentry, sentry_secret=", 44)) goto end;
if (uwsgi_buffer_append(ub_auth, sc->secret, strlen(sc->secret))) goto end;
// null ending
if (uwsgi_buffer_append(ub_auth, "\0", 1)) goto end;
header = curl_slist_append(headers, ub_auth->buf);
if (!header) goto end;
headers = header;
header = curl_slist_append(headers, "Content-Type: application/json");
if (!header) goto end;
headers = header;
// disable Expect header
header = curl_slist_append(headers, "Expect: ");
if (!header) goto end;
headers = header;
// User-Agent
header = curl_slist_append(headers, "User-Agent: uwsgi-sentry");
if (!header) goto end;
headers = header;
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
// prepare the json
ub_body = uwsgi_buffer_new(uwsgi.page_size);
// event_id, unfortunately we need to remove dashed from the uwsgi-generated uuid
char uuid[37];
uwsgi_uuid(uuid);
if (uwsgi_buffer_append(ub_body, "{\"event_id\":\"", 13)) goto end;
if (uwsgi_buffer_append(ub_body, uuid, 8)) goto end;
if (uwsgi_buffer_append(ub_body, uuid+9, 4)) goto end;
if (uwsgi_buffer_append(ub_body, uuid+14, 4)) goto end;
if (uwsgi_buffer_append(ub_body, uuid+19, 4)) goto end;
if (uwsgi_buffer_append(ub_body, uuid+24, 12)) goto end;
if (uwsgi_buffer_append(ub_body, "\"", 1)) goto end;
if (sc->level) {
if (uwsgi_buffer_append(ub_body, ",\"level\":\"", 10)) goto end;
if (uwsgi_buffer_append_json(ub_body, sc->level, strlen(sc->level))) goto end;
if (uwsgi_buffer_append(ub_body, "\"", 1)) goto end;
}
if (sc->logger) {
if (uwsgi_buffer_append(ub_body, ",\"logger\":\"", 11)) goto end;
if (uwsgi_buffer_append_json(ub_body, sc->logger, strlen(sc->logger))) goto end;
if (uwsgi_buffer_append(ub_body, "\"", 1)) goto end;
}
if (sc->culprit) {
if (uwsgi_buffer_append(ub_body, ",\"culprit\":\"", 12)) goto end;
if (uwsgi_buffer_append_json(ub_body, sc->culprit, strlen(sc->culprit))) goto end;
if (uwsgi_buffer_append(ub_body, "\"", 1)) goto end;
}
if (sc->platform) {
if (uwsgi_buffer_append(ub_body, ",\"platform\":\"", 13)) goto end;
if (uwsgi_buffer_append_json(ub_body, sc->platform, strlen(sc->platform))) goto end;
if (uwsgi_buffer_append(ub_body, "\"", 1)) goto end;
}
if (sc->release) {
if (uwsgi_buffer_append(ub_body, ",\"release\":\"", 12)) goto end;
if (uwsgi_buffer_append_json(ub_body, sc->release, strlen(sc->release))) goto end;
if (uwsgi_buffer_append(ub_body, "\"", 1)) goto end;
}
if (sc->tags) {
if (uwsgi_buffer_append(ub_body, ",\"tags\":{", 9)) goto end;
if (sentry_add_kv(ub_body, sc->tags)) goto end;
if (uwsgi_buffer_append(ub_body, "}", 1)) goto end;
}
if (sc->extra) {
if (uwsgi_buffer_append(ub_body, ",\"extra\":{", 10)) goto end;
if (sentry_add_kv(ub_body, sc->extra)) goto end;
if (uwsgi_buffer_append(ub_body, "}", 1)) goto end;
}
if (sc->exception_type || sc->exception_value) {
if (uwsgi_buffer_append(ub_body, ",\"exception\":[{", 15)) goto end;
if (sc->exception_type) {
if (uwsgi_buffer_append(ub_body, "\"type\":\"", 8)) goto end;
if (uwsgi_buffer_append_json(ub_body, sc->exception_type, strlen(sc->exception_type))) goto end;
if (sc->exception_value) {
if (uwsgi_buffer_append(ub_body, "\",", 2)) goto end;
}
else {
if (uwsgi_buffer_append(ub_body, "\"", 1)) goto end;
}
}
if (sc->exception_value) {
if (uwsgi_buffer_append(ub_body, "\"value\":\"", 9)) goto end;
if (uwsgi_buffer_append_json(ub_body, sc->exception_value, strlen(sc->exception_value))) goto end;
if (uwsgi_buffer_append(ub_body, "\"", 1)) goto end;
}
if (uwsgi_buffer_append(ub_body, "}]", 2)) goto end;
}
if (uwsgi_buffer_append(ub_body, ",\"server_name\":\"", 16)) goto end;
if (sc->server_name) {
if (uwsgi_buffer_append_json(ub_body, sc->release, strlen(sc->release))) goto end;
}
else {
if (uwsgi_buffer_append_json(ub_body, uwsgi.hostname, uwsgi.hostname_len)) goto end;
}
if (uwsgi_buffer_append(ub_body, "\",\"timestamp\":\"", 15)) goto end;
char tm[sizeof("0000-00-00T00:00:00")];
strftime(tm, sizeof(tm), "%FT%T", gmtime(&now));
if (uwsgi_buffer_append_json(ub_body, tm, strlen(tm))) goto end;
if (uwsgi_buffer_append(ub_body, "\",\"message\":\"", 13)) goto end;
if (sc->message) {
if (uwsgi_buffer_append_json(ub_body, sc->message, strlen(sc->message))) goto end;
}
else {
if (uwsgi_buffer_append_json(ub_body, msg, len)) goto end;
}
if (uwsgi_buffer_append(ub_body, "\"}", 2)) goto end;
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, ub_body->buf);
curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, ub_body->pos);
if (sc->debug) {
uwsgi_log("[sentry] sending %.*s to %s\n", ub_body->pos, ub_body->buf, sc->url);
}
CURLcode res = curl_easy_perform(curl);
if (res != CURLE_OK) {
uwsgi_log_verbose("[sentry] error sending request: %.*s\n", ub_body->pos, ub_body->buf);
}
else {
long http_code = 0;
#ifdef CURLINFO_RESPONSE_CODE
curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &http_code);
#else
curl_easy_getinfo(curl, CURLINFO_HTTP_CODE, &http_code);
#endif
if (http_code != 200) {
uwsgi_log_verbose("[sentry] HTTP api returned non-200 response code: %d\n", (int) http_code);
}
}
end:
if (headers) curl_slist_free_all(headers);
if (ub_auth) uwsgi_buffer_destroy(ub_auth);
curl_easy_cleanup(curl);
}
static void sentry_alarm_func(struct uwsgi_alarm_instance *uai, char *msg, size_t len) {
struct sentry_config *sc = (struct sentry_config *) uai->data_ptr;
sentry_request(sc, msg, len);
}
static void sentry_alarm_init(struct uwsgi_alarm_instance *uai) {
struct sentry_config *sc = uwsgi_calloc(sizeof(struct sentry_config));
if (sentry_config_do(uai->arg, sc)) {
// useless :P
sentry_config_free(sc);
exit(1);
}
if (sentry_dsn_parse(sc)) {
// useless again :P
sentry_config_free(sc);
exit(1);
}
uai->data_ptr = sc;
}
static int sentry_hook(char *arg) {
int ret = -1;
struct sentry_config *sc = uwsgi_calloc(sizeof(struct sentry_config));
if (sentry_config_do(arg, sc)) {
goto end;
}
if (sentry_dsn_parse(sc)) {
goto end;
}
// empty message in case sc->message is not defined
// we do not check for errors here as we do not want to destroy the
// instace if the sentry server is down
sentry_request(sc, "", 0);
ret = 0;
end:
sentry_config_free(sc);
return ret;
}
#ifdef UWSGI_ROUTING
static int sentry_router_func(struct wsgi_request *wsgi_req, struct uwsgi_route *ur) {
char **subject = (char **) (((char *)(wsgi_req))+ur->subject);
uint16_t *subject_len = (uint16_t *) (((char *)(wsgi_req))+ur->subject_len);
struct uwsgi_buffer *ub = uwsgi_routing_translate(wsgi_req, ur, *subject, *subject_len, ur->data, ur->data_len);
// continue even on memory error
if (!ub) return UWSGI_ROUTE_CONTINUE;
struct sentry_config *sc = uwsgi_calloc(sizeof(struct sentry_config));
if (sentry_config_do(ub->buf, sc)) {
goto end;
}
if (sentry_dsn_parse(sc)) {
goto end;
}
// empty message in case sc->message is not defined
sentry_request(sc, "", 0);
end:
sentry_config_free(sc);
uwsgi_buffer_destroy(ub);
return UWSGI_ROUTE_CONTINUE;
}
static int sentry_router(struct uwsgi_route *ur, char *args) {
ur->func = sentry_router_func;
ur->data = args;
ur->data_len = strlen(args);
return 0;
}
#endif
static void sentry_register() {
uwsgi_register_exception_handler("sentry", sentry_exception_handler);
uwsgi_register_alarm("sentry", sentry_alarm_init, sentry_alarm_func);
uwsgi_register_hook("sentry", sentry_hook);
#ifdef UWSGI_ROUTING
uwsgi_register_router("sentry", sentry_router);
#endif
}
struct uwsgi_plugin sentry_plugin = {
.name = "sentry",
.on_load = sentry_register,
};