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
|
// SPDX-License-Identifier: GPL-2.0
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <libelf.h>
#include <gelf.h>
#include <errno.h>
#include <unistd.h>
#include <string.h>
#include <stdbool.h>
#include <limits.h>
#include <stdlib.h>
#include <linux/bpf.h>
#include <assert.h>
#include "keymap.h"
#include "bpf.h"
#include "bpf_load.h"
#ifdef ENABLE_NLS
# define _(string) gettext(string)
# include "gettext.h"
# include <locale.h>
# include <langinfo.h>
# include <iconv.h>
#else
# define _(string) string
#endif
// This should match the struct in the raw BPF decoder
struct raw_pattern {
unsigned int scancode;
unsigned short raw[0];
};
// For the raw decoder, these values are calculated based on the raw
// patterns and need to be patched into the BPF
int max_length;
int trail_space;
char bpf_log_buf[BPF_LOG_BUF_SIZE];
extern int debug;
struct bpf_file {
Elf *elf;
char license[128];
bool processed_sec[128];
int map_fd[MAX_MAPS];
struct bpf_map_data map_data[MAX_MAPS];
int nr_maps;
int maps_shidx;
int dataidx;
int bssidx;
Elf_Data *data;
int strtabidx;
Elf_Data *symbols;
struct protocol_param *param;
};
static int load_and_attach(int lirc_fd, struct bpf_file *bpf_file, const char *name, struct bpf_insn *prog, int size)
{
size_t insns_cnt = size / sizeof(struct bpf_insn);
int fd, err;
fd = bpf_load_program(BPF_PROG_TYPE_LIRC_MODE2, prog, insns_cnt,
name, bpf_file->license, 0,
bpf_log_buf, BPF_LOG_BUF_SIZE);
if (fd < 0) {
printf("bpf_load_program() err=%m\n%s", bpf_log_buf);
return -1;
}
err = bpf_prog_attach(fd, lirc_fd, BPF_LIRC_MODE2, 0);
if (err) {
printf("bpf_prog_attach: err=%m\n");
return -1;
}
return 0;
}
static int build_raw_map(struct bpf_map_data *map, struct raw_entry *raw, int numa_node)
{
int no_patterns, value_size, fd, key, i;
struct raw_entry *e;
struct raw_pattern *p;
no_patterns = 0;
for (e = raw; e; e = e->next) {
if (e->raw_length > max_length)
max_length = e->raw_length;
no_patterns++;
}
// pattern needs a trailing 0 to mark the end of
// the pattern
max_length++;
value_size = sizeof(struct raw_pattern) + max_length * sizeof(short);
fd = bpf_create_map_node(map->def.type,
map->name,
map->def.key_size,
value_size,
no_patterns,
map->def.map_flags,
numa_node);
if (fd < 0) {
printf(_("failed to create a map: %d %s\n"),
errno, strerror(errno));
return -1;
}
p = malloc(value_size);
if (!p) {
printf(_("Failed to allocate memory"));
return -1;
}
key = 0;
for (e = raw; e; e = e->next) {
p->scancode = e->scancode;
for (i = 0; i < e->raw_length; i++) {
p->raw[i] = e->raw[i];
if (i % 2 && e->raw[i] > trail_space)
trail_space = e->raw[i];
}
// Add trailing space and clear rest of the struct
while (i < max_length)
p->raw[i++] = 0;
if (bpf_map_update_elem(fd, &key, p, BPF_ANY)) {
printf(_("failed to update raw map: %d %s\n"),
errno, strerror(errno));
free(p);
return -1;
}
key++;
}
free(p);
// 1ms extra for trailing space. This also ensure that the
// trail_space is larger than largest space + margin in the
// decoder
trail_space += 1000;
return fd;
}
static int load_maps(struct bpf_file *bpf_file, struct raw_entry *raw)
{
struct bpf_map_data *maps = bpf_file->map_data;
int i, numa_node;
for (i = 0; i < bpf_file->nr_maps; i++) {
numa_node = maps[i].def.map_flags & BPF_F_NUMA_NODE ?
maps[i].def.numa_node : -1;
if (maps[i].def.type == BPF_MAP_TYPE_ARRAY_OF_MAPS ||
maps[i].def.type == BPF_MAP_TYPE_HASH_OF_MAPS) {
int inner_map_fd = bpf_file->map_fd[maps[i].def.inner_map_idx];
bpf_file->map_fd[i] = bpf_create_map_in_map_node(
maps[i].def.type,
maps[i].name,
maps[i].def.key_size,
inner_map_fd,
maps[i].def.max_entries,
maps[i].def.map_flags,
numa_node);
} else if (!strcmp(maps[i].name, "raw_map")) {
bpf_file->map_fd[i] = build_raw_map(&maps[i], raw, numa_node);
} else {
bpf_file->map_fd[i] = bpf_create_map_node(
maps[i].def.type,
maps[i].name,
maps[i].def.key_size,
maps[i].def.value_size,
maps[i].def.max_entries,
maps[i].def.map_flags,
numa_node);
}
if (bpf_file->map_fd[i] < 0) {
printf(_("failed to create a map: %d %s\n"),
errno, strerror(errno));
return 1;
}
maps[i].fd = bpf_file->map_fd[i];
}
return 0;
}
static int get_sec(Elf *elf, int i, GElf_Ehdr *ehdr, char **shname,
GElf_Shdr *shdr, Elf_Data **data)
{
Elf_Scn *scn;
scn = elf_getscn(elf, i);
if (!scn)
return 1;
if (gelf_getshdr(scn, shdr) != shdr)
return 2;
*shname = elf_strptr(elf, ehdr->e_shstrndx, shdr->sh_name);
if (!*shname || !shdr->sh_size)
return 3;
*data = elf_getdata(scn, 0);
if (!*data || elf_getdata(scn, *data) != NULL)
return 4;
return 0;
}
static int parse_relo_and_apply(struct bpf_file *bpf_file, GElf_Shdr *shdr,
struct bpf_insn *insn, Elf_Data *data)
{
int i, nrels;
nrels = shdr->sh_size / shdr->sh_entsize;
for (i = 0; i < nrels; i++) {
GElf_Sym sym;
GElf_Rel rel;
unsigned int insn_idx;
const char *sym_name;
bool match = false;
int map_idx;
gelf_getrel(data, i, &rel);
insn_idx = rel.r_offset / sizeof(struct bpf_insn);
gelf_getsym(bpf_file->symbols, GELF_R_SYM(rel.r_info), &sym);
sym_name = elf_strptr(bpf_file->elf, bpf_file->strtabidx, sym.st_name);
if (insn[insn_idx].code != (BPF_LD | BPF_IMM | BPF_DW)) {
printf(_("invalid relo for insn[%d].code 0x%x\n"),
insn_idx, insn[insn_idx].code);
return 1;
}
if (sym.st_shndx == bpf_file->maps_shidx) {
/* Match FD relocation against recorded map_data[] offset */
for (map_idx = 0; map_idx < bpf_file->nr_maps; map_idx++) {
if (bpf_file->map_data[map_idx].elf_offset == sym.st_value) {
match = true;
break;
}
}
if (match) {
insn[insn_idx].src_reg = BPF_PSEUDO_MAP_FD;
insn[insn_idx].imm = bpf_file->map_data[map_idx].fd;
continue;
}
printf(_("invalid relo for insn[%d] no map_data match\n"),
insn_idx);
return 1;
}
if (sym.st_shndx == bpf_file->dataidx || sym.st_shndx == bpf_file->bssidx) {
const char *raw = NULL;
int value = 0;
if (!bpf_param(bpf_file->param, sym_name, &value)) {
if (value < INT_MIN && value > UINT_MAX) {
printf(_("variable %s out of range: %s\n"), sym_name, raw);
return 1;
}
} else if (sym.st_shndx == bpf_file->dataidx) {
// Value is not overridden on command line
// or toml file. For the raw decoder, the
// max_length and trail_space needs to be
// patched in. Otherwise use value set in
// bpf object file from data section.
if (!strcmp(sym_name, "max_length") && max_length)
value = max_length;
else if (!strcmp(sym_name, "trail_space") && trail_space)
value = trail_space;
else
value = *(int*)((unsigned char*)bpf_file->data->d_buf + sym.st_value);
}
if (debug)
printf(_("patching insn[%d] with immediate %d for symbol %s\n"), insn_idx, value, sym_name);
// patch ld to mov immediate
insn[insn_idx].imm = value;
} else {
printf(_("symbol %s has unknown section %d\n"), sym_name, sym.st_shndx);
return 1;
}
}
return 0;
}
static int cmp_symbols(const void *l, const void *r)
{
const GElf_Sym *lsym = (const GElf_Sym *)l;
const GElf_Sym *rsym = (const GElf_Sym *)r;
if (lsym->st_value < rsym->st_value)
return -1;
if (lsym->st_value > rsym->st_value)
return 1;
return 0;
}
static int load_elf_maps_section(struct bpf_file *bpf_file)
{
int map_sz_elf, map_sz_copy;
bool validate_zero = false;
Elf_Data *data_maps;
int i, nr_maps;
GElf_Sym *sym;
Elf_Scn *scn;
if (bpf_file->maps_shidx < 0)
return -EINVAL;
if (!bpf_file->symbols)
return -EINVAL;
/* Get data for maps section via elf index */
scn = elf_getscn(bpf_file->elf, bpf_file->maps_shidx);
if (scn)
data_maps = elf_getdata(scn, NULL);
if (!scn || !data_maps) {
printf(_("Failed to get Elf_Data from maps section %d\n"),
bpf_file->maps_shidx);
return -EINVAL;
}
/* For each map get corrosponding symbol table entry */
sym = calloc(MAX_MAPS+1, sizeof(GElf_Sym));
for (i = 0, nr_maps = 0; i < bpf_file->symbols->d_size / sizeof(GElf_Sym); i++) {
assert(nr_maps < MAX_MAPS+1);
if (!gelf_getsym(bpf_file->symbols, i, &sym[nr_maps]))
continue;
if (sym[nr_maps].st_shndx != bpf_file->maps_shidx)
continue;
/* Only increment iif maps section */
nr_maps++;
}
/* Align to map_fd[] order, via sort on offset in sym.st_value */
qsort(sym, nr_maps, sizeof(GElf_Sym), cmp_symbols);
/* Keeping compatible with ELF maps section changes
* ------------------------------------------------
* The program size of struct bpf_load_map_def is known by loader
* code, but struct stored in ELF file can be different.
*
* Unfortunately sym[i].st_size is zero. To calculate the
* struct size stored in the ELF file, assume all struct have
* the same size, and simply divide with number of map
* symbols.
*/
map_sz_elf = data_maps->d_size / nr_maps;
map_sz_copy = sizeof(struct bpf_load_map_def);
if (map_sz_elf < map_sz_copy) {
/*
* Backward compat, loading older ELF file with
* smaller struct, keeping remaining bytes zero.
*/
map_sz_copy = map_sz_elf;
} else if (map_sz_elf > map_sz_copy) {
/*
* Forward compat, loading newer ELF file with larger
* struct with unknown features. Assume zero means
* feature not used. Thus, validate rest of struct
* data is zero.
*/
validate_zero = true;
}
/* Memcpy relevant part of ELF maps data to loader maps */
for (i = 0; i < nr_maps; i++) {
unsigned char *addr, *end, *def;
const char *map_name;
struct bpf_map_data *maps = bpf_file->map_data;
size_t offset;
map_name = elf_strptr(bpf_file->elf, bpf_file->strtabidx, sym[i].st_name);
maps[i].name = strdup(map_name);
if (!maps[i].name) {
printf(_("strdup(%s): %s(%d)\n"), map_name,
strerror(errno), errno);
free(sym);
return -errno;
}
/* Symbol value is offset into ELF maps section data area */
offset = sym[i].st_value;
def = (unsigned char*)data_maps->d_buf + offset;
maps[i].elf_offset = offset;
memset(&maps[i].def, 0, sizeof(struct bpf_load_map_def));
memcpy(&maps[i].def, def, map_sz_copy);
/* Verify no newer features were requested */
if (validate_zero) {
addr = def + map_sz_copy;
end = def + map_sz_elf;
for (; addr < end; addr++) {
if (*addr != 0) {
free(sym);
return -EFBIG;
}
}
}
}
free(sym);
return nr_maps;
}
int load_bpf_file(const char *path, int lirc_fd, struct protocol_param *param,
struct raw_entry *raw)
{
struct bpf_file bpf_file = { .param = param };
int fd, i, ret;
Elf *elf;
GElf_Ehdr ehdr;
GElf_Shdr shdr, shdr_prog;
Elf_Data *data, *data_prog, *data_map = NULL;
char *shname, *shname_prog;
int nr_maps = 0;
if (elf_version(EV_CURRENT) == EV_NONE)
return 1;
fd = open(path, O_RDONLY, 0);
if (fd < 0)
return 1;
elf = elf_begin(fd, ELF_C_READ, NULL);
if (!elf)
return 1;
if (gelf_getehdr(elf, &ehdr) != &ehdr)
return 1;
bpf_file.elf = elf;
/* scan over all elf sections to get license and map info */
for (i = 1; i < ehdr.e_shnum; i++) {
if (get_sec(elf, i, &ehdr, &shname, &shdr, &data))
continue;
if (debug)
printf(_("section %d:%s data %p size %zd link %d flags %d\n"),
i, shname, data->d_buf, data->d_size,
shdr.sh_link, (int) shdr.sh_flags);
if (strcmp(shname, "license") == 0) {
bpf_file.processed_sec[i] = true;
memcpy(bpf_file.license, data->d_buf, data->d_size);
} else if (strcmp(shname, "maps") == 0) {
int j;
bpf_file.maps_shidx = i;
data_map = data;
for (j = 0; j < MAX_MAPS; j++)
bpf_file.map_data[j].fd = -1;
} else if (strcmp(shname, ".data") == 0) {
bpf_file.dataidx = i;
bpf_file.data = data;
} else if (strcmp(shname, ".bss") == 0) {
bpf_file.bssidx = i;
} else if (shdr.sh_type == SHT_SYMTAB) {
bpf_file.strtabidx = shdr.sh_link;
bpf_file.symbols = data;
}
}
ret = 1;
if (!bpf_file.symbols) {
printf(_("missing SHT_SYMTAB section\n"));
goto done;
}
max_length = 0;
trail_space = 0;
if (data_map) {
bpf_file.nr_maps = load_elf_maps_section(&bpf_file);
if (bpf_file.nr_maps < 0) {
printf(_("Error: Failed loading ELF maps (errno:%d):%s\n"),
nr_maps, strerror(-nr_maps));
goto done;
}
if (load_maps(&bpf_file, raw))
goto done;
bpf_file.processed_sec[bpf_file.maps_shidx] = true;
}
/* process all relo sections, and rewrite bpf insns for maps */
for (i = 1; i < ehdr.e_shnum; i++) {
if (bpf_file.processed_sec[i])
continue;
if (get_sec(elf, i, &ehdr, &shname, &shdr, &data))
continue;
if (shdr.sh_type == SHT_REL) {
struct bpf_insn *insns;
/* locate prog sec that need map fixup (relocations) */
if (get_sec(elf, shdr.sh_info, &ehdr, &shname_prog,
&shdr_prog, &data_prog))
continue;
if (shdr_prog.sh_type != SHT_PROGBITS ||
!(shdr_prog.sh_flags & SHF_EXECINSTR))
continue;
insns = (struct bpf_insn *) data_prog->d_buf;
bpf_file.processed_sec[i] = true; /* relo section */
if (parse_relo_and_apply(&bpf_file, &shdr, insns, data))
continue;
}
}
/* load programs */
for (i = 1; i < ehdr.e_shnum; i++) {
if (bpf_file.processed_sec[i])
continue;
if (get_sec(elf, i, &ehdr, &shname, &shdr, &data))
continue;
if (shdr.sh_type != SHT_PROGBITS ||
!(shdr.sh_flags & SHF_EXECINSTR))
continue;
ret = load_and_attach(lirc_fd, &bpf_file, shname, data->d_buf,
data->d_size);
break;
}
done:
close(fd);
return ret;
}
|