2017-04-27 18:18:03 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2018-07-18 09:04:35 +00:00
|
|
|
/* unix.c */
|
|
|
|
/* implements UNIX specific functions */
|
2012-09-09 16:06:44 +00:00
|
|
|
#include "dive.h"
|
2019-08-05 18:07:10 +00:00
|
|
|
#include "file.h"
|
2018-05-11 15:25:41 +00:00
|
|
|
#include "subsurface-string.h"
|
2022-03-12 09:44:37 +00:00
|
|
|
#include "device.h"
|
|
|
|
#include "libdivecomputer.h"
|
2014-04-14 21:33:46 +00:00
|
|
|
#include "membuffer.h"
|
2020-10-25 13:10:52 +00:00
|
|
|
#include <stdlib.h>
|
2013-09-16 21:04:42 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <fnmatch.h>
|
2013-12-19 13:00:50 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <fcntl.h>
|
2014-04-14 21:33:46 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <pwd.h>
|
2019-08-05 18:07:10 +00:00
|
|
|
#include <zip.h>
|
2023-04-29 09:43:17 +00:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
static std::string system_default_path()
|
|
|
|
{
|
|
|
|
std::string home(getenv("HOME"));
|
|
|
|
if (home.empty())
|
|
|
|
home = "~";
|
|
|
|
return home + "/.subsurface";
|
|
|
|
}
|
|
|
|
|
|
|
|
static std::string make_default_filename()
|
|
|
|
{
|
|
|
|
std::string user = getenv("LOGNAME");
|
|
|
|
if (user.empty())
|
|
|
|
user = "username";
|
|
|
|
return system_default_path() + "/" + user + ".xml";
|
|
|
|
}
|
|
|
|
|
2014-08-27 13:00:10 +00:00
|
|
|
// the DE should provide us with a default font and font size...
|
2018-07-18 09:04:35 +00:00
|
|
|
const char unix_system_divelist_default_font[] = "Sans";
|
|
|
|
const char *system_divelist_default_font = unix_system_divelist_default_font;
|
2014-08-27 13:00:10 +00:00
|
|
|
double system_divelist_default_font_size = -1.0;
|
2011-11-24 06:56:57 +00:00
|
|
|
|
2024-05-04 16:53:41 +00:00
|
|
|
void subsurface_OS_pref_setup()
|
2018-06-20 19:45:53 +00:00
|
|
|
{
|
|
|
|
// nothing
|
|
|
|
}
|
|
|
|
|
2023-04-29 09:43:17 +00:00
|
|
|
bool subsurface_ignore_font(const char *)
|
2014-08-27 13:00:10 +00:00
|
|
|
{
|
|
|
|
// there are no old default fonts to ignore
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2024-05-04 16:53:41 +00:00
|
|
|
const char *system_default_directory()
|
2015-10-06 10:10:18 +00:00
|
|
|
{
|
2023-04-29 09:43:17 +00:00
|
|
|
static const std::string path = system_default_path();
|
|
|
|
return path.c_str();
|
2015-10-06 10:10:18 +00:00
|
|
|
}
|
|
|
|
|
2024-05-04 16:53:41 +00:00
|
|
|
const char *system_default_filename()
|
2015-10-06 10:10:18 +00:00
|
|
|
{
|
2023-04-29 09:43:17 +00:00
|
|
|
static const std::string fn = make_default_filename();
|
|
|
|
return fn.c_str();
|
2015-10-06 10:10:18 +00:00
|
|
|
}
|
|
|
|
|
2018-08-27 17:32:14 +00:00
|
|
|
int enumerate_devices(device_callback_t callback, void *userdata, unsigned int transport)
|
2013-09-16 21:04:42 +00:00
|
|
|
{
|
2014-05-18 05:13:23 +00:00
|
|
|
int index = -1, entries = 0;
|
2013-09-16 21:04:42 +00:00
|
|
|
DIR *dp = NULL;
|
|
|
|
struct dirent *ep = NULL;
|
2013-10-25 23:56:27 +00:00
|
|
|
FILE *file;
|
|
|
|
char *line = NULL;
|
|
|
|
size_t len;
|
2018-08-27 17:32:14 +00:00
|
|
|
if (transport & DC_TRANSPORT_SERIAL) {
|
2014-05-18 04:29:40 +00:00
|
|
|
const char *dirname = "/dev";
|
2018-07-18 09:04:35 +00:00
|
|
|
#ifdef __OpenBSD__
|
|
|
|
const char *patterns[] = {
|
|
|
|
"ttyU*",
|
2023-04-29 16:02:13 +00:00
|
|
|
"ttyC*"
|
2018-07-18 09:04:35 +00:00
|
|
|
};
|
|
|
|
#else
|
2014-05-18 04:29:40 +00:00
|
|
|
const char *patterns[] = {
|
|
|
|
"ttyUSB*",
|
|
|
|
"ttyS*",
|
|
|
|
"ttyACM*",
|
2023-04-29 16:02:13 +00:00
|
|
|
"rfcomm*"
|
2014-05-18 04:29:40 +00:00
|
|
|
};
|
2018-07-18 09:04:35 +00:00
|
|
|
#endif
|
2014-05-18 04:29:40 +00:00
|
|
|
|
|
|
|
dp = opendir(dirname);
|
|
|
|
if (dp == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
2013-09-16 21:04:42 +00:00
|
|
|
|
2014-05-18 04:29:40 +00:00
|
|
|
while ((ep = readdir(dp)) != NULL) {
|
2023-04-29 16:02:13 +00:00
|
|
|
for (const char *pattern: patterns) {
|
|
|
|
if (fnmatch(pattern, ep->d_name, 0) == 0) {
|
|
|
|
std::string filename = std::string(dirname) + "/" + ep->d_name;
|
|
|
|
callback(filename.c_str(), userdata);
|
|
|
|
if (is_default_dive_computer_device(filename.c_str()))
|
2014-05-18 05:13:23 +00:00
|
|
|
index = entries;
|
|
|
|
entries++;
|
2014-05-18 04:29:40 +00:00
|
|
|
break;
|
2013-09-16 21:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-05-18 04:29:40 +00:00
|
|
|
closedir(dp);
|
2013-09-16 21:04:42 +00:00
|
|
|
}
|
2018-07-18 09:04:35 +00:00
|
|
|
#ifdef __linux__
|
2018-08-27 17:32:14 +00:00
|
|
|
if (transport & DC_TRANSPORT_USBSTORAGE) {
|
2014-05-18 05:13:23 +00:00
|
|
|
int num_uemis = 0;
|
2014-05-18 04:29:40 +00:00
|
|
|
file = fopen("/proc/mounts", "r");
|
|
|
|
if (file == NULL)
|
|
|
|
return index;
|
|
|
|
|
|
|
|
while ((getline(&line, &len, file)) != -1) {
|
|
|
|
char *ptr = strstr(line, "UEMISSDA");
|
2018-08-27 15:27:07 +00:00
|
|
|
if (!ptr)
|
|
|
|
ptr = strstr(line, "GARMIN");
|
2014-05-18 04:29:40 +00:00
|
|
|
if (ptr) {
|
|
|
|
char *end = ptr, *start = ptr;
|
|
|
|
while (start > line && *start != ' ')
|
|
|
|
start--;
|
|
|
|
if (*start == ' ')
|
|
|
|
start++;
|
|
|
|
while (*end != ' ' && *end != '\0')
|
|
|
|
end++;
|
|
|
|
|
|
|
|
*end = '\0';
|
|
|
|
|
2023-04-29 16:08:05 +00:00
|
|
|
callback(start, userdata);
|
2014-05-18 04:29:40 +00:00
|
|
|
|
2023-04-29 16:08:05 +00:00
|
|
|
if (is_default_dive_computer_device(start))
|
2014-05-18 05:13:23 +00:00
|
|
|
index = entries;
|
|
|
|
entries++;
|
|
|
|
num_uemis++;
|
2014-05-18 04:29:40 +00:00
|
|
|
}
|
2014-02-28 04:09:57 +00:00
|
|
|
}
|
2014-05-18 04:29:40 +00:00
|
|
|
free(line);
|
|
|
|
fclose(file);
|
2014-05-18 05:13:23 +00:00
|
|
|
if (num_uemis == 1 && entries == 1) /* if we found only one and it's a mounted Uemis, pick it */
|
|
|
|
index = 0;
|
2014-05-18 04:29:40 +00:00
|
|
|
}
|
2018-07-18 09:04:35 +00:00
|
|
|
#endif
|
2013-09-16 21:04:42 +00:00
|
|
|
return index;
|
|
|
|
}
|
2013-12-19 13:00:50 +00:00
|
|
|
|
|
|
|
/* NOP wrappers to comform with windows.c */
|
2014-02-16 21:25:02 +00:00
|
|
|
int subsurface_rename(const char *path, const char *newpath)
|
|
|
|
{
|
|
|
|
return rename(path, newpath);
|
|
|
|
}
|
|
|
|
|
2013-12-19 13:00:50 +00:00
|
|
|
int subsurface_open(const char *path, int oflags, mode_t mode)
|
|
|
|
{
|
|
|
|
return open(path, oflags, mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
FILE *subsurface_fopen(const char *path, const char *mode)
|
|
|
|
{
|
|
|
|
return fopen(path, mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
void *subsurface_opendir(const char *path)
|
|
|
|
{
|
|
|
|
return (void *)opendir(path);
|
|
|
|
}
|
|
|
|
|
2014-11-13 17:36:08 +00:00
|
|
|
int subsurface_access(const char *path, int mode)
|
|
|
|
{
|
|
|
|
return access(path, mode);
|
|
|
|
}
|
|
|
|
|
2017-02-24 07:06:48 +00:00
|
|
|
int subsurface_stat(const char* path, struct stat* buf)
|
|
|
|
{
|
|
|
|
return stat(path, buf);
|
|
|
|
}
|
|
|
|
|
2013-12-19 13:00:50 +00:00
|
|
|
struct zip *subsurface_zip_open_readonly(const char *path, int flags, int *errorp)
|
|
|
|
{
|
|
|
|
return zip_open(path, flags, errorp);
|
|
|
|
}
|
|
|
|
|
|
|
|
int subsurface_zip_close(struct zip *zip)
|
|
|
|
{
|
|
|
|
return zip_close(zip);
|
|
|
|
}
|
2014-03-25 14:55:56 +00:00
|
|
|
|
|
|
|
/* win32 console */
|
2024-05-04 16:53:41 +00:00
|
|
|
void subsurface_console_init()
|
2014-03-25 14:55:56 +00:00
|
|
|
{
|
|
|
|
/* NOP */
|
|
|
|
}
|
|
|
|
|
2024-05-04 16:53:41 +00:00
|
|
|
void subsurface_console_exit()
|
2014-03-25 14:55:56 +00:00
|
|
|
{
|
|
|
|
/* NOP */
|
|
|
|
}
|
2016-03-25 08:21:45 +00:00
|
|
|
|
|
|
|
bool subsurface_user_is_root()
|
|
|
|
{
|
2018-02-17 20:21:16 +00:00
|
|
|
return geteuid() == 0;
|
2016-03-25 08:21:45 +00:00
|
|
|
}
|