mirror of
https://agent.ghink.cloud/wb2osz/direwolf
synced 2025-04-03 19:28:40 +00:00
this step unify the builing system for all platforms (windows, linux, osx and *BSD) * Requirements: - gcc/clang (C/C++ compiler) (in debian build-essential) - cmake (in debian cmake) - git if you build from source (in debian git) - posix threads ** Requirements on *BSD/macOS: - portaudio ** Optional Requirements: - gpsd (in debian libgps-dev) - libhamlib (in debian libhamlib-dev) ** Optional Requirements in Linux - udev (in debian libudev-dev) - alsa (in debian libasound2-dev) * Main changes: - version is now set only on CMakeLists.txt and automatically used on the code - cpu flags are auto-discovered in the default build and it works on gcc/clang/msvc on x86/x86_64/arm; you can force cpu flags with -DFORCE_SSE=1 for example (see CMakeLists.txt on root) - use a more "complex" tag on generic.conf to facilitate parsing by cmake (not more platform dependent). Now it is %C% or %R% for example - target `tocalls-symbols` is now called `data-update` - created debian/ directory to contains files to use debuild * Example to build: mkdir build && cd build cmake .. make make install make install-conf then you have the binary files on src/ and in the system directory * CMake options (see the head of CMakeLists.txt) - FORCE_SSE force sse instruction - FORCE_SSSE3 force ssse3 instruction - FORCE_SSE41 force ssse4.1 instruction - OPTIONAL_TEST compile optional test (might be broken) - BUILD_TESTING enable tests (ctest framework) - CMAKE_INSTALL_PREFIX if you want to change your install path prefix for example: cmake .. -DOPTIONAL_TEST=ON
121 lines
3.7 KiB
C
121 lines
3.7 KiB
C
|
|
|
|
/*------------------------------------------------------------------
|
|
*
|
|
* Module: strlcpy.c
|
|
*
|
|
* Purpose: Safe string functions to guard against buffer overflow.
|
|
*
|
|
* Description: The size of character strings, especially when coming from the
|
|
* outside, can sometimes exceed a fixed size storage area.
|
|
*
|
|
* There was one case where a MIC-E format packet had an enormous
|
|
* comment that exceeded an internal buffer of 256 characters,
|
|
* resulting in a crash.
|
|
*
|
|
* We are not always meticulous about checking sizes to avoid overflow.
|
|
* Use of these functions, instead of strcpy and strcat, should
|
|
* help avoid issues.
|
|
*
|
|
* Orgin: From OpenBSD as the copyright notice indicates.
|
|
* The GNU folks didn't think it was appropriate for inclusion
|
|
* in glibc. https://lwn.net/Articles/507319/
|
|
*
|
|
* Modifications: Added extra debug output when strings are truncated.
|
|
* Not sure if I will leave this in the release version
|
|
* or just let it happen silently.
|
|
*
|
|
*---------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/* $NetBSD: strlcpy.c,v 1.5 2014/10/31 18:59:32 spz Exp $ */
|
|
/* from NetBSD: strlcpy.c,v 1.14 2003/10/27 00:12:42 lukem Exp */
|
|
/* from OpenBSD: strlcpy.c,v 1.7 2003/04/12 21:56:39 millert Exp */
|
|
|
|
/*
|
|
* Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND TODD C. MILLER DISCLAIMS ALL
|
|
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
|
|
* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL TODD C. MILLER BE LIABLE
|
|
* FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
#include "direwolf.h"
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "textcolor.h"
|
|
|
|
/*
|
|
* Copy src to string dst of size siz. At most siz-1 characters
|
|
* will be copied. Always NUL terminates (unless siz == 0).
|
|
* Returns strlen(src); if retval >= siz, truncation occurred.
|
|
*/
|
|
|
|
#if DEBUG_STRL
|
|
size_t strlcpy_debug(char *__restrict__ dst, const char *__restrict__ src, size_t siz, const char *file, const char *func, int line)
|
|
#else
|
|
size_t strlcpy_debug(char *__restrict__ dst, const char *__restrict__ src, size_t siz)
|
|
#endif
|
|
{
|
|
char *d = dst;
|
|
const char *s = src;
|
|
size_t n = siz;
|
|
size_t retval;
|
|
|
|
#if DEBUG_STRL
|
|
if (dst == NULL) {
|
|
text_color_set (DW_COLOR_ERROR);
|
|
dw_printf ("ERROR: strlcpy dst is NULL. (%s %s %d)\n", file, func, line);
|
|
return (0);
|
|
}
|
|
if (src == NULL) {
|
|
text_color_set (DW_COLOR_ERROR);
|
|
dw_printf ("ERROR: strlcpy src is NULL. (%s %s %d)\n", file, func, line);
|
|
return (0);
|
|
}
|
|
if (siz == 1 || siz == 4) {
|
|
text_color_set (DW_COLOR_ERROR);
|
|
dw_printf ("Suspicious strlcpy siz. Is it using sizeof a pointer variable? (%s %s %d)\n", file, func, line);
|
|
}
|
|
#endif
|
|
|
|
/* Copy as many bytes as will fit */
|
|
if (n != 0 && --n != 0) {
|
|
do {
|
|
if ((*d++ = *s++) == 0)
|
|
break;
|
|
} while (--n != 0);
|
|
}
|
|
|
|
/* Not enough room in dst, add NUL and traverse rest of src */
|
|
if (n == 0) {
|
|
if (siz != 0)
|
|
*d = '\0'; /* NUL-terminate dst */
|
|
while (*s++)
|
|
;
|
|
}
|
|
|
|
retval = s - src - 1; /* count does not include NUL */
|
|
|
|
#if DEBUG_STRL
|
|
if (retval >= siz) {
|
|
text_color_set (DW_COLOR_ERROR);
|
|
dw_printf ("WARNING: strlcpy result length %d exceeds maximum length %d. (%s %s %d)\n",
|
|
(int)retval, (int)(siz-1), file, func, line);
|
|
}
|
|
#endif
|
|
return (retval);
|
|
}
|
|
|