1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
|
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <time.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <pwd.h>
#include <libgen.h>
#ifdef HAVE_SYSTEMD
# include <systemd/sd-daemon.h>
#endif
#ifdef HAVE_WS2TCPIP_H
# include <ws2tcpip.h>
#endif
#include <Ecore.h>
#include <ecore_private.h>
#include "Ecore_Con.h"
#include "ecore_con_private.h"
#ifndef _WIN32
static const char *
_ecore_con_local_path_get(void)
{
static char *homedir = NULL;
if (homedir) return homedir;
#if defined(HAVE_GETUID) && defined(HAVE_GETEUID)
if (getuid() == geteuid()) homedir = getenv("XDG_RUNTIME_DIR");
#endif
if (!homedir) homedir = (char *)eina_environment_home_get();
if (!homedir) homedir = (char *)eina_environment_tmp_get();
return homedir;
}
#endif
EAPI char *
ecore_con_local_path_new(Eina_Bool is_system, const char *name, int port)
{
#if _WIN32
char buf[256 - sizeof(PIPE_NS)] = "";
/* note: using '!' instead of '|' since at least on wine '|' causes
* ERROR_INVALID_NAME
*/
if (!is_system)
{
TCHAR user[sizeof(buf) - sizeof("ecore!u!n!1")] = "unknown";
DWORD userlen = sizeof(user);
if (!GetUserName(user, &userlen))
{
char *msg = _efl_net_windows_error_msg_get(GetLastError());
ERR("GetUserName(%p, %lu): %s", user, userlen, msg);
free(msg);
}
if (port < 0)
snprintf(buf, sizeof(buf), "ecore!%s!%s", user, name);
else
snprintf(buf, sizeof(buf), "ecore!%s!%s!%d", user, name, port);
}
else
{
if (port < 0)
snprintf(buf, sizeof(buf), "ecore_service!%s", name);
else
snprintf(buf, sizeof(buf), "ecore_service!%s!%d", name, port);
}
return strdup(buf);
#else
char buf[4096];
const char *homedir;
EINA_SAFETY_ON_NULL_RETURN_VAL(name, NULL);
if (!is_system)
{
#if defined(HAVE_GETUID) && defined(HAVE_GETEUID)
if (getuid() == geteuid())
#endif
homedir = _ecore_con_local_path_get();
#if defined(HAVE_GETUID) && defined(HAVE_GETEUID)
else
{
struct passwd *pw = getpwent();
if ((!pw) || (!pw->pw_dir)) homedir = "/tmp";
else homedir = pw->pw_dir;
}
#endif
if (port < 0)
snprintf(buf, sizeof(buf), "%s/.ecore/%s",
homedir, name);
else
snprintf(buf, sizeof(buf), "%s/.ecore/%s/%i",
homedir, name, port);
return strdup(buf);
}
else
{
if (port < 0)
{
if (name[0] == '/')
return strdup(name);
else
{
homedir = eina_environment_tmp_get();
snprintf(buf, sizeof(buf), "%s/.ecore_service|%s",
homedir, name);
return strdup(buf);
}
}
else
{
if (name[0] == '/')
snprintf(buf, sizeof(buf), "%s|%i", name, port);
else
{
homedir = eina_environment_tmp_get();
snprintf(buf, sizeof(buf), "%s/.ecore_service|%s|%i",
homedir, name, port);
}
return strdup(buf);
}
}
#endif
}
void
_ecore_con_local_mkpath(const char *path, mode_t mode)
{
char *s, *d, *itr;
if (!path) return;
EINA_SAFETY_ON_TRUE_RETURN(path[0] != '/');
s = strdup(path);
EINA_SAFETY_ON_NULL_RETURN(s);
d = dirname(s);
EINA_SAFETY_ON_NULL_RETURN(d);
for (itr = d + 1; *itr != '\0'; itr++)
{
if (*itr == '/')
{
*itr = '\0';
if (mkdir(d, mode) != 0)
{
if (errno != EEXIST)
{
ERR("could not create parent directory '%s' of path '%s': %s", d, path, strerror(errno));
goto end;
}
}
*itr = '/';
}
}
if (mkdir(d, mode) != 0)
{
if (errno != EEXIST)
ERR("could not create parent directory '%s' of path '%s': %s", d, path, strerror(errno));
else
{
struct stat st;
if ((stat(d, &st) != 0) || (!S_ISDIR(st.st_mode)))
ERR("could not create parent directory '%s' of path '%s': exists but is not a directory", d, path);
}
}
end:
free(s);
}
|