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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
|
/* See LICENSE file for copyright and license details. */
#ifndef LIBENV_H
#define LIBENV_H
#include <stdarg.h>
#include <stddef.h>
#include <stdint.h>
#if defined(__GNUC__)
# define LIBENV_MALLOC__ __attribute__((__malloc__, __warn_unused_result__))
# define LIBENV_RET_NONNULL__ __attribute__((__returns_nonnull__, __warn_unused_result__))
#else
# define LIBENV_MALLOC__
# define LIBENV_RET_NONNULL__
#endif
/**
* Environment variable class
*/
enum libenv_class {
/**
* Used to mark the end of a class list in
* for a variadic function
*/
LIBENV_END = 0,
/* Classes: */
/**
* Environment variables necessary for the
* graphical environment
*/
LIBENV_DISPLAY,
/**
* Environment variables that configure
* the graphical environment
*/
LIBENV_DISPLAY_CONFIG,
/**
* Environment variables that describe
* the desktop environment
*/
LIBENV_DESKTOP,
/**
* Environment variables that describe
* the terminal's capabilities
*/
LIBENV_TERMINAL_CAPS,
/**
* Environment variables that describe
* the terminals but is only meaningful
* for the local host
*/
LIBENV_LOCAL_TERMINAL,
/**
* Environment variables that configure
* the locale
*/
LIBENV_LOCALE,
/**
* Environment variables that configure
* the timezone
*/
LIBENV_TIMEZONE,
/**
* Environment variables that describe
* the current session
*
* This includes, for example, variables
* added by SSH to describe the remote
* connection
*
* This does not include display, desktop,
* or terminal information, nor does
* include information to identify the
* user
*/
LIBENV_SESSION,
/**
* Environment variables that configure
* the user's theme
*
* This excludes variables listed for
* LIBENV_THEME_PLUGIN, except in the
* hypothetical scenario where it names
* a plugin and additional configurations
*/
LIBENV_THEME_CONFIG,
/**
* Environment variables that describe
* the plugins the user's theme requires
*/
LIBENV_THEME_PLUGIN,
/**
* Environment variables that configure
* the user's Internet connection,
* including mainly proxies
*/
LIBENV_INTERNET,
/**
* Environment variables that configure
* the user's audio
*/
LIBENV_AUDIO,
/**
* Environment variables that describe
* any information gathered about the
* user from passwd(5) or login parameters
*/
LIBENV_USER,
/**
* Environment variables that default
* applications configured for the user
*/
LIBENV_APPLICATIONS,
/**
* Environment variables that configure
* preferences, for the user, for various
* applications
*/
LIBENV_PREFERENCES,
/**
* Environment variables that list directories
* configured system wide (but could be
* overwritten for the user)
*
* Environment variables with this classification
* also have at least LIBENV_PATH
*/
LIBENV_SYSTEM_PATHS,
/**
* Environment variables that list directories
* configured for the user
*
* Environment variables with this classification
* also have at least LIBENV_PATH
*/
LIBENV_USER_PATHS,
/**
* Environment variables that contain
* current and past working directories
*
* Environment variables with this classification
* also have at least LIBENV_PATH
*/
LIBENV_PWD,
/**
* Environment variables that contain
* information about the executed utility
*/
LIBENV_EXEC,
/**
* Environment variables that contain
* filesystem paths
*
* Any environment variable with this
* classification has at least one other
* classification
*/
LIBENV_PATH,
/**
* Environment variables that should be removed
* when entering a remote session
*
* Any environment variable with this
* classification has at least one other
* classification
*/
LIBENV_REMOTE_UNSAFE,
/**
* Environment variables that can safely be
* kept when entering a remote session
*
* Any environment variable with this
* classification has at least one other
* classification
*/
LIBENV_REMOTE_SAFE,
/**
* Environment variables that should be removed
* when logging in as a new user
*
* Any environment variable with this
* classification has at least one other
* classification
*/
LIBENV_LOGIN_UNSAFE,
/**
* Environment variables that can safely be
* kept when logging in as a new user
*
* Any environment variable with this
* classification has at least one other
* classification
*/
LIBENV_LOGIN_SAFE,
/**
* Environment variables that should be removed
* when escalating privileges
*
* Any environment variable with this
* classification has at least one other
* classification
*/
LIBENV_SU_UNSAFE,
/**
* Environment variables that can safely be
* kept when escalating privileges
*
* Any environment variable with this
* classification has at least one other
* classification
*/
LIBENV_SU_SAFE /* = 26 */
};
/**
* Environment variable name and classification
*/
struct libenv_variable {
/**
* The name of the environment variable
*/
const char *name;
/**
* Bitset of `enum libenv_class`'s the variable
* is classified under
*
* For any value `c` in `enum libenv_class` except
* `LIBENV_END`, `(.classes[c / 64] >> (c % 64)) & 1`
* is 1 iff the variable belongs to the class; however
* the application must verify that `c / 64` is less
* than the value output by `libenv_get_complete_list`
* to its first argument
*
* For the sake of simplicity, the lowest-valued bit
* in the first `uint64_t` is always 0
*/
const uint64_t *classes;
};
/**
* Get the list of recognised environment variable,
* the list will container their names and classes
*
* This function does not read the current environment,
* and may return unset environment variables
*
* @param nclasswords_out Output parameter for the number of elements in each returned
* `struct libenv_variable`'s `.classes`, may be `NULL`
* @param count_out Output parameter for the number of elements in the returned list,
* sans a terminal `{NULL, NULL}` element, may be `NULL`
* @return Statically allocated list of all recognised environment variables
*/
LIBENV_RET_NONNULL__ const struct libenv_variable *libenv_get_complete_list(size_t *nclasswords_out, size_t *count_out);
/**
* Get a list of environment variables names (which need not be set
* in the current environment) that fall into either of the specified
* variable classes
*
* @param classes_head,classes_tail List of variable classes, must end with `LIBENV_END`
* @return List of unique environment variable names, the caller should
* deallocate the returned list, when done with it, using the
* free(3) function, however the elements of the list are
* statically allocated and should not be deallocated or modified,
* `NULL` on failure
*
* @throws ENOMEM Not enough memory available to allocate the list
*/
LIBENV_MALLOC__ const char **libenv_vget_chosen_list(enum libenv_class, va_list);
/**
* Get a list of environment variables names (which need not be set
* in the current environment) that fall into either of the specified
* variable classes
*
* @param classes_head... List of variable classes, must end with `LIBENV_END`
* @return List of unique environment variable names, the caller should
* deallocate the returned list, when done with it, using the
* free(3) function, however the elements of the list are
* statically allocated and should not be deallocated or modified,
* `NULL` on failure
*
* @throws ENOMEM Not enough memory available to allocate the list
*/
LIBENV_MALLOC__ const char **libenv_get_chosen_list(enum libenv_class, ... /*, LIBENV_END */);
/**
* Given a list of environment variable names, remove the variables
* that belong to all of the specified environment variable classes
*
* @param variables `NULL`-terminated list environment variable names; may be `NULL`,
* which causes the function to return 0; unless `NULL` the list
* will be updated
* @param classes The list of environment variable classes, must end with `LIBENV_END`
* @return The new number of elements in `variables`; `variables[return]` will
* be `NULL` provided that `variables` itself it not `NULL`
*/
size_t libenv_vfilter_name_list(const char **, va_list);
/**
* Given a list of environment variable names, remove the variables
* that belong to all of the specified environment variable classes
*
* @param variables `NULL`-terminated list environment variable names; may be `NULL`,
* which causes the function to return 0; unless `NULL` the list
* will be updated
* @param ... The list of environment variable classes, must end with `LIBENV_END`,
* each argument must have the type `enum libenv_class`
* @return The new number of elements in `variables`; `variables[return]` will
* be `NULL` provided that `variables` itself it not `NULL`
*/
size_t libenv_filter_name_list(const char **, /* enum libenv_class */ ... /*, LIBENV_END */);
/**
* Given a list of environment variables, with values, remove the variables
* that belong to all of the specified environment variable classes
*
* @param variables `NULL`-terminated list environment variables; may be `NULL`,
* which causes the function to return 0; unless `NULL` the list
* will be updated
* @param classes The list of environment variable classes, must end with `LIBENV_END`
* @return The new number of elements in `variables`; `variables[return]` will
* be `NULL` provided that `variables` itself it not `NULL`
*/
size_t libenv_vfilter_variable_list(const char **, va_list);
/**
* Given a list of environment variables, with values, remove the variables
* that belong to all of the specified environment variable classes
*
* @param variables `NULL`-terminated list environment variables; may be `NULL`,
* which causes the function to return 0; unless `NULL` the list
* will be updated
* @param ... The list of environment variable classes, must end with `LIBENV_END`,
* each argument must have the type `enum libenv_class`
* @return The new number of elements in `variables`; `variables[return]` will
* be `NULL` provided that `variables` itself it not `NULL`
*/
size_t libenv_filter_variable_list(const char **, /* enum libenv_class */ ... /*, LIBENV_END */);
/**
* Given a list of environment variable names, remove any variable that
* does not belong to any of the specified environment variable classes
*
* @param variables `NULL`-terminated list environment variable names; may be `NULL`,
* which causes the function to return 0; unless `NULL` the list
* will be updated
* @param classes The list of environment variable classes, must end with `LIBENV_END`
* @return The new number of elements in `variables`; `variables[return]` will
* be `NULL` provided that `variables` itself it not `NULL`
*/
size_t libenv_vselect_name_list(const char **, va_list);
/**
* Given a list of environment variable names, remove any variable that
* does not belong to any of the specified environment variable classes
*
* @param variables `NULL`-terminated list environment variable names; may be `NULL`,
* which causes the function to return 0; unless `NULL` the list
* will be updated
* @param ... The list of environment variable classes, must end with `LIBENV_END`,
* each argument must have the type `enum libenv_class`
* @return The new number of elements in `variables`; `variables[return]` will
* be `NULL` provided that `variables` itself it not `NULL`
*/
size_t libenv_select_name_list(const char **, /* enum libenv_class */ ... /*, LIBENV_END */);
/**
* Given a list of environment variables, with values, remove any variable
* that does not belong to any of the specified environment variable classes
*
* @param variables `NULL`-terminated list environment variables; may be `NULL`,
* which causes the function to return 0; unless `NULL` the list
* will be updated
* @param classes The list of environment variable classes, must end with `LIBENV_END`
* @return The new number of elements in `variables`; `variables[return]` will
* be `NULL` provided that `variables` itself it not `NULL`
*/
size_t libenv_vselect_variable_list(const char **, va_list);
/**
* Given a list of environment variables, with values, remove any variable
* that does not belong to any of the specified environment variable classes
*
* @param variables `NULL`-terminated list environment variables; may be `NULL`,
* which causes the function to return 0; unless `NULL` the list
* will be updated
* @param ... The list of environment variable classes, must end with `LIBENV_END`,
* each argument must have the type `enum libenv_class`
* @return The new number of elements in `variables`; `variables[return]` will
* be `NULL` provided that `variables` itself it not `NULL`
*/
size_t libenv_select_variable_list(const char **, /* enum libenv_class */ ... /*, LIBENV_END */);
/**
* Given a list of environment variable names, remove the variables
* that belong to all of the specified environment variable classes
*
* Any element removed from `variables` will be deallocated using
* the free(3) function
*
* @param variables `NULL`-terminated list environment variable names; may be `NULL`,
* which causes the function to return 0; unless `NULL` the list
* will be updated
* @param classes The list of environment variable classes, must end with `LIBENV_END`
* @return The new number of elements in `variables`; `variables[return]` will
* be `NULL` provided that `variables` itself it not `NULL`
*/
size_t libenv_vfilter_name_list_with_dealloc(char **, va_list);
/**
* Given a list of environment variable names, remove the variables
* that belong to all of the specified environment variable classes
*
* Any element removed from `variables` will be deallocated using
* the free(3) function
*
* @param variables `NULL`-terminated list environment variable names; may be `NULL`,
* which causes the function to return 0; unless `NULL` the list
* will be updated
* @param ... The list of environment variable classes, must end with `LIBENV_END`,
* each argument must have the type `enum libenv_class`
* @return The new number of elements in `variables`; `variables[return]` will
* be `NULL` provided that `variables` itself it not `NULL`
*/
size_t libenv_filter_name_list_with_dealloc(char **, /* enum libenv_class */ ... /*, LIBENV_END */);
/**
* Given a list of environment variables, with values, remove the variables
* that belong to all of the specified environment variable classes
*
* Any element removed from `variables` will be deallocated using
* the free(3) function
*
* @param variables `NULL`-terminated list environment variables; may be `NULL`,
* which causes the function to return 0; unless `NULL` the list
* will be updated
* @param classes The list of environment variable classes, must end with `LIBENV_END`
* @return The new number of elements in `variables`; `variables[return]` will
* be `NULL` provided that `variables` itself it not `NULL`
*/
size_t libenv_vfilter_variable_list_with_dealloc(char **, va_list);
/**
* Given a list of environment variables, with values, remove the variables
* that belong to all of the specified environment variable classes
*
* Any element removed from `variables` will be deallocated using
* the free(3) function
*
* @param variables `NULL`-terminated list environment variables; may be `NULL`,
* which causes the function to return 0; unless `NULL` the list
* will be updated
* @param ... The list of environment variable classes, must end with `LIBENV_END`,
* each argument must have the type `enum libenv_class`
* @return The new number of elements in `variables`; `variables[return]` will
* be `NULL` provided that `variables` itself it not `NULL`
*/
size_t libenv_filter_variable_list_with_dealloc(char **, /* enum libenv_class */ ... /*, LIBENV_END */);
/**
* Given a list of environment variable names, remove any variable that
* does not belong to any of the specified environment variable classes
*
* Any element removed from `variables` will be deallocated using
* the free(3) function
*
* @param variables `NULL`-terminated list environment variable names; may be `NULL`,
* which causes the function to return 0; unless `NULL` the list
* will be updated
* @param classes The list of environment variable classes, must end with `LIBENV_END`
* @return The new number of elements in `variables`; `variables[return]` will
* be `NULL` provided that `variables` itself it not `NULL`
*/
size_t libenv_vselect_name_list_with_dealloc(char **, va_list);
/**
* Given a list of environment variable names, remove any variable that
* does not belong to any of the specified environment variable classes
*
* Any element removed from `variables` will be deallocated using
* the free(3) function
*
* @param variables `NULL`-terminated list environment variable names; may be `NULL`,
* which causes the function to return 0; unless `NULL` the list
* will be updated
* @param ... The list of environment variable classes, must end with `LIBENV_END`,
* each argument must have the type `enum libenv_class`
* @return The new number of elements in `variables`; `variables[return]` will
* be `NULL` provided that `variables` itself it not `NULL`
*/
size_t libenv_select_name_list_with_dealloc(char **, /* enum libenv_class */ ... /*, LIBENV_END */);
/**
* Given a list of environment variables, with values, remove any variable
* that does not belong to any of the specified environment variable classes
*
* Any element removed from `variables` will be deallocated using
* the free(3) function
*
* @param variables `NULL`-terminated list environment variables; may be `NULL`,
* which causes the function to return 0; unless `NULL` the list
* will be updated
* @param classes The list of environment variable classes, must end with `LIBENV_END`
* @return The new number of elements in `variables`; `variables[return]` will
* be `NULL` provided that `variables` itself it not `NULL`
*/
size_t libenv_vselect_variable_list_with_dealloc(char **, va_list);
/**
* Given a list of environment variables, with values, remove any variable
* that does not belong to any of the specified environment variable classes
*
* Any element removed from `variables` will be deallocated using
* the free(3) function
*
* @param variables `NULL`-terminated list environment variables; may be `NULL`,
* which causes the function to return 0; unless `NULL` the list
* will be updated
* @param ... The list of environment variable classes, must end with `LIBENV_END`,
* each argument must have the type `enum libenv_class`
* @return The new number of elements in `variables`; `variables[return]` will
* be `NULL` provided that `variables` itself it not `NULL`
*/
size_t libenv_select_variable_list_with_dealloc(char **, /* enum libenv_class */ ... /*, LIBENV_END */);
#undef LIBENV_MALLOC__
#undef LIBENV_RET_NONNULL__
#endif
|