File: env.c

package info (click to toggle)
fhist 1.18-2.1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 2,640 kB
  • sloc: ansic: 15,161; sh: 4,749; makefile: 1,028; awk: 154; yacc: 102
file content (186 lines) | stat: -rw-r--r-- 4,662 bytes parent folder | download | duplicates (3)
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
/*
 *      fhist - file history and comparison tools
 *      Copyright (C) 1998, 2002, 2008 Peter Miller
 *
 *      This program is free software; you can redistribute it and/or modify
 *      it under the terms of the GNU General Public License as published by
 *      the Free Software Foundation; either version 3 of the License, or
 *      (at your option) any later version.
 *
 *      This program 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 General Public License
 *      along with this program. If not, see
 *      <http://www.gnu.org/licenses/>.
 */

#include <ac/stddef.h>
#include <ac/stdlib.h>
#include <ac/string.h>

#include <env.h>
#include <mem.h>


extern  char    **environ;
static  size_t  nenvirons;
static  int     initialized;


/*
 * NAME
 *      env_initialize - start up environment
 *
 * SYNOPSIS
 *      void env_initialize(void);
 *
 * DESCRIPTION
 *      The env_initialize function is used to copy all of the environment
 *      variables into dynamic memory, so that they may be altered by the
 *      setenv and unsetenv commands.
 */

static void
env_initialize(void)
{
        int             j;
        char    **old;

        if (initialized)
                return;
        initialized = 1;
        nenvirons = 0;
        for (j = 0; environ[j]; ++j)
                ++nenvirons;
        old = environ;
        environ = mem_alloc((nenvirons + 1) * sizeof(char *));
        for (j = 0; j < nenvirons; ++j)
        {
                char    *cp;
                char    *was;

                was = old[j];
                cp = mem_alloc(strlen(was) + 1);
                strcpy(cp, was);
                environ[j] = cp;
        }
        environ[nenvirons] = 0;
        env_set("SHELL", "/bin/sh");
}


/*
 * NAME
 *      setenv - set environment variable
 *
 * SYNOPSIS
 *      void setenv(char *name, char *value);
 *
 * DESCRIPTION
 *      The setenv function is used to set the given environment variable to
 *      the given value.
 *
 * CAVEAT
 *      Assumes that the env_initialize function has already been called.
 */

void
env_set(char *name, char *value)
{
        size_t          name_len;
        int             j;
        char            *cp;

        if (!initialized)
                env_initialize();
        cp = 0;
        name_len = strlen(name);
        for (j = 0; j < nenvirons; ++j)
        {
                cp = environ[j];
                /* assert(cp); */
                if
                (
                        name_len <= strlen(cp)
                &&
                        (cp[name_len] == '=' || !cp[name_len])
                &&
                        !memcmp(cp, name, name_len)
                )
                        break;
        }
        if (environ[j])
        {
                environ[j] = 0;
                if (cp)
                        mem_free(cp);
        }
        else
        {
                size_t  nbytes;

                nbytes = (nenvirons + 2) * sizeof(char *);
                environ = mem_change_size(environ, nbytes);
                environ[++nenvirons] = 0;
        }
        cp = mem_alloc(name_len + strlen(value) + 2);
        strcpy(cp, name);
        cp[name_len] = '=';
        strcpy(cp + name_len + 1, value);
        environ[j] = cp;
}


/*
 * NAME
 *      unsetenv - remove environment variable
 *
 * SYNOPSIS
 *      void unsetenv(char *name);
 *
 * DESCRIPTION
 *      The unsetenv function is used to remove the named variable from the
 *      environment.
 *
 * RETURNS
 *      void
 *
 * CAVEAT
 *      Assumes that the env_initialize function has been called already.
 */

void
env_unset(char *name)
{
        size_t          name_len;
        int             j;
        char            *cp;

        if (!initialized)
                env_initialize();
        name_len = strlen(name);
        cp = 0;
        for (j = 0; j < nenvirons; ++j)
        {
                cp = environ[j];
                /* assert(cp); */
                if
                (
                        (cp[name_len] == '=' || !cp[name_len])
                &&
                        !strncmp(cp, name, name_len)
                )
                        break;
        }
        if (!environ[j])
                return;
        environ[j] = 0;
        if (cp)
                mem_free(cp);
        --nenvirons;
        for ( ; j < nenvirons; ++j)
                environ[j] = environ[j + 1];
}