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
|
// SPDX-License-Identifier: GPL-2.0+
//
// Copyright (C) 2019 Sean Young <sean@mess.org>
//
// This decoder matches pre-defined pulse-space sequences. It does so by
// iterating through the list There are many optimisation possible, if
// performance is an issue.
//
// First of all iterating through the list of patterns is one-by-one, even
// though after the first few pulse space sequences, most patterns will be
// will not be a match. The bitmap datastructure could use a "next clear bit"
// function.
//
// Secondly this can be transformed into a much more efficient state machine,
// where we pre-compile the patterns much like a regex.
#include <linux/lirc.h>
#include <linux/bpf.h>
#include "bpf_helpers.h"
#include "bitmap.h"
#define MAX_PATTERNS 1024
struct decoder_state {
int pos;
DECLARE_BITMAP(nomatch, MAX_PATTERNS);
};
struct bpf_map_def SEC("lirc_mode2/maps") decoder_state_map = {
.type = BPF_MAP_TYPE_ARRAY,
.key_size = sizeof(unsigned int),
.value_size = sizeof(struct decoder_state),
.max_entries = 1,
};
struct raw_pattern {
unsigned int scancode;
unsigned short raw[0];
};
// ir-keytable will load the raw patterns here
struct bpf_map_def SEC("lirc_mode2/maps") raw_map = {
.type = BPF_MAP_TYPE_ARRAY,
.key_size = sizeof(unsigned int),
.value_size = sizeof(struct raw_pattern), // this is not used
.max_entries = MAX_PATTERNS,
};
// These values can be overridden in the rc_keymap toml
//
// We abuse elf relocations. We cast the address of these variables to
// an int, so that the compiler emits a mov immediate for the address
// but uses it as an int. The bpf loader replaces the relocation with the
// actual value (either overridden or taken from the data segment).
int margin = 200;
int rc_protocol = 68;
// The following two values are calculated by ir-keytable
int trail_space = 1000;
int max_length = 1;
#define BPF_PARAM(x) (int)(long)(&(x))
static inline int eq_margin(unsigned d1, unsigned d2)
{
return ((d1 > (d2 - BPF_PARAM(margin))) && (d1 < (d2 + BPF_PARAM(margin))));
}
SEC("lirc_mode2/raw")
int bpf_decoder(unsigned int *sample)
{
unsigned int key = 0;
struct decoder_state *s = bpf_map_lookup_elem(&decoder_state_map, &key);
struct raw_pattern *p;
unsigned int i;
// Make verifier happy. Should never come to pass
if (!s)
return 0;
switch (*sample & LIRC_MODE2_MASK) {
case LIRC_MODE2_SPACE:
case LIRC_MODE2_PULSE:
case LIRC_MODE2_TIMEOUT:
break;
default:
// not a timing events
return 0;
}
int duration = LIRC_VALUE(*sample);
int pulse = LIRC_IS_PULSE(*sample);
int pos = s->pos;
if (pos < 0 || pos >= BPF_PARAM(max_length)) {
if (!pulse && duration >= BPF_PARAM(trail_space)) {
bitmap_zero(s->nomatch, MAX_PATTERNS);
s->pos = 0;
}
return 0;
}
if (!pulse && duration >= BPF_PARAM(trail_space)) {
for (i = 0; i < MAX_PATTERNS; i++) {
key = i;
p = bpf_map_lookup_elem(&raw_map, &key);
// Make verifier happy. Should never come to pass
if (!p)
break;
// Has this pattern already mismatched?
if (bitmap_test(s->nomatch, i))
continue;
// Are we at the end of the pattern?
if (p->raw[pos] == 0)
bpf_rc_keydown(sample, BPF_PARAM(rc_protocol),
p->scancode, 0);
}
bitmap_zero(s->nomatch, MAX_PATTERNS);
s->pos = 0;
} else {
for (i = 0; i < MAX_PATTERNS; i++) {
key = i;
p = bpf_map_lookup_elem(&raw_map, &key);
// Make verifier happy. Should never come to pass
if (!p)
break;
// Has this pattern already mismatched?
if (bitmap_test(s->nomatch, i))
continue;
// If the pattern ended, or does not match
if (p->raw[pos] == 0 ||
!eq_margin(duration, p->raw[pos]))
bitmap_set(s->nomatch, i);
}
s->pos++;
}
return 0;
}
char _license[] SEC("license") = "GPL";
|