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
|
/*******************************************************************/
/* slibtool: a skinny libtool implementation, written in C */
/* Copyright (C) 2016--2024 SysDeer Technologies, LLC */
/* Released under the Standard MIT License; see COPYING.SLIBTOOL. */
/*******************************************************************/
#include <time.h>
#include <locale.h>
#include <regex.h>
#include <inttypes.h>
#include <slibtool/slibtool.h>
#include <slibtool/slibtool_output.h>
#include "slibtool_driver_impl.h"
#include "slibtool_dprintf_impl.h"
#include "slibtool_errinfo_impl.h"
#include "slibtool_ar_impl.h"
/********************************************************/
/* Generate a symbol mapfile (aka version script) that */
/* could be passed to the host linker. */
/* */
/* Since the symbol list is directly derived from the */
/* archive's armap member, prepending symbol names with */
/* an underscore (where relevant) is not necessary. */
/********************************************************/
static int slbt_ar_output_mapfile_impl(
const struct slbt_driver_ctx * dctx,
struct slbt_archive_meta_impl * mctx,
int fdout)
{
bool fsort;
bool fcoff;
bool fmach;
const char * regex;
const char ** symv;
const char ** symstrv;
regex_t regctx;
regmatch_t pmatch[2] = {{0,0},{0,0}};
fsort = !(dctx->cctx->fmtflags & SLBT_OUTPUT_ARCHIVE_NOSORT);
fmach = !strcmp(dctx->cctx->host.flavor,"darwin");
fmach = fmach || (mctx->ofmtattr & AR_OBJECT_ATTR_MACHO);
fcoff = !strcmp(dctx->cctx->host.flavor,"midipix");
fcoff = fcoff || !strcmp(dctx->cctx->host.flavor,"cygwin");
fcoff = fcoff || !strcmp(dctx->cctx->host.flavor,"mingw");
fcoff = fcoff || !strcmp(dctx->cctx->host.flavor,"msys2");
fcoff = fcoff || (mctx->ofmtattr & AR_OBJECT_ATTR_COFF);
if (fcoff) {
if (slbt_dprintf(fdout,"EXPORTS\n") < 0)
return SLBT_SYSTEM_ERROR(dctx,0);
} else if (fmach) {
if (slbt_dprintf(fdout,"# export_list, armap underscores\n") < 0)
return SLBT_SYSTEM_ERROR(dctx,0);
} else {
if (slbt_dprintf(fdout,"{\n" "\t" "global:\n") < 0)
return SLBT_SYSTEM_ERROR(dctx,0);
}
if (fsort && !mctx->mapstrv)
if (slbt_update_mapstrv(dctx,mctx) < 0)
return SLBT_NESTED_ERROR(dctx);
if ((regex = dctx->cctx->regex))
if (regcomp(®ctx,regex,REG_NEWLINE))
return SLBT_CUSTOM_ERROR(
dctx,
SLBT_ERR_FLOW_ERROR);
symstrv = fsort ? mctx->mapstrv : mctx->symstrv;
for (symv=symstrv; *symv; symv++) {
if (!fcoff || strncmp(*symv,"__imp_",6)) {
if (!regex || !regexec(®ctx,*symv,1,pmatch,0)) {
if (fcoff || fmach) {
if (slbt_dprintf(fdout,"%s\n",*symv) < 0)
return SLBT_SYSTEM_ERROR(dctx,0);
} else {
if (slbt_dprintf(fdout,"\t\t%s;\n",*symv) < 0)
return SLBT_SYSTEM_ERROR(dctx,0);
}
}
}
}
if (regex)
regfree(®ctx);
if (!fcoff && !fmach)
if (slbt_dprintf(fdout,"\n\t" "local:\n" "\t\t*;\n" "};\n") < 0)
return SLBT_SYSTEM_ERROR(dctx,0);
return 0;
}
static int slbt_ar_create_mapfile_impl(
const struct slbt_archive_meta * meta,
const char * path,
mode_t mode)
{
int ret;
struct slbt_archive_meta_impl * mctx;
const struct slbt_driver_ctx * dctx;
struct slbt_fd_ctx fdctx;
int fdout;
mctx = slbt_archive_meta_ictx(meta);
dctx = (slbt_archive_meta_ictx(meta))->dctx;
if (slbt_lib_get_driver_fdctx(dctx,&fdctx) < 0)
return SLBT_NESTED_ERROR(dctx);
if (!meta->a_memberv)
return 0;
if (path) {
if ((fdout = openat(
fdctx.fdcwd,path,
O_WRONLY|O_CREAT|O_TRUNC,
mode)) < 0)
return SLBT_SYSTEM_ERROR(dctx,0);
} else {
fdout = fdctx.fdout;
}
ret = slbt_ar_output_mapfile_impl(
dctx,mctx,fdout);
if (path) {
close(fdout);
}
return ret;
}
int slbt_ar_create_mapfile(
const struct slbt_archive_meta * meta,
const char * path,
mode_t mode)
{
return slbt_ar_create_mapfile_impl(meta,path,mode);
}
|