mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-20 08:00:31 +00:00
- all RAN code, CI code, configuration files, dockerfiles, in CSSL v1.0
- all deployment code (openshift, charts, ancillary files like shell
scripts), in MIT
- documentation in CC-BY-4.0
- exceptions might apply and are listed in NOTICE
- there is a new LICENSES folder with all licenses
- CONTRIBUTIONS.md has been updated accordingly
For automated changes based on OAI PL v1.1:
perl -i~ -0pe 's/\/\*.*Licensed to the OpenAirInterface.*openairinterface.org\n#?/\/*\n * SPDX-License-Identifier: LicenseRef-CSSL-1.0\n/s' **/*.{c,h,cpp}
perl -i~ -0pe 's/\/\*.*Licensed to the OpenAirInterface.*openairinterface.org\n#?/\/*\n * SPDX-License-Identifier: LicenseRef-CSSL-1.0\n/s' **/*.ts
perl -i~ -0pe 's/<!--.*Licensed to the OpenAirInterface.*openairinterface.org\n.*-->/<!-- SPDX-License-Identifier: LicenseRef-CSSL-1.0 -->/s' **/*.xml
The rest (cmake, files with missing license, cmake) manually.
78 lines
1.3 KiB
C
78 lines
1.3 KiB
C
/*
|
|
* SPDX-License-Identifier: LicenseRef-CSSL-1.0
|
|
*/
|
|
|
|
#include "byte_array.h"
|
|
|
|
#include <assert.h>
|
|
#include <string.h>
|
|
#include "common/utils/utils.h" // for malloc_or_fail
|
|
|
|
byte_array_t create_byte_array(const size_t len, const uint8_t* buffer)
|
|
{
|
|
byte_array_t result = {.len = len};
|
|
if (len) {
|
|
result.buf = malloc_or_fail(len);
|
|
memcpy(result.buf, buffer, len);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
byte_array_t copy_byte_array(byte_array_t src)
|
|
{
|
|
return create_byte_array(src.len, src.buf);
|
|
}
|
|
|
|
void free_byte_array(byte_array_t ba)
|
|
{
|
|
free(ba.buf);
|
|
}
|
|
|
|
bool eq_byte_array(const byte_array_t* m0, const byte_array_t* m1)
|
|
{
|
|
if (m0 == m1)
|
|
return true;
|
|
|
|
if (m0 == NULL || m1 == NULL)
|
|
return false;
|
|
|
|
if (m0->len != m1->len)
|
|
return false;
|
|
|
|
const int rc = memcmp(m0->buf, m1->buf, m0->len);
|
|
if (rc != 0)
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
byte_array_t cp_str_to_ba(const char* str)
|
|
{
|
|
assert(str != NULL);
|
|
|
|
const size_t sz = strlen(str);
|
|
|
|
byte_array_t dst = {.len = sz};
|
|
|
|
dst.buf = calloc(sz,sizeof(uint8_t));
|
|
assert(dst.buf != NULL && "Memory exhausted");
|
|
|
|
memcpy(dst.buf, str, sz);
|
|
|
|
return dst;
|
|
}
|
|
|
|
char* cp_ba_to_str(const byte_array_t ba)
|
|
{
|
|
assert(ba.len > 0);
|
|
|
|
const size_t sz = ba.len;
|
|
char* str = calloc(sz+1, sizeof(char));
|
|
assert(str != NULL && "Memory exhausted");
|
|
|
|
memcpy(str, ba.buf, sz);
|
|
str[sz] = '\0';
|
|
|
|
return str;
|
|
}
|