2021-08-04 13:06:24 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2008-05-07 23:47:17 +00:00
|
|
|
/*
|
|
|
|
* * Copyright (C) 2007 Ubiquiti Networks, Inc.
|
2021-08-04 13:06:24 +02:00
|
|
|
*/
|
2008-05-07 23:47:17 +00:00
|
|
|
|
|
|
|
#ifndef FW_INCLUDED
|
|
|
|
#define FW_INCLUDED
|
|
|
|
|
2019-07-26 14:45:32 +02:00
|
|
|
#include <stdint.h>
|
2008-05-07 23:47:17 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#define MAGIC_HEADER "OPEN"
|
|
|
|
#define MAGIC_PART "PART"
|
|
|
|
#define MAGIC_END "END."
|
2018-01-24 01:38:14 +01:00
|
|
|
#define MAGIC_ENDS "ENDS"
|
2008-05-07 23:47:17 +00:00
|
|
|
|
|
|
|
#define MAGIC_LENGTH 4
|
2019-07-19 21:34:16 +02:00
|
|
|
#define PART_NAME_LENGTH 16
|
2008-05-07 23:47:17 +00:00
|
|
|
|
|
|
|
typedef struct header {
|
2021-04-09 10:43:07 +02:00
|
|
|
char magic[MAGIC_LENGTH];
|
|
|
|
char version[256];
|
2008-05-07 23:47:17 +00:00
|
|
|
u_int32_t crc;
|
|
|
|
u_int32_t pad;
|
|
|
|
} __attribute__ ((packed)) header_t;
|
|
|
|
|
|
|
|
typedef struct part {
|
2021-04-09 10:43:07 +02:00
|
|
|
char magic[MAGIC_LENGTH];
|
|
|
|
char name[PART_NAME_LENGTH];
|
2019-07-26 14:45:32 +02:00
|
|
|
uint8_t pad[12];
|
2008-05-07 23:47:17 +00:00
|
|
|
u_int32_t memaddr;
|
|
|
|
u_int32_t index;
|
|
|
|
u_int32_t baseaddr;
|
|
|
|
u_int32_t entryaddr;
|
|
|
|
u_int32_t data_size;
|
|
|
|
u_int32_t part_size;
|
|
|
|
} __attribute__ ((packed)) part_t;
|
|
|
|
|
|
|
|
typedef struct part_crc {
|
|
|
|
u_int32_t crc;
|
|
|
|
u_int32_t pad;
|
|
|
|
} __attribute__ ((packed)) part_crc_t;
|
|
|
|
|
|
|
|
typedef struct signature {
|
2019-07-26 14:45:32 +02:00
|
|
|
uint8_t magic[MAGIC_LENGTH];
|
2008-05-07 23:47:17 +00:00
|
|
|
u_int32_t crc;
|
|
|
|
u_int32_t pad;
|
|
|
|
} __attribute__ ((packed)) signature_t;
|
|
|
|
|
2018-01-24 01:38:14 +01:00
|
|
|
typedef struct signature_rsa {
|
2019-07-26 14:45:32 +02:00
|
|
|
uint8_t magic[MAGIC_LENGTH];
|
2018-01-24 01:38:14 +01:00
|
|
|
// u_int32_t crc;
|
|
|
|
unsigned char rsa_signature[256];
|
|
|
|
u_int32_t pad;
|
|
|
|
} __attribute__ ((packed)) signature_rsa_t;
|
|
|
|
|
2008-05-07 23:47:17 +00:00
|
|
|
#define VERSION "1.2"
|
|
|
|
|
|
|
|
#define INFO(...) fprintf(stdout, __VA_ARGS__)
|
|
|
|
#define ERROR(...) fprintf(stderr, "ERROR: "__VA_ARGS__)
|
|
|
|
#define WARN(...) fprintf(stderr, "WARN: "__VA_ARGS__)
|
|
|
|
#define DEBUG(...) do {\
|
|
|
|
if (debug) \
|
|
|
|
fprintf(stdout, "DEBUG: "__VA_ARGS__); \
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
#endif
|