2020-10-08 19:31:09 +01:00
|
|
|
/*
|
2021-06-08 04:13:45 +01:00
|
|
|
* nxdt_includes.h
|
2020-10-08 19:31:09 +01:00
|
|
|
*
|
2024-04-12 10:47:36 +01:00
|
|
|
* Copyright (c) 2020-2024, DarkMatterCore <pabloacurielz@gmail.com>.
|
2020-10-08 19:31:09 +01:00
|
|
|
*
|
|
|
|
* This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool).
|
|
|
|
*
|
2021-03-25 19:26:58 +00:00
|
|
|
* nxdumptool is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2020-10-08 19:31:09 +01:00
|
|
|
*
|
2021-03-25 19:26:58 +00:00
|
|
|
* nxdumptool is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2020-10-08 19:31:09 +01:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2021-03-25 19:26:58 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2020-10-08 19:31:09 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-06-08 04:13:45 +01:00
|
|
|
#ifndef __NXDT_INCLUDES_H__
|
|
|
|
#define __NXDT_INCLUDES_H__
|
2020-10-08 19:31:09 +01:00
|
|
|
|
2021-06-08 04:13:45 +01:00
|
|
|
/* C headers. */
|
2021-03-07 23:22:49 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <sys/stat.h>
|
2022-07-14 13:10:03 +01:00
|
|
|
#include <sys/param.h>
|
2023-12-20 19:32:48 +00:00
|
|
|
#include <fcntl.h>
|
2023-05-24 20:05:34 +01:00
|
|
|
#include <dirent.h>
|
2021-03-07 23:22:49 +00:00
|
|
|
#include <assert.h>
|
2021-03-30 20:30:10 +01:00
|
|
|
#include <unistd.h>
|
2021-03-07 23:22:49 +00:00
|
|
|
|
2021-03-24 17:25:19 +00:00
|
|
|
#ifndef __cplusplus
|
|
|
|
#include <stdatomic.h>
|
|
|
|
#else
|
|
|
|
#include <atomic>
|
|
|
|
#define _Atomic(X) std::atomic< X >
|
|
|
|
#endif
|
|
|
|
|
2021-06-08 04:13:45 +01:00
|
|
|
/* libnx header. */
|
|
|
|
#include <switch.h>
|
2021-03-07 23:22:49 +00:00
|
|
|
|
2022-07-12 01:27:03 +01:00
|
|
|
/* Internet operations. */
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
2021-06-08 04:13:45 +01:00
|
|
|
/* Global defines. */
|
|
|
|
#include "../defines.h"
|
2020-10-22 05:38:14 +01:00
|
|
|
|
2022-07-12 02:31:39 +01:00
|
|
|
/* File/socket based logger. */
|
2021-06-08 04:13:45 +01:00
|
|
|
#include "nxdt_log.h"
|
2020-10-13 03:46:59 +01:00
|
|
|
|
2021-07-21 16:04:18 +01:00
|
|
|
/* Configuration handler. */
|
|
|
|
#include "config.h"
|
|
|
|
|
2021-07-25 06:37:13 +01:00
|
|
|
/* HTTP requests handler. */
|
|
|
|
#include "http.h"
|
|
|
|
|
2021-06-08 04:13:45 +01:00
|
|
|
/* USB Mass Storage support. */
|
|
|
|
#include "ums.h"
|
2021-03-24 17:25:19 +00:00
|
|
|
|
2022-06-25 20:28:31 +01:00
|
|
|
/* SHA3 checksum calculator. */
|
|
|
|
#include "sha3.h"
|
|
|
|
|
2022-07-03 19:32:35 +01:00
|
|
|
/* LZ4 (dec)compression. */
|
|
|
|
#define LZ4_STATIC_LINKING_ONLY /* Required by LZ4 to enable in-place decompression. */
|
|
|
|
#include "lz4.h"
|
|
|
|
|
2023-05-24 20:05:34 +01:00
|
|
|
/// Used to store version numbers expressed in dot notation: "{major}.{minor}.{micro}-{major_relstep}.{minor_relstep}".
|
2023-05-26 10:01:34 +01:00
|
|
|
/// Used by system version fields. 16-bit long relstep values were used by system version fields prior to HOS 3.0.0.
|
2020-10-08 19:31:09 +01:00
|
|
|
typedef struct {
|
|
|
|
union {
|
2022-03-17 12:37:24 +00:00
|
|
|
u32 value;
|
2020-10-08 19:31:09 +01:00
|
|
|
struct {
|
2023-05-26 10:01:34 +01:00
|
|
|
union {
|
|
|
|
u16 relstep;
|
|
|
|
struct {
|
|
|
|
u16 minor_relstep : 8;
|
|
|
|
u16 major_relstep : 8;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
u16 micro : 4;
|
|
|
|
u16 minor : 6;
|
|
|
|
u16 major : 6;
|
2023-05-24 20:05:34 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
} SystemVersion;
|
|
|
|
|
|
|
|
NXDT_ASSERT(SystemVersion, 0x4);
|
|
|
|
|
|
|
|
/// Used to store version numbers expressed in dot notation: "{release}.{private}".
|
|
|
|
/// Used by application version fields.
|
|
|
|
typedef struct {
|
|
|
|
union {
|
|
|
|
u32 value;
|
2022-03-17 12:37:24 +00:00
|
|
|
struct {
|
2023-05-24 20:05:34 +01:00
|
|
|
u32 private_ver : 16;
|
|
|
|
u32 release_ver : 16;
|
|
|
|
};
|
2020-10-08 19:31:09 +01:00
|
|
|
};
|
2023-05-24 20:05:34 +01:00
|
|
|
} ApplicationVersion;
|
2020-10-08 19:31:09 +01:00
|
|
|
|
2023-05-24 20:05:34 +01:00
|
|
|
NXDT_ASSERT(ApplicationVersion, 0x4);
|
2021-03-24 17:25:19 +00:00
|
|
|
|
2020-10-08 19:31:09 +01:00
|
|
|
/// Used to store version numbers expressed in dot notation: "{major}.{minor}.{micro}-{relstep}".
|
2023-05-26 10:01:34 +01:00
|
|
|
/// Used by SDK version fields.
|
2020-10-08 19:31:09 +01:00
|
|
|
typedef struct {
|
|
|
|
union {
|
2022-03-17 12:37:24 +00:00
|
|
|
u32 value;
|
2020-10-08 19:31:09 +01:00
|
|
|
struct {
|
|
|
|
u32 relstep : 8;
|
|
|
|
u32 micro : 8;
|
|
|
|
u32 minor : 8;
|
|
|
|
u32 major : 8;
|
|
|
|
};
|
|
|
|
};
|
2022-03-17 12:37:24 +00:00
|
|
|
} SdkAddOnVersion;
|
2020-10-08 19:31:09 +01:00
|
|
|
|
2022-03-17 12:37:24 +00:00
|
|
|
NXDT_ASSERT(SdkAddOnVersion, 0x4);
|
2021-03-24 17:25:19 +00:00
|
|
|
|
2023-05-24 20:05:34 +01:00
|
|
|
/// Convenient wrapper for all version structs.
|
|
|
|
typedef struct {
|
|
|
|
union {
|
|
|
|
u32 value;
|
|
|
|
SystemVersion system_version;
|
|
|
|
ApplicationVersion application_version;
|
|
|
|
SdkAddOnVersion sdk_addon_version;
|
|
|
|
};
|
|
|
|
} Version;
|
|
|
|
|
|
|
|
NXDT_ASSERT(Version, 0x4);
|
|
|
|
|
2021-06-08 04:13:45 +01:00
|
|
|
#endif /* __NXDT_INCLUDES_H__ */
|