-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathenvironment.c
More file actions
247 lines (221 loc) · 4.78 KB
/
environment.c
File metadata and controls
247 lines (221 loc) · 4.78 KB
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
/*
* This file is part of Jehanne.
*
* Copyright (C) 2017 Giacomo Tesio <giacomo@tesio.it>
*
* This is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, version 3 of the License.
*
* Jehanne is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Jehanne. If not, see <http://www.gnu.org/licenses/>.
*/
#include <u.h>
#include <lib9.h>
#include <envvars.h>
#include <posix.h>
#include "internal.h"
static char* __env[1] = { nil };
char **environ = &__env[0]; /* how to map this to #e? */
/* In POSIX, getenv returns strings that must not be freed by the caller.
* In Jehanne (and Plan9) getenv returns strings obtained with malloc().
*
* Thus we need a more complex managememnt to avoid that calling
* getenv("PATH") several times would leak memory.
*
* We use a sorted linked list of outputs returned by Jehanne's getenv
* and search it before actually calling it.
*/
#define MAX_ENVNAME_LEN (127+5+1)
typedef struct EnvVar EnvVar;
struct EnvVar
{
char* name;
char* value;
EnvVar* next;
};
static RWLock list_lock;
static EnvVar* list_start;
static void
free_env(EnvVar* e)
{
free(e->name);
free(e->value);
free(e);
}
static void
put_in_list(EnvVar* newenv)
{
int cmp;
EnvVar *e, **o;
wlock(&list_lock);
e = list_start;
o = &list_start;
while(e != nil){
cmp = strcmp(e->name, newenv->name);
if(cmp < 0){
// check next (alphabetically sorted)
o = &e->next;
e = e->next;
} else {
if(cmp > 0){
// reached the next variable
newenv->next = e;
} else {
// found the variable to replace
newenv->next = e->next;
free_env(e);
}
e = nil; // quit the lookup
}
}
*o = newenv;
wunlock(&list_lock);
}
static int
write_env_file(const char *name, const char *value, int size)
{
int f;
char buf[MAX_ENVNAME_LEN];
snprint(buf, sizeof(buf), "/env/%s", name);
f = ocreate(buf, OWRITE, 664);
if(f < 0)
return 0;
if(write(f, value, size) < 0){
close(f);
return 0;
}
close(f);
return 1;
}
int
POSIX_setenv(int *errnop, const char *name, const char *value, int overwrite)
{
EnvVar* e;
if(name == nil || name[0] == 0 || strchr(name, '=') != nil){
*errnop = PosixEINVAL;
return -1;
}
if(!overwrite && POSIX_getenv(errnop, name) != nil)
return 0;
if(strlen(name) > 127){
*errnop = PosixENOMEM;
return -1;
}
e = malloc(sizeof(EnvVar));
e->next = nil;
e->value = strdup(value); // see free_env
e->name = strdup(name);
if(!write_env_file(name, e->value, strlen(value) + 1)){
free_env(e);
*errnop = PosixENOMEM;
return -1;
}
put_in_list(e);
return 0;
}
int
POSIX_unsetenv(int *errnop, const char *name)
{
EnvVar* e, **o;
char buf[MAX_ENVNAME_LEN];
if(name == nil || name[0] == 0 || strchr(name, '=') != nil){
*errnop = PosixEINVAL;
return -1;
}
if(POSIX_getenv(errnop, name) == nil)
return 0;
e = malloc(sizeof(EnvVar));
wlock(&list_lock);
e = list_start;
o = &list_start;
while(e != nil){
if(strcmp(e->name, name) == 0){
*o = e->next;
free(e);
e = nil; // done
} else {
o = &e->next;
e = *o;
}
}
wunlock(&list_lock);
snprint(buf, sizeof(buf), "/env/%s", name);
remove(buf);
return 0;
}
char *
POSIX_getenv(int *errnop, const char *name)
{
EnvVar* e;
if(name == nil || name[0] == 0 || strchr(name, '=') != nil){
*errnop = PosixEINVAL;
return nil;
}
if(strlen(name) > 127){
*errnop = PosixEINVAL;
return nil;
}
rlock(&list_lock);
e = list_start;
while(e != nil){
if(strcmp(name, e->name) == 0)
break;
e = e->next;
}
runlock(&list_lock);
if(e != nil)
return e->value;
e = malloc(sizeof(EnvVar));
if(e == nil){
*errnop = PosixEINVAL;
return nil;
}
e->next = nil;
e->value = nil; // see free_env
e->name = strdup(name);
if(e->name == nil){
free_env(e);
*errnop = PosixEINVAL;
return nil;
}
e->value = getenv(name);
if(e->value == nil){
free_env(e);
return nil;
}
put_in_list(e);
return e->value;
}
void
__libposix_setup_exec_environment(char * const *env)
{
int fd, len;
char **e, *start, *end;
char ename[MAX_ENVNAME_LEN];
if(env == nil || env[0] == nil)
return;
strcpy(ename, "#e/");
for(e = (char **)env; (start = *e); e++) {
end = strchr(start, '=');
if(!end || start==end)
continue; /* not in "var=val" format */
len = end-start;
if(len > 127)
len = 127;
memcpy(ename+3, start, len);
ename[3+len] = 0;
fd = ocreate(ename, OWRITE, 0666);
if(fd < 0)
continue;
end++; /* after '=' */
len = strlen(end);
sys_pwrite(fd, end, len, -1);
sys_close(fd);
}
}