dep-minizip-ng/mz_os_posix.c

493 lines
12 KiB
C
Raw Normal View History

/* mz_os_posix.c -- System functions for posix
2021-01-23 16:18:11 -08:00
part of the minizip-ng project
2023-02-16 13:14:21 -08:00
Copyright (C) Nathan Moinvaziri
2021-01-23 16:18:11 -08:00
https://github.com/zlib-ng/minizip-ng
This program is distributed under the terms of the same license as zlib.
See the accompanying LICENSE file for the full text of the license.
*/
#include "mz.h"
#include "mz_config.h"
#include "mz_strm.h"
#include "mz_os.h"
#include <stdio.h> /* rename */
#include <errno.h>
#if defined(HAVE_ICONV)
2024-11-01 16:30:39 -07:00
# include <iconv.h>
#endif
#if defined(HAVE_ICU)
# include <unicode/ucnv.h>
#endif
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
2020-11-18 11:21:17 +00:00
#ifndef _WIN32
2018-10-25 21:28:26 -07:00
# include <utime.h>
# include <unistd.h>
#endif
#if defined(__APPLE__)
# include <mach/clock.h>
# include <mach/mach.h>
#endif
#if defined(HAVE_GETRANDOM)
# include <sys/random.h>
#endif
#if defined(HAVE_LIBBSD)
# include <stdlib.h> /* arc4random_buf */
#endif
#ifndef MZ_PRESERVE_NATIVE_STRUCTURE
# define MZ_PRESERVE_NATIVE_STRUCTURE 1
#endif
/***************************************************************************/
#if defined(HAVE_ICONV)
char *mz_os_utf8_string_create(const char *string, int32_t encoding) {
iconv_t cd;
/// up to CP2147483647
char string_encoding[13];
const char *from_encoding = NULL;
2019-05-01 09:10:29 -07:00
size_t result = 0;
size_t string_length = 0;
size_t string_utf8_size = 0;
char *string_utf8 = NULL;
char *string_utf8_ptr = NULL;
2025-05-01 17:11:50 +02:00
if (!string || encoding <= 0)
return NULL;
2025-05-01 17:11:50 +02:00
if (encoding == MZ_ENCODING_UTF8)
from_encoding = "UTF-8";
2025-05-01 17:11:50 +02:00
else {
snprintf(string_encoding, sizeof(string_encoding), "CP%03" PRId32, encoding);
from_encoding = string_encoding;
}
cd = iconv_open("UTF-8", from_encoding);
if (cd == (iconv_t)-1)
return NULL;
string_length = strlen(string);
string_utf8_size = string_length * 2;
string_utf8 = (char *)calloc((int32_t)(string_utf8_size + 1), sizeof(char));
string_utf8_ptr = string_utf8;
2020-06-14 15:19:14 -07:00
if (string_utf8) {
2024-11-01 16:30:39 -07:00
result = iconv(cd, (char **)&string, &string_length, (char **)&string_utf8_ptr, &string_utf8_size);
}
2019-05-01 09:10:29 -07:00
iconv_close(cd);
2020-06-14 15:19:14 -07:00
if (result == (size_t)-1) {
free(string_utf8);
string_utf8 = NULL;
}
return string_utf8;
}
#elif defined(HAVE_ICU)
char *mz_os_utf8_string_create(const char *string, int32_t encoding) {
char string_encoding[16];
const char *from_encoding = NULL;
int32_t string_length = 0;
int32_t string_utf8_size = 0;
char *string_utf8 = NULL;
int32_t result = 0;
UErrorCode status = U_ZERO_ERROR;
if (!string || encoding <= 0)
return NULL;
if (encoding == MZ_ENCODING_UTF8)
from_encoding = "UTF-8";
else if (encoding == MZ_ENCODING_CODEPAGE_437)
from_encoding = "ibm-437";
else if (encoding == MZ_ENCODING_CODEPAGE_932)
from_encoding = "windows-932-2000";
else if (encoding == MZ_ENCODING_CODEPAGE_936)
from_encoding = "windows-936-2000";
else if (encoding == MZ_ENCODING_CODEPAGE_950)
from_encoding = "windows-950-2000";
else {
snprintf(string_encoding, sizeof(string_encoding), "windows-%" PRId32 "-2000", encoding);
from_encoding = string_encoding;
}
string_length = (int32_t)strlen(string);
string_utf8_size = string_length * 4 + 1;
string_utf8 = (char *)calloc(string_utf8_size, sizeof(char));
if (!string_utf8)
return NULL;
result = ucnv_convert("UTF-8", from_encoding, string_utf8, string_utf8_size, string, string_length, &status);
if (U_FAILURE(status) || result < 0) {
free(string_utf8);
string_utf8 = NULL;
}
return string_utf8;
}
#else
char *mz_os_utf8_string_create(const char *string, int32_t encoding) {
return strdup(string);
}
#endif
void mz_os_utf8_string_delete(char **string) {
2023-02-19 11:17:54 -08:00
if (string) {
free(*string);
*string = NULL;
}
}
/***************************************************************************/
#if defined(HAVE_GETRANDOM)
int32_t mz_os_rand(uint8_t *buf, int32_t size) {
int32_t left = size;
int32_t written = 0;
while (left > 0) {
written = getrandom(buf, left, 0);
if (written < 0)
return MZ_INTERNAL_ERROR;
buf += written;
left -= written;
}
return size - left;
}
#elif defined(HAVE_ARC4RANDOM_BUF)
int32_t mz_os_rand(uint8_t *buf, int32_t size) {
if (size < 0)
return 0;
arc4random_buf(buf, (uint32_t)size);
return size;
}
#elif defined(HAVE_ARC4RANDOM)
int32_t mz_os_rand(uint8_t *buf, int32_t size) {
int32_t left = size;
for (; left > 2; left -= 3, buf += 3) {
uint32_t val = arc4random();
buf[0] = (val) & 0xFF;
buf[1] = (val >> 8) & 0xFF;
buf[2] = (val >> 16) & 0xFF;
}
for (; left > 0; left--, buf++) {
*buf = arc4random() & 0xFF;
}
return size - left;
}
#else
2020-06-14 15:19:14 -07:00
int32_t mz_os_rand(uint8_t *buf, int32_t size) {
2018-07-22 12:15:04 -07:00
static unsigned calls = 0;
int32_t i = 0;
/* Ensure different random header each time */
2020-06-14 15:19:14 -07:00
if (++calls == 1) {
2024-11-01 16:30:39 -07:00
# define PI_SEED 3141592654UL
2018-07-22 12:15:04 -07:00
srand((unsigned)(time(NULL) ^ PI_SEED));
}
while (i < size)
buf[i++] = (rand() >> 7) & 0xff;
return size;
}
#endif
2020-06-14 15:19:14 -07:00
int32_t mz_os_rename(const char *source_path, const char *target_path) {
2018-07-31 10:06:12 -07:00
if (rename(source_path, target_path) == -1)
return MZ_EXIST_ERROR;
return MZ_OK;
}
int32_t mz_os_path_same_fs(const char *path_a, const char *path_b) {
struct stat sa, sb;
if (!path_a || !path_b)
return MZ_PARAM_ERROR;
if (stat(path_a, &sa) != 0 || stat(path_b, &sb) != 0)
return MZ_EXIST_ERROR;
return (sa.st_dev == sb.st_dev) ? MZ_OK : MZ_EXIST_ERROR;
}
2020-06-14 15:19:14 -07:00
int32_t mz_os_unlink(const char *path) {
2018-07-31 10:06:12 -07:00
if (unlink(path) == -1)
return MZ_EXIST_ERROR;
return MZ_OK;
}
2020-06-14 15:19:14 -07:00
int32_t mz_os_file_exists(const char *path) {
struct stat path_stat;
memset(&path_stat, 0, sizeof(path_stat));
if (stat(path, &path_stat) == 0)
2017-10-23 18:32:53 -07:00
return MZ_OK;
return MZ_EXIST_ERROR;
}
2020-06-14 15:19:14 -07:00
int64_t mz_os_get_file_size(const char *path) {
struct stat path_stat;
memset(&path_stat, 0, sizeof(path_stat));
2020-06-14 15:19:14 -07:00
if (stat(path, &path_stat) == 0) {
/* Stat returns size taken up by directory entry, so return 0 */
if (S_ISDIR(path_stat.st_mode))
return 0;
return path_stat.st_size;
}
return 0;
}
2020-06-14 15:19:14 -07:00
int32_t mz_os_get_file_date(const char *path, time_t *modified_date, time_t *accessed_date, time_t *creation_date) {
struct stat path_stat;
char *name = NULL;
int32_t err = MZ_INTERNAL_ERROR;
memset(&path_stat, 0, sizeof(path_stat));
2020-06-14 15:19:14 -07:00
if (strcmp(path, "-") != 0) {
/* Not all systems allow stat'ing a file with / appended */
name = strdup(path);
mz_path_remove_slash(name);
2020-06-14 15:19:14 -07:00
if (stat(name, &path_stat) == 0) {
2023-02-19 11:17:54 -08:00
if (modified_date)
*modified_date = path_stat.st_mtime;
2023-02-19 11:17:54 -08:00
if (accessed_date)
*accessed_date = path_stat.st_atime;
/* Creation date not supported */
2023-02-19 11:17:54 -08:00
if (creation_date)
*creation_date = 0;
err = MZ_OK;
}
free(name);
}
return err;
}
2020-06-14 15:19:14 -07:00
int32_t mz_os_set_file_date(const char *path, time_t modified_date, time_t accessed_date, time_t creation_date) {
struct utimbuf ut;
ut.actime = accessed_date;
ut.modtime = modified_date;
/* Creation date not supported */
MZ_UNUSED(creation_date);
if (utime(path, &ut) != 0)
return MZ_INTERNAL_ERROR;
return MZ_OK;
}
2020-06-14 15:19:14 -07:00
int32_t mz_os_get_file_attribs(const char *path, uint32_t *attributes) {
struct stat path_stat;
int32_t err = MZ_OK;
memset(&path_stat, 0, sizeof(path_stat));
if (stat(path, &path_stat) == -1)
err = MZ_INTERNAL_ERROR;
*attributes = path_stat.st_mode;
return err;
}
2020-06-14 15:19:14 -07:00
int32_t mz_os_set_file_attribs(const char *path, uint32_t attributes) {
int32_t err = MZ_OK;
2018-05-09 09:42:31 -07:00
if (chmod(path, (mode_t)attributes) == -1)
err = MZ_INTERNAL_ERROR;
return err;
}
2020-06-14 15:19:14 -07:00
int32_t mz_os_make_dir(const char *path) {
int32_t err = 0;
err = mkdir(path, 0755);
if (err != 0 && errno != EEXIST)
return MZ_INTERNAL_ERROR;
return MZ_OK;
}
2024-11-01 16:30:39 -07:00
DIR *mz_os_open_dir(const char *path) {
return opendir(path);
}
2024-11-01 16:30:39 -07:00
struct dirent *mz_os_read_dir(DIR *dir) {
2023-02-19 11:17:54 -08:00
if (!dir)
return NULL;
return readdir(dir);
}
2020-06-14 15:19:14 -07:00
int32_t mz_os_close_dir(DIR *dir) {
2023-02-19 11:17:54 -08:00
if (!dir)
return MZ_PARAM_ERROR;
if (closedir(dir) == -1)
return MZ_INTERNAL_ERROR;
return MZ_OK;
}
2025-10-06 01:32:36 +02:00
int32_t mz_os_is_dir_separator(char c) {
#if MZ_PRESERVE_NATIVE_STRUCTURE
// While not strictly adhering to 4.4.17.1,
// this preserves UNIX filesystem structure.
return c == '/';
#else
// While strictly adhering to 4.4.17.1,
// this corrupts UNIX filesystem structure (a filename with a '\\' will become a folder + a file).
return c == '\\' || c == '/';
#endif
}
2020-06-14 15:19:14 -07:00
int32_t mz_os_is_dir(const char *path) {
struct stat path_stat;
memset(&path_stat, 0, sizeof(path_stat));
stat(path, &path_stat);
2017-10-16 18:50:32 -07:00
if (S_ISDIR(path_stat.st_mode))
return MZ_OK;
return MZ_EXIST_ERROR;
2017-10-06 00:02:28 -07:00
}
2020-06-14 15:19:14 -07:00
int32_t mz_os_is_symlink(const char *path) {
struct stat path_stat;
memset(&path_stat, 0, sizeof(path_stat));
lstat(path, &path_stat);
if (S_ISLNK(path_stat.st_mode))
return MZ_OK;
return MZ_EXIST_ERROR;
}
int32_t mz_os_get_link_attribs(const char *path, uint32_t *attributes) {
struct stat path_stat;
int32_t err = MZ_OK;
memset(&path_stat, 0, sizeof(path_stat));
if (lstat(path, &path_stat) == -1)
err = MZ_INTERNAL_ERROR;
*attributes = path_stat.st_mode;
return err;
}
2020-06-14 15:19:14 -07:00
int32_t mz_os_make_symlink(const char *path, const char *target_path) {
#if !HAVE_SYMLINK
return MZ_SUPPORT_ERROR;
#else
if (symlink(target_path, path) != 0)
return MZ_INTERNAL_ERROR;
return MZ_OK;
#endif
}
2020-06-14 15:19:14 -07:00
int32_t mz_os_read_symlink(const char *path, char *target_path, int32_t max_target_path) {
#if !HAVE_READLINK
return MZ_SUPPORT_ERROR;
#else
size_t length = 0;
2019-05-05 09:28:49 -07:00
length = (size_t)readlink(path, target_path, max_target_path - 1);
if (length == (size_t)-1)
return MZ_EXIST_ERROR;
if (length >= (size_t)(max_target_path - 1))
return MZ_BUF_ERROR;
target_path[length] = 0;
return MZ_OK;
#endif
}
int32_t mz_os_get_temp_path(char *path, int32_t max_path, const char *prefix) {
const char *tmp_dir = NULL;
char *temp_path;
int32_t result = 0;
if (!path || max_path <= 0)
return MZ_PARAM_ERROR;
tmp_dir = getenv("TMPDIR");
if (!tmp_dir)
tmp_dir = getenv("TMP");
if (!tmp_dir)
tmp_dir = getenv("TEMP");
if (!tmp_dir)
tmp_dir = "/tmp";
/* Construct path for mkdtemp in the form <tmp_dir>/<prefix>XXXXXX */
temp_path = (char *)calloc(max_path, sizeof(char));
if (!temp_path)
return MZ_MEM_ERROR;
/* mkdtemp replaces XXXXXX with unique characters */
result = snprintf(temp_path, max_path, "%s/%sXXXXXX", tmp_dir, prefix ? prefix : "");
if (result < 0 || result >= max_path) {
free(temp_path);
return MZ_BUF_ERROR;
}
/* Create a temporary directory. */
if (!mkdtemp(temp_path)) {
free(temp_path);
return MZ_INTERNAL_ERROR;
}
/* Create a filename inside the temporary directory using current time */
result = snprintf(path, max_path, "%s/%" PRIdMAX "x", temp_path, (intmax_t)time(NULL));
if (result < 0 || result >= max_path) {
rmdir(temp_path);
free(temp_path);
return MZ_BUF_ERROR;
}
free(temp_path);
return MZ_OK;
}
2020-06-14 15:19:14 -07:00
uint64_t mz_os_ms_time(void) {
struct timespec ts;
2018-10-25 21:31:23 -07:00
#if defined(__APPLE__)
clock_serv_t cclock;
mach_timespec_t mts;
2018-09-18 20:25:48 -07:00
host_get_clock_service(mach_host_self(), CALENDAR_CLOCK, &cclock);
clock_get_time(cclock, &mts);
mach_port_deallocate(mach_task_self(), cclock);
2018-09-18 20:25:48 -07:00
ts.tv_sec = mts.tv_sec;
ts.tv_nsec = mts.tv_nsec;
#elif !defined(_POSIX_MONOTONIC_CLOCK) || _POSIX_MONOTONIC_CLOCK < 0
clock_gettime(CLOCK_REALTIME, &ts);
#elif _POSIX_MONOTONIC_CLOCK > 0
clock_gettime(CLOCK_MONOTONIC, &ts);
#else
if (sysconf(_SC_MONOTONIC_CLOCK) > 0)
clock_gettime(CLOCK_MONOTONIC, &ts);
else
clock_gettime(CLOCK_REALTIME, &ts);
#endif
2018-10-08 22:41:16 -07:00
return ((uint64_t)ts.tv_sec * 1000) + ((uint64_t)ts.tv_nsec / 1000000);
}