blob: 4079e6d8f08bf35730e2e1e1e3057ef33b495e80 (
plain)
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
|
/*++
/* NAME
/* clean_env 3
/* SUMMARY
/* clean up the environment
/* SYNOPSIS
/* #include <clean_env.h>
/*
/* void clean_env(export_list)
/* const char **export_list;
/* DESCRIPTION
/* clean_env() reduces the process environment to the bare minimum.
/* The function takes a null-terminated list of arguments.
/* Each argument specifies the name of an environment variable
/* that should be preserved.
/* DIAGNOSTICS
/* Fatal error: out of memory.
/* SEE ALSO
/* safe_getenv(3), guarded getenv()
/* LICENSE
/* .ad
/* .fi
/* The Secure Mailer license must be distributed with this software.
/* AUTHOR(S)
/* Wietse Venema
/* IBM T.J. Watson Research
/* P.O. Box 704
/* Yorktown Heights, NY 10598, USA
/*--*/
/* System library. */
#include <sys_defs.h>
#include <stdlib.h>
#include <unistd.h>
/* Utility library. */
#include <msg.h>
#include <argv.h>
#include <safe.h>
#include <clean_env.h>
/* clean_env - clean up the environment */
void clean_env(char **export_list)
{
extern char **environ;
ARGV *save_list;
char *value;
char **cpp;
/*
* Preserve selected environment variables.
*/
save_list = argv_alloc(10);
for (cpp = export_list; *cpp; cpp++)
if ((value = safe_getenv(*cpp)) != 0)
argv_add(save_list, *cpp, value, (char *) 0);
argv_terminate(save_list);
/*
* Truncate the process environment, if available. On some systems
* (Ultrix!), environ can be a null pointer.
*/
if (environ)
environ[0] = 0;
/*
* Restore preserved environment variables.
*/
for (cpp = save_list->argv; *cpp; cpp += 2)
if (setenv(cpp[0], cpp[1], 1))
msg_fatal("setenv: %m");
/*
* Cleanup.
*/
argv_free(save_list);
}
|