forked from facebook/watchman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
envp.c
144 lines (110 loc) · 3.15 KB
/
envp.c
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
/* Copyright 2014-present Facebook, Inc.
* Licensed under the Apache License, Version 2.0 */
#include "watchman.h"
/* Constructs a hash table from the current process environment */
w_ht_t *w_envp_make_ht(void)
{
w_ht_t *ht;
uint32_t nenv, i;
const char *eq;
const char *ent;
w_string_t *key, *val, *str;
for (i = 0, nenv = 0; environ[i]; i++) {
nenv++;
}
ht = w_ht_new(nenv, &w_ht_dict_funcs);
for (i = 0; environ[i]; i++) {
ent = environ[i];
eq = strchr(ent, '=');
if (!eq) {
continue;
}
// slice name=value into a key and a value string
str = w_string_new(ent);
key = w_string_slice(str, 0, (uint32_t)(eq - ent));
val = w_string_slice(str, 1 + (uint32_t)(eq - ent),
(uint32_t)(str->len - (key->len + 1)));
// Replace rather than set, just in case we somehow have duplicate
// keys in our environment array.
w_ht_replace(ht, w_ht_ptr_val(key), w_ht_ptr_val(val));
// Release our slices
w_string_delref(str);
w_string_delref(key);
w_string_delref(val);
}
return ht;
}
/* Constructs an envp array from a hash table.
* The returned array occupies a single contiguous block of memory
* such that it can be released by a single call to free(3).
* The last element of the returned array is set to NULL for compatibility
* with posix_spawn() */
char **w_envp_make_from_ht(w_ht_t *ht, uint32_t *env_size)
{
int nele = w_ht_size(ht);
int len = (1 + nele) * sizeof(char*);
w_ht_iter_t iter;
char **envp;
char *buf;
uint32_t i = 0;
// Make a pass through to compute the required memory size
if (w_ht_first(ht, &iter)) do {
w_string_t *key = w_ht_val_ptr(iter.key);
w_string_t *val = w_ht_val_ptr(iter.value);
// key=value\0
len += key->len + 1 + val->len + 1;
} while (w_ht_next(ht, &iter));
*env_size = len;
envp = malloc(len);
if (!envp) {
return NULL;
}
buf = (char*)(envp + nele + 1);
// Now populate
if (w_ht_first(ht, &iter)) do {
w_string_t *key = w_ht_val_ptr(iter.key);
w_string_t *val = w_ht_val_ptr(iter.value);
envp[i++] = buf;
// key=value\0
memcpy(buf, key->buf, key->len);
buf += key->len;
memcpy(buf, "=", 1);
buf++;
memcpy(buf, val->buf, val->len);
buf += val->len;
*buf = 0;
buf++;
} while (w_ht_next(ht, &iter));
envp[nele] = NULL;
return envp;
}
void w_envp_set_bool(w_ht_t *envht, const char *key, bool val)
{
if (val) {
w_envp_set_cstring(envht, key, "true");
} else {
w_envp_unset(envht, key);
}
}
void w_envp_unset(w_ht_t *envht, const char *key)
{
w_string_t *kstr = w_string_new(key);
w_ht_del(envht, w_ht_ptr_val(kstr));
w_string_delref(kstr);
}
void w_envp_set(w_ht_t *envht, const char *key, w_string_t *val)
{
w_string_t *kstr = w_string_new(key);
w_ht_replace(envht, w_ht_ptr_val(kstr), w_ht_ptr_val(val));
w_string_delref(kstr);
}
void w_envp_set_cstring(w_ht_t *envht, const char *key, const char *val)
{
w_string_t *kstr = w_string_new(key);
w_string_t *vstr = w_string_new(val);
w_ht_replace(envht, w_ht_ptr_val(kstr), w_ht_ptr_val(vstr));
w_string_delref(kstr);
w_string_delref(vstr);
}
/* vim:ts=2:sw=2:et:
*/