-
Notifications
You must be signed in to change notification settings - Fork 17
/
ffi-module.c
1053 lines (912 loc) · 25.9 KB
/
ffi-module.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
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include "emacs-module.h"
#include <ffi.h>
#include <ltdl.h>
#include <string.h>
#include <assert.h>
// Emacs got rid of this typedef, but it is still handy.
typedef void (*emacs_finalizer_function) (void *);
int plugin_is_GPL_compatible;
static emacs_value nil;
static emacs_value emacs_true;
static emacs_value wrong_type_argument;
static emacs_value error;
// It's not totally clear that this is valid to do with libffi.
static ffi_type bool_type;
// Currently the emacs runtime is transient, and there is no way to
// request an environment "out of the blue". These are stack
// allocated as well. So, we stash the most recent one and clear it
// when done. See
// https://github.com/aaptel/emacs-dynamic-module/issues/41
emacs_env *closure_environment;
#define ARRAY_SIZE(x) (sizeof (x) / sizeof (x[0]))
union holder
{
bool b;
int8_t i8;
uint8_t ui8;
int16_t i16;
uint16_t ui16;
int32_t i32;
uint32_t ui32;
int64_t i64;
uint64_t ui64;
float f;
double d;
unsigned char uc;
signed char c;
short s;
unsigned short us;
int i;
unsigned int ui;
long l;
unsigned long ul;
void *p;
ffi_arg arg;
};
struct type_descriptor
{
const char *name;
ffi_type *type;
emacs_value value;
};
static struct type_descriptor type_descriptors[] =
{
{ ":void", &ffi_type_void },
{ ":int8", &ffi_type_sint8 },
{ ":uint8", &ffi_type_uint8 },
{ ":int16", &ffi_type_sint16 },
{ ":uint16", &ffi_type_uint16 },
{ ":int32", &ffi_type_sint32 },
{ ":uint32", &ffi_type_uint32 },
{ ":int64", &ffi_type_sint64 },
{ ":uint64", &ffi_type_uint64 },
{ ":float", &ffi_type_float },
{ ":double", &ffi_type_double },
{ ":uchar", &ffi_type_uchar },
{ ":schar", &ffi_type_schar },
{ ":ushort", &ffi_type_ushort },
{ ":short", &ffi_type_sshort },
{ ":uint", &ffi_type_uint },
{ ":int", &ffi_type_sint },
{ ":ulong", &ffi_type_ulong },
{ ":long", &ffi_type_slong },
{ ":pointer", &ffi_type_pointer },
{ ":size_t", NULL },
{ ":ssize_t", NULL },
{ ":ptrdiff_t", NULL },
{ ":bool", &bool_type },
{ ":wchar_t", NULL },
{ ":char", NULL },
{ ":longlong", NULL },
{ ":ulonglong", NULL }
};
// Hacks to make INIT_TYPE_ALIAS work ok.
typedef long long longlong;
typedef unsigned long long ulonglong;
// Description of a closure, freed by free_closure_desc.
struct closure_description
{
void *closure;
void *code;
emacs_value cif_ref;
emacs_value func_ref;
};
static void free_closure_desc (void *);
static void free_type (void *);
static void
null_finalizer (void *ptr)
{
}
// We have multiple finalizers because we use them to distinguish
// between pointer types.
static void
null_lthandle_finalizer (void *ptr)
{
}
static void *
unwrap_pointer (emacs_env *env, emacs_value value,
emacs_finalizer_function expected)
{
emacs_finalizer_function finalizer = env->get_user_finalizer (env, value);
if (env->non_local_exit_check (env))
return NULL;
if (finalizer != expected)
{
env->non_local_exit_signal (env, wrong_type_argument, value);
return NULL;
}
return env->get_user_ptr (env, value);
}
static char *
copy_string (emacs_env *env, emacs_value str)
{
ptrdiff_t length = 0;
env->copy_string_contents (env, str, NULL, &length);
if (env->non_local_exit_check (env))
return NULL;
char *name = malloc (length);
env->copy_string_contents (env, str, name, &length);
if (env->non_local_exit_check (env))
{
free (name);
return NULL;
}
return name;
}
/* (ffi--dlopen str) */
static emacs_value
ffi_dlopen (emacs_env *env, ptrdiff_t nargs, emacs_value args[], void *ignore)
{
lt_dlhandle handle;
char *name = copy_string (env, args[0]);
if (!name)
return NULL;
handle = lt_dlopenext (name);
free (name);
if (!handle)
{
// FIXME lt_dlerror
// FIXME use NAME here in the error
env->non_local_exit_signal (env, error, nil);
return NULL;
}
return env->make_user_ptr (env, null_lthandle_finalizer, handle);
}
/* (ffi--dlsym symbol-name handle) */
static emacs_value
ffi_dlsym (emacs_env *env, ptrdiff_t nargs, emacs_value args[], void *ignore)
{
lt_dlhandle handle = unwrap_pointer (env, args[1], null_lthandle_finalizer);
if (!handle)
return NULL;
char *name = copy_string (env, args[0]);
if (!name)
return NULL;
void *sym = lt_dlsym (handle, name);
free (name);
if (sym == NULL)
return nil;
return env->make_user_ptr (env, null_finalizer, sym);
}
static ffi_type *
convert_type_from_lisp (emacs_env *env, emacs_value ev_type)
{
emacs_value type = ev_type;
unsigned int i;
for (i = 0; i < ARRAY_SIZE (type_descriptors); ++i)
if (env->eq (env, type, type_descriptors[i].value))
return type_descriptors[i].type;
// If we have an ffi_type object, just unwrap it.
emacs_finalizer_function finalizer = env->get_user_finalizer (env, ev_type);
if (env->non_local_exit_check (env))
{
// We're going to set our own error.
env->non_local_exit_clear (env);
}
else if (finalizer == free_type)
return env->get_user_ptr (env, ev_type);
env->non_local_exit_signal (env, wrong_type_argument, ev_type);
return NULL;
}
static void
free_cif (void *p)
{
ffi_cif *cif = p;
free (cif->arg_types);
free (cif);
}
/* (ffi--prep-cif return-type arg-types &optional n-fixed-args) */
static emacs_value
module_ffi_prep_cif (emacs_env *env, ptrdiff_t nargs, emacs_value args[],
void *ignore)
{
ptrdiff_t i;
ffi_type *return_type;
ptrdiff_t n_types;
ffi_type **arg_types;
emacs_value typevec = args[1];
emacs_value result = NULL;
return_type = convert_type_from_lisp (env, args[0]);
if (!return_type)
return NULL;
n_types = env->vec_size (env, typevec);
if (env->non_local_exit_check (env))
return NULL;
arg_types = malloc (n_types * sizeof (ffi_type *));
for (i = 0; i < n_types; ++i)
{
emacs_value this_type = env->vec_get (env, typevec, i);
if (env->non_local_exit_check (env))
goto fail;
arg_types[i] = convert_type_from_lisp (env, this_type);
if (env->non_local_exit_check (env))
goto fail;
}
ffi_cif *cif = malloc (sizeof (ffi_cif));
ffi_status status;
if (nargs == 3)
{
intmax_t n_fixed = env->extract_integer (env, args[2]);
if (env->non_local_exit_check (env))
goto fail;
status = ffi_prep_cif_var (cif, FFI_DEFAULT_ABI, n_fixed,
n_types, return_type, arg_types);
}
else
status = ffi_prep_cif (cif, FFI_DEFAULT_ABI, n_types,
return_type, arg_types);
if (status)
/* FIXME add some useful message */
env->non_local_exit_signal (env, error, nil);
else
result = env->make_user_ptr (env, free_cif, cif);
if (env->non_local_exit_check (env))
free_cif (cif);
fail:
return result;
}
static bool
convert_from_lisp (emacs_env *env, ffi_type *type, emacs_value ev,
union holder *result, bool for_return)
{
// Callers must handle this.
assert (type->type != FFI_TYPE_STRUCT);
#define MAYBE_NUMBER(ftype, field) \
else if (type == &ffi_type_ ## ftype) \
{ \
intmax_t ival = env->extract_integer (env, ev); \
if (env->non_local_exit_check (env)) \
return false; \
if (for_return && type->size < sizeof (ffi_arg)) \
result->arg = ival; \
else \
result->field = ival; \
}
if (type == &ffi_type_void)
{
env->non_local_exit_signal (env, wrong_type_argument, ev);
return false;
}
MAYBE_NUMBER (sint8, i8)
MAYBE_NUMBER (uint8, ui8)
MAYBE_NUMBER (sint16, i16)
MAYBE_NUMBER (uint16, ui16)
MAYBE_NUMBER (sint32, i32)
MAYBE_NUMBER (uint32, ui32)
MAYBE_NUMBER (sint64, i64)
MAYBE_NUMBER (uint64, ui64)
MAYBE_NUMBER (schar, c)
MAYBE_NUMBER (uchar, uc)
MAYBE_NUMBER (sint, i)
MAYBE_NUMBER (uint, ui)
MAYBE_NUMBER (sshort, s)
MAYBE_NUMBER (ushort, us)
MAYBE_NUMBER (slong, l)
MAYBE_NUMBER (ulong, ul)
else if (type == &ffi_type_float)
{
double d = env->extract_float (env, ev);
if (env->non_local_exit_check (env))
return false;
result->f = d;
}
else if (type == &ffi_type_double)
{
double d = env->extract_float (env, ev);
if (env->non_local_exit_check (env))
return false;
result->d = d;
}
else if (type == &ffi_type_pointer)
{
void *p = env->get_user_ptr (env, ev);
// We use the finalizer to detect whether we have a closure
// pointer; these are converted to their code pointer, not their
// raw pointer.
if (env->non_local_exit_check (env))
return false;
emacs_finalizer_function finalizer = env->get_user_finalizer (env, ev);
if (env->non_local_exit_check (env))
return false;
if (finalizer == free_closure_desc)
{
struct closure_description *desc = p;
p = desc->code;
}
result->p = p;
}
else if (type == &bool_type)
{
result->b = env->is_not_nil (env, ev);
if (env->non_local_exit_check (env))
return false;
}
else
{
env->non_local_exit_signal (env, wrong_type_argument, ev);
return false;
}
#undef MAYBE_NUMBER
return true;
}
static emacs_value
convert_to_lisp (emacs_env *env, ffi_type *type, union holder *value,
emacs_finalizer_function finalizer_for_struct,
bool for_return)
{
emacs_value result;
#define MAYBE_NUMBER(ftype, field) \
else if (type == &ffi_type_ ## ftype) \
{ \
if (for_return && type->size < sizeof (ffi_arg)) \
result = env->make_integer (env, value->arg); \
else \
result = env->make_integer (env, value->field); \
}
if (type == &ffi_type_void)
result = nil;
MAYBE_NUMBER (sint8, i8)
MAYBE_NUMBER (uint8, ui8)
MAYBE_NUMBER (sint16, i16)
MAYBE_NUMBER (uint16, ui16)
MAYBE_NUMBER (sint32, i32)
MAYBE_NUMBER (uint32, ui32)
MAYBE_NUMBER (sint64, i64)
MAYBE_NUMBER (uint64, ui64)
MAYBE_NUMBER (schar, c)
MAYBE_NUMBER (uchar, uc)
MAYBE_NUMBER (sint, i)
MAYBE_NUMBER (uint, ui)
MAYBE_NUMBER (sshort, s)
MAYBE_NUMBER (ushort, us)
MAYBE_NUMBER (slong, l)
MAYBE_NUMBER (ulong, ul)
else if (type == &ffi_type_float)
result = env->make_float (env, value->f);
else if (type == &ffi_type_double)
result = env->make_float (env, value->d);
else if (type == &ffi_type_pointer)
result = env->make_user_ptr (env, null_finalizer, value->p);
else if (type == &bool_type)
result = value->b ? emacs_true : nil;
else if (type->type == FFI_TYPE_STRUCT)
{
// The argument itself is the data.
result = env->make_user_ptr (env, null_finalizer, value);
}
else
{
env->non_local_exit_signal (env, wrong_type_argument, nil);
result = NULL;
}
#undef MAYBE_NUMBER
return result;
}
/* (ffi--call cif function &rest args) */
static emacs_value
module_ffi_call (emacs_env *env, ptrdiff_t nargs, emacs_value *args,
void *ignore)
{
ffi_cif *cif = unwrap_pointer (env, args[0], free_cif);
if (!cif)
return NULL;
void *fn = env->get_user_ptr (env, args[1]);
if (env->non_local_exit_check (env))
return NULL;
void **values;
union holder *holders;
union holder result_holder;
void *result;
emacs_value lisp_result = NULL;
nargs -= 2;
args += 2;
if (nargs == 0)
{
values = NULL;
holders = NULL;
}
else
{
holders = malloc (nargs * sizeof (union holder));
values = malloc (nargs * sizeof (void *));
unsigned int i;
for (i = 0; i < nargs; ++i)
{
if (cif->arg_types[i]->type == FFI_TYPE_STRUCT)
{
// The value is just the unwrapped pointer.
values[i] = env->get_user_ptr (env, args[i]);
if (env->non_local_exit_check (env))
goto fail;
}
else
{
if (!convert_from_lisp (env, cif->arg_types[i], args[i],
&holders[i], false))
goto fail;
values[i] = &holders[i];
}
}
}
if (cif->rtype->type == FFI_TYPE_STRUCT)
result = malloc (cif->rtype->size);
else
result = &result_holder;
// See the comment by closure_environment.
closure_environment = env;
ffi_call (cif, fn, result, values);
closure_environment = NULL;
lisp_result = convert_to_lisp (env, cif->rtype, result, free, true);
if (!env->non_local_exit_check (env))
{
// On success do not free RESULT.
result = &result_holder;
}
if (result != &result_holder)
free (result);
fail:
free (values);
free (holders);
return lisp_result;
}
/* (ffi--mem-ref POINTER TYPE) */
static emacs_value
module_ffi_mem_ref (emacs_env *env, ptrdiff_t nargs, emacs_value *args,
void *ignore)
{
void *ptr = env->get_user_ptr (env, args[0]);
if (env->non_local_exit_check (env))
return NULL;
ffi_type *type = convert_type_from_lisp (env, args[1]);
if (!type)
return NULL;
return convert_to_lisp (env, type, ptr, null_finalizer, false);
}
/* (ffi--mem-set POINTER TYPE VALUE) */
static emacs_value
module_ffi_mem_set (emacs_env *env, ptrdiff_t nargs, emacs_value *args,
void *ignore)
{
void *ptr = env->get_user_ptr (env, args[0]);
if (env->non_local_exit_check (env))
return NULL;
ffi_type *type = convert_type_from_lisp (env, args[1]);
if (!type)
return NULL;
if (type->type == FFI_TYPE_STRUCT)
{
void *from = env->get_user_ptr (env, args[2]);
if (env->non_local_exit_check (env))
return NULL;
memcpy (ptr, from, type->size);
}
else if (!convert_from_lisp (env, type, args[2], ptr, false))
return NULL;
return nil;
}
/* (ffi-pointer+ POINTER NUM) */
static emacs_value
module_ffi_pointer_plus (emacs_env *env, ptrdiff_t nargs, emacs_value *args,
void *ignore)
{
char *ptr = env->get_user_ptr (env, args[0]);
if (env->non_local_exit_check (env))
return NULL;
ptr += env->extract_integer (env, args[1]);
if (env->non_local_exit_check (env))
return NULL;
return env->make_user_ptr (env, null_finalizer, ptr);
}
/* (ffi-pointer-null-p POINTER) */
static emacs_value
module_ffi_pointer_null_p (emacs_env *env, ptrdiff_t nargs, emacs_value *args,
void *ignore)
{
void *ptr = env->get_user_ptr (env, args[0]);
if (env->non_local_exit_check (env))
{
env->non_local_exit_clear (env);
return nil;
}
return ptr ? nil : emacs_true;
}
/* (ffi-pointer= POINTER1 POINTER2) */
static emacs_value
module_ffi_pointer_equal (emacs_env *env, ptrdiff_t nargs, emacs_value *args,
void *ignore)
{
void *ptr1 = env->get_user_ptr (env, args[0]);
if (env->non_local_exit_check (env))
return NULL;
void *ptr2 = env->get_user_ptr (env, args[1]);
if (env->non_local_exit_check (env))
return NULL;
return ptr1 == ptr2 ? emacs_true : nil;
}
/* (ffi-null-pointer) */
static emacs_value
module_ffi_null_pointer (emacs_env *env, ptrdiff_t nargs, emacs_value *args,
void *ignore)
{
return env->make_user_ptr (env, null_finalizer, NULL);
}
/* (ffi-get-c-string POINTER) */
static emacs_value
module_ffi_get_c_string (emacs_env *env, ptrdiff_t nargs, emacs_value *args,
void *ignore)
{
char *ptr = env->get_user_ptr (env, args[0]);
if (env->non_local_exit_check (env))
return NULL;
ptrdiff_t len = strlen (ptr);
return env->make_string (env, ptr, len);
}
/* (ffi-make-c-string STRING) */
static emacs_value
module_ffi_make_c_string (emacs_env *env, ptrdiff_t nargs, emacs_value *args,
void *ignore)
{
char *str = copy_string (env, args[0]);
if (!str)
return NULL;
return env->make_user_ptr (env, null_finalizer, str);
}
/* (ffi-allocate TYPE-OR-INT) */
static emacs_value
module_ffi_allocate (emacs_env *env, ptrdiff_t nargs, emacs_value *args,
void *ignore)
{
size_t size;
ffi_type *type = convert_type_from_lisp (env, args[0]);
if (type == NULL)
{
env->non_local_exit_clear (env);
size = env->extract_integer (env, args[0]);
if (env->non_local_exit_check (env))
return NULL;
}
else
size = type->size;
void *mem = malloc (size);
return env->make_user_ptr (env, null_finalizer, mem);
}
/* (ffi-free POINTER) */
static emacs_value
module_ffi_free (emacs_env *env, ptrdiff_t nargs, emacs_value *args,
void *ignore)
{
void *ptr = env->get_user_ptr (env, args[0]);
free (ptr);
return nil;
}
static void
generic_callback (ffi_cif *cif, void *ret, void **args, void *d)
{
struct closure_description *desc = d;
emacs_env *env = closure_environment;
// You may have lost. See the comment by closure_environment.
assert (env);
emacs_value *argvalues = malloc (cif->nargs * sizeof (emacs_value));
int i;
for (i = 0; i < cif->nargs; ++i)
{
argvalues[i] = convert_to_lisp (env, cif->arg_types[i], args[i],
null_finalizer, false);
if (env->non_local_exit_check (env))
goto fail;
}
emacs_value value = env->funcall (env, desc->func_ref, cif->nargs, argvalues);
if (value)
{
if (cif->rtype->type == FFI_TYPE_STRUCT)
{
void *ptr = env->get_user_ptr (env, value);
if (!env->non_local_exit_check (env))
memcpy (ret, ptr, cif->rtype->size);
}
else
convert_from_lisp (env, cif->rtype, value, ret, true);
}
env->non_local_exit_clear (env);
fail:
// On failure we might leave the result uninitialized, but there's
// nothing to do about it.
free (argvalues);
}
static void
free_closure_desc (void *d)
{
struct closure_description *desc = d;
#if 0
// We just leak here as there is no place to free these things.
// https://github.com/aaptel/emacs-dynamic-module/issues/41
env->free_global_ref (env, desc->cif_ref);
env->free_global_ref (env, desc->func_ref);
#endif
ffi_closure_free (desc->closure);
}
/* (ffi-make-closure CIF FUNCTION) */
static emacs_value
module_ffi_make_closure (emacs_env *env, ptrdiff_t nargs, emacs_value *args,
void *ignore)
{
emacs_value cif_ref = NULL;
emacs_value func = NULL;
struct closure_description *desc = NULL;
cif_ref = env->make_global_ref (env, args[0]);
if (env->non_local_exit_check (env))
return NULL;
func = env->make_global_ref (env, args[1]);
if (env->non_local_exit_check (env))
goto fail;
ffi_cif *cif = unwrap_pointer (env, args[0], free_cif);
if (!cif)
goto fail;
void *code;
void *writable = ffi_closure_alloc (sizeof (ffi_closure), &code);
desc = malloc (sizeof (struct closure_description));
desc->closure = writable;
desc->code = code;
desc->cif_ref = cif_ref;
desc->func_ref = func;
ffi_status status = ffi_prep_closure_loc (writable, cif, generic_callback,
desc, code);
if (status)
/* FIXME add some useful message */
env->non_local_exit_signal (env, error, nil);
else
{
emacs_value desc_val = env->make_user_ptr (env, free_closure_desc, desc);
if (!env->non_local_exit_check (env))
return desc_val;
}
fail:
free (desc);
if (func)
env->free_global_ref (env, func);
env->free_global_ref (env, cif_ref);
return NULL;
}
/* (ffi--type-size TYPE) */
static emacs_value
module_ffi_type_size (emacs_env *env, ptrdiff_t nargs, emacs_value *args,
void *ignore)
{
ffi_type *type = convert_type_from_lisp (env, args[0]);
if (!type)
return NULL;
return env->make_integer (env, type->size);
}
/* (ffi--type-alignment TYPE) */
static emacs_value
module_ffi_type_alignment (emacs_env *env, ptrdiff_t nargs, emacs_value *args,
void *ignore)
{
ffi_type *type = convert_type_from_lisp (env, args[0]);
if (!type)
return NULL;
return env->make_integer (env, type->alignment);
}
static void
free_type (void *t)
{
ffi_type *type = t;
free (type->elements);
free (type);
}
/* (ffi--define-struct &rest TYPES) */
static emacs_value
module_ffi_define_struct (emacs_env *env, ptrdiff_t nargs, emacs_value *args,
void *ignore)
{
emacs_value result = NULL;
ffi_type *type = malloc (sizeof (ffi_type));
type->size = 0;
type->alignment = 0;
type->type = FFI_TYPE_STRUCT;
type->elements = malloc ((nargs + 1) * sizeof (struct ffi_type *));
type->elements[nargs] = NULL;
int i;
for (i = 0; i < nargs; ++i)
{
type->elements[i] = convert_type_from_lisp (env, args[i]);
if (!type->elements[i])
goto fail;
}
// libffi will fill in the type for us, but only if we use prep_cif.
// It would be great if it did more.
ffi_cif temp_cif;
if (ffi_prep_cif (&temp_cif, FFI_DEFAULT_ABI, 0, type, NULL) != FFI_OK)
{
/* FIXME add some useful message */
env->non_local_exit_signal (env, error, nil);
goto fail;
}
result = env->make_user_ptr (env, free_type, type);
if (!env->non_local_exit_check (env))
return result;
fail:
free_type (type);
return result;
}
/* (ffi--define-union &rest TYPES) */
static emacs_value
module_ffi_define_union (emacs_env *env, ptrdiff_t nargs, emacs_value *args,
void *ignore)
{
emacs_value result = NULL;
ffi_type *type = malloc (sizeof (ffi_type));
type->size = 0;
type->alignment = 0;
// Super hackery, but libffi leaves no choice.
type->type = FFI_TYPE_STRUCT;
type->elements = malloc (2 * sizeof (struct ffi_type *));
type->elements[1] = NULL;
int i;
for (i = 0; i < nargs; ++i)
{
ffi_type *argtype = convert_type_from_lisp (env, args[i]);
if (!argtype)
goto fail;
// It shouldn't be possible to see an un-laid-out type here.
assert (argtype->size > 0);
assert (argtype->alignment > 0);
if (argtype->size > type->size)
{
type->elements[0] = argtype;
type->size = argtype->size;
}
if (argtype->alignment > type->alignment)
type->alignment = argtype->alignment;
}
result = env->make_user_ptr (env, free_type, type);
if (!env->non_local_exit_check (env))
return result;
fail:
free_type (type);
return result;
}
/* Function prototype for the module Lisp functions. */
typedef emacs_value (*emacs_subr_t) (emacs_env *, ptrdiff_t,
emacs_value [], void *);
struct descriptor
{
const char *name;
int min, max;
emacs_subr_t subr;
const char *docstring;
};
static const struct descriptor exports[] =
{
{ "ffi--dlopen", 1, 1, ffi_dlopen, "\
Open a shared library and return a handle representing it.\n\
NAME is the name of the shared library to open, a string.\n\
If no file name suffix is provided, `ffi--dlopen' will provide\n\
a suffix suitable for the current platform.\n\
\n\
\(fn NAME)"},
{ "ffi--dlsym", 2, 2, ffi_dlsym, "\
Look up a C symbol in a shared library.\n\
NAME is the name of a C symbol, a string.\n\
HANDLE is a handle representing a shared library, as returned by\n\
`ffi--dlopen'. If there is a symbol in the library named NAME,\n\
then a pointer to it is returned. Otherwise, this returns `nil'.\n\
\n\
\(fn NAME HANDLE)"},
{ "ffi--prep-cif", 1, emacs_variadic_function, module_ffi_prep_cif, "\
Create a `call interface' object that can be passed to `ffi--call'."},
{ "ffi--call", 2, emacs_variadic_function, module_ffi_call },
{ "ffi--mem-ref", 2, 2, module_ffi_mem_ref },
{ "ffi--mem-set", 3, 3, module_ffi_mem_set },
{ "ffi-pointer+", 2, 2, module_ffi_pointer_plus },
{ "ffi-pointer-null-p", 1, 1, module_ffi_pointer_null_p },
{ "ffi-pointer=", 2, 2, module_ffi_pointer_equal },
{ "ffi-null-pointer", 0, 0, module_ffi_null_pointer },
{ "ffi-get-c-string", 1, 1, module_ffi_get_c_string },
{ "ffi-make-c-string", 1, 1, module_ffi_make_c_string },
{ "ffi-allocate", 1, 1, module_ffi_allocate },
{ "ffi-free", 1, 1, module_ffi_free },
{ "ffi-make-closure", 2, 2, module_ffi_make_closure },
{ "ffi--type-size", 1, 1, module_ffi_type_size },
{ "ffi--type-alignment", 1, 1, module_ffi_type_alignment },
{ "ffi--define-struct", 1, emacs_variadic_function,
module_ffi_define_struct },
{ "ffi--define-union", 1, emacs_variadic_function,
module_ffi_define_union }
};
static bool
get_global (emacs_env *env, emacs_value *valptr, const char *name)
{
*valptr = env->intern (env, name);
if (env->non_local_exit_check (env))
return false;
*valptr = env->make_global_ref (env, *valptr);
return !env->non_local_exit_check (env);
}
static void
init_type_alias (const char *name, bool is_unsigned, int size)
{
int i;
// Start at the end since we know it is a bit more efficient.
for (i = ARRAY_SIZE (type_descriptors) - 1; i >= 0; --i)
{
if (!strcmp (type_descriptors[i].name, name))
break;
}
assert (i >= 0);
ffi_type *type;
switch (size)
{
case 1:
type = is_unsigned ? &ffi_type_sint8 : &ffi_type_uint8;
break;
case 2:
type = is_unsigned ? &ffi_type_sint16 : &ffi_type_uint16;
break;
case 4:
type = is_unsigned ? &ffi_type_sint32 : &ffi_type_uint32;
break;
case 8:
type = is_unsigned ? &ffi_type_sint64 : &ffi_type_uint64;
break;
default:
abort ();
}
if (type_descriptors[i].type)
memcpy (type_descriptors[i].type, type, sizeof (*type));
else
type_descriptors[i].type = type;
}
#define INIT_TYPE_ALIAS(Type) \
do \
{ \
Type val = (Type) -1L; \
init_type_alias (":" #Type, val > 0, sizeof (Type)); \
} \
while (0)
int