mirror of
https://github.com/linux-msm/qmic.git
synced 2026-02-25 13:11:34 -08:00
Allow specifying message type for the tlv support functions to verify and create the right type of qmi header. Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
381 lines
7.5 KiB
C
381 lines
7.5 KiB
C
#include <assert.h>
|
|
#include <ctype.h>
|
|
#include <err.h>
|
|
#include <fcntl.h>
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdbool.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
#include "qmic.h"
|
|
|
|
#define ARRAY_SIZE(x) (sizeof(x)/sizeof((x)[0]))
|
|
|
|
static char scratch_buf[128];
|
|
static int scratch_pos;
|
|
|
|
static int yyline = 1;
|
|
|
|
static int input()
|
|
{
|
|
static char input_buf[128];
|
|
static int input_pos;
|
|
static int input_len;
|
|
int ret;
|
|
int ch;
|
|
|
|
if (scratch_pos) {
|
|
ch = scratch_buf[--scratch_pos];
|
|
goto out;
|
|
}
|
|
|
|
if (input_pos < input_len) {
|
|
ch = input_buf[input_pos++];
|
|
goto out;
|
|
}
|
|
|
|
ret = read(0, input_buf, sizeof(input_buf));
|
|
if (ret <= 0)
|
|
return ret;
|
|
|
|
input_pos = 0;
|
|
input_len = ret;
|
|
|
|
ch = input_buf[input_pos++];
|
|
out:
|
|
if (ch == '\n')
|
|
yyline++;
|
|
return ch;
|
|
}
|
|
|
|
static void unput(int ch)
|
|
{
|
|
assert(scratch_pos < 128);
|
|
scratch_buf[scratch_pos++] = ch;
|
|
|
|
if (ch == '\n')
|
|
yyline--;
|
|
}
|
|
|
|
struct symbol {
|
|
int token;
|
|
const char *name;
|
|
|
|
int type;
|
|
struct qmi_struct *qmi_struct;
|
|
|
|
struct symbol *next;
|
|
};
|
|
|
|
LIST_HEAD(symbol, symbols);
|
|
|
|
void symbol_add(const char *name, int token, ...)
|
|
{
|
|
struct symbol *sym;
|
|
va_list ap;
|
|
|
|
va_start(ap, token);
|
|
|
|
sym = malloc(sizeof(struct symbol));
|
|
sym->token = token;
|
|
sym->name = name;
|
|
sym->next = NULL;
|
|
|
|
switch (token) {
|
|
case TOK_MESSAGE:
|
|
sym->type = va_arg(ap, int);
|
|
break;
|
|
case TOK_TYPE:
|
|
sym->type = va_arg(ap, int);
|
|
if (sym->type == TYPE_STRUCT)
|
|
sym->qmi_struct = va_arg(ap, struct qmi_struct *);
|
|
break;
|
|
}
|
|
|
|
LIST_ADD(symbols, sym);
|
|
|
|
va_end(ap);
|
|
}
|
|
|
|
static struct token yylex()
|
|
{
|
|
struct symbol *sym;
|
|
struct token token = {};
|
|
char buf[128];
|
|
char *p = buf;
|
|
int base;
|
|
int ch;
|
|
|
|
while ((ch = input()) && isspace(ch))
|
|
;
|
|
|
|
if (isalpha(ch)) {
|
|
do {
|
|
*p++ = ch;
|
|
ch = input();
|
|
} while (isalnum(ch) || ch == '_');
|
|
unput(ch);
|
|
*p = '\0';
|
|
|
|
token.str = strdup(buf);
|
|
for (sym = symbols.head; sym; sym = sym->next) {
|
|
if (strcmp(buf, sym->name) == 0) {
|
|
token.id = sym->token;
|
|
token.num = sym->type;
|
|
token.qmi_struct = sym->qmi_struct;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!sym)
|
|
token.id = TOK_ID;
|
|
|
|
return token;
|
|
} else if (isdigit(ch)) {
|
|
do {
|
|
*p++ = ch;
|
|
ch = input();
|
|
} while (isdigit(ch) || (p - buf == 1 && ch == 'x'));
|
|
unput(ch);
|
|
*p = '\0';
|
|
|
|
if (buf[0] == '0' && buf[1] == 'x')
|
|
base = 16;
|
|
else if (buf[0] == '0')
|
|
base = 8;
|
|
else
|
|
base = 10;
|
|
|
|
token.id = TOK_NUM;
|
|
token.num = strtol(buf, NULL, base);
|
|
return token;
|
|
}
|
|
|
|
token.id = ch;
|
|
return token;
|
|
}
|
|
|
|
static struct token curr_token;
|
|
|
|
void yyerror(const char *fmt, ...)
|
|
{
|
|
char buf[128];
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
|
|
|
vsprintf(buf, fmt, ap);
|
|
printf("parse error on line %d: %s\n", yyline, buf);
|
|
|
|
va_end(ap);
|
|
exit(1);
|
|
}
|
|
|
|
static void token_init(void)
|
|
{
|
|
curr_token = yylex();
|
|
}
|
|
|
|
int token_accept(int id, struct token *tok)
|
|
{
|
|
if (curr_token.id == id) {
|
|
if (tok)
|
|
*tok = curr_token;
|
|
|
|
curr_token = yylex();
|
|
return 1;
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
void token_expect(int id, struct token *tok)
|
|
{
|
|
if (!token_accept(id, tok)) {
|
|
switch (id) {
|
|
case TOK_CONST:
|
|
yyerror("expected const");
|
|
case TOK_ID:
|
|
yyerror("expected identifier");
|
|
case TOK_MESSAGE:
|
|
yyerror("expected message");
|
|
case TOK_NUM:
|
|
yyerror("expected num");
|
|
case TOK_PACKAGE:
|
|
yyerror("expected package");
|
|
case TOK_STRUCT:
|
|
yyerror("expected struct");
|
|
case TOK_TYPE:
|
|
yyerror("expected type");
|
|
case TOK_REQUIRED:
|
|
yyerror("expected required");
|
|
case TOK_OPTIONAL:
|
|
yyerror("expected optional");
|
|
default:
|
|
yyerror("expected '%c'", id);
|
|
}
|
|
}
|
|
}
|
|
|
|
static const char *parse_package()
|
|
{
|
|
struct token tok;
|
|
|
|
if (!token_accept(TOK_ID, &tok))
|
|
yyerror("expected identifier");
|
|
|
|
token_expect(';', NULL);
|
|
return tok.str;
|
|
}
|
|
|
|
|
|
struct qmi_const {
|
|
const char *name;
|
|
unsigned value;
|
|
|
|
struct qmi_const *next;
|
|
};
|
|
|
|
LIST_HEAD(qmi_const, qmi_consts);
|
|
|
|
static void qmi_const_parse()
|
|
{
|
|
struct qmi_const *qc;
|
|
struct token num_tok;
|
|
struct token id_tok;
|
|
|
|
token_expect(TOK_ID, &id_tok);
|
|
token_expect('=', NULL);
|
|
token_expect(TOK_NUM, &num_tok);
|
|
token_expect(';', NULL);
|
|
|
|
qc = malloc(sizeof(struct qmi_const));
|
|
qc->name = id_tok.str;
|
|
qc->value = num_tok.num;
|
|
LIST_ADD(qmi_consts, qc);
|
|
}
|
|
|
|
static void qmi_const_header(FILE *fp)
|
|
{
|
|
struct qmi_const *qc;
|
|
|
|
if (!qmi_consts.head)
|
|
return;
|
|
|
|
for (qc = qmi_consts.head; qc; qc = qc->next)
|
|
fprintf(fp, "#define %s %d\n", qc->name, qc->value);
|
|
|
|
fprintf(fp, "\n");
|
|
}
|
|
|
|
static void guard_header(FILE *fp, const char *package)
|
|
{
|
|
char *upper;
|
|
char *p;
|
|
|
|
upper = p = strdup(package);
|
|
while (*p) {
|
|
*p = toupper(*p);
|
|
p++;
|
|
}
|
|
|
|
fprintf(fp, "#ifndef __QMI_%s_H__\n", upper);
|
|
fprintf(fp, "#define __QMI_%s_H__\n", upper);
|
|
fprintf(fp, "\n");
|
|
}
|
|
|
|
static void guard_footer(FILE *fp)
|
|
{
|
|
fprintf(fp, "#endif\n");
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
const char *package = NULL;
|
|
struct token tok;
|
|
char fname[256];
|
|
FILE *hfp;
|
|
FILE *sfp;
|
|
|
|
/* PACKAGE ID<string> ';' */
|
|
/* CONST ID<string> '=' NUM<num> ';' */
|
|
/* STRUCT ID<string> '{' ... '}' ';' */
|
|
/* TYPE<type*> ID<string> ';' */
|
|
/* MESSAGE ID<string> '{' ... '}' ';' */
|
|
/* (REQUIRED | OPTIONAL) TYPE<type*> ID<string> '=' NUM<num> ';' */
|
|
|
|
symbol_add("const", TOK_CONST);
|
|
symbol_add("optional", TOK_OPTIONAL);
|
|
symbol_add("message", TOK_MESSAGE, MESSAGE_RESPONSE); /* backward compatible with early hacking */
|
|
symbol_add("request", TOK_MESSAGE, MESSAGE_REQUEST);
|
|
symbol_add("response", TOK_MESSAGE, MESSAGE_RESPONSE);
|
|
symbol_add("indication", TOK_MESSAGE, MESSAGE_INDICATION);
|
|
symbol_add("package", TOK_PACKAGE);
|
|
symbol_add("required", TOK_REQUIRED);
|
|
symbol_add("struct", TOK_STRUCT);
|
|
symbol_add("string", TOK_TYPE, TYPE_STRING);
|
|
symbol_add("u8", TOK_TYPE, TYPE_U8);
|
|
symbol_add("u16", TOK_TYPE, TYPE_U16);
|
|
symbol_add("u32", TOK_TYPE, TYPE_U32);
|
|
symbol_add("u64", TOK_TYPE, TYPE_U64);
|
|
|
|
token_init();
|
|
while (!token_accept(0, NULL)) {
|
|
if (token_accept(TOK_PACKAGE, NULL)) {
|
|
package = parse_package();
|
|
} else if (token_accept(TOK_CONST, NULL)) {
|
|
qmi_const_parse();
|
|
} else if (token_accept(TOK_STRUCT, NULL)) {
|
|
qmi_struct_parse();
|
|
} else if (token_accept(TOK_MESSAGE, &tok)) {
|
|
qmi_message_parse(tok.num);
|
|
} else {
|
|
yyerror("unexpected symbol");
|
|
break;
|
|
}
|
|
}
|
|
|
|
snprintf(fname, sizeof(fname), "qmi_%s.c", package);
|
|
sfp = fopen(fname, "w");
|
|
if (!sfp)
|
|
err(1, "failed to open %s", fname);
|
|
|
|
snprintf(fname, sizeof(fname), "qmi_%s.h", package);
|
|
hfp = fopen(fname, "w");
|
|
if (!hfp)
|
|
err(1, "failed to open %s", fname);
|
|
|
|
fprintf(sfp, "#include <errno.h>\n"
|
|
"#include <string.h>\n"
|
|
"#include \"qmi_%1$s.h\"\n\n",
|
|
package);
|
|
qmi_message_source(sfp, package);
|
|
|
|
guard_header(hfp, package);
|
|
fprintf(hfp, "#include <stdint.h>\n"
|
|
"#include <stdlib.h>\n\n");
|
|
fprintf(hfp, "struct qmi_tlv;\n"
|
|
"\n"
|
|
"struct qmi_tlv *qmi_tlv_init(unsigned txn, unsigned msg_id, unsigned type);\n"
|
|
"struct qmi_tlv *qmi_tlv_decode(void *buf, size_t len, unsigned *txn, unsigned type);\n"
|
|
"void *qmi_tlv_encode(struct qmi_tlv *tlv, size_t *len);\n"
|
|
"void qmi_tlv_free(struct qmi_tlv *tlv);\n"
|
|
"\n"
|
|
"void *qmi_tlv_get(struct qmi_tlv *tlv, unsigned id, size_t *len);\n"
|
|
"void *qmi_tlv_get_array(struct qmi_tlv *tlv, unsigned id, unsigned len_size, size_t *len, size_t *size);\n"
|
|
"int qmi_tlv_set(struct qmi_tlv *tlv, unsigned id, void *buf, size_t len);\n"
|
|
"int qmi_tlv_set_array(struct qmi_tlv *tlv, unsigned id, unsigned len_size, void *buf, size_t len, size_t size);\n"
|
|
"\n");
|
|
qmi_const_header(hfp);
|
|
qmi_struct_header(hfp, package);
|
|
qmi_message_header(hfp, package);
|
|
guard_footer(hfp);
|
|
|
|
fclose(hfp);
|
|
fclose(sfp);
|
|
|
|
return 0;
|
|
}
|