Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
6
66
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eric Vidal
66
Commits
4bb9e0aa
Commit
4bb9e0aa
authored
5 years ago
by
Eric Vidal
Browse files
Options
Downloads
Patches
Plain Diff
use environ function from oblibs
parent
1ff15bc4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/include/66/environ.h
+5
-28
5 additions, 28 deletions
src/include/66/environ.h
src/lib66/environ.c
+50
-439
50 additions, 439 deletions
src/lib66/environ.c
with
55 additions
and
467 deletions
src/include/66/environ.h
+
5
−
28
View file @
4bb9e0aa
...
...
@@ -12,37 +12,14 @@
* except according to the terms contained in the LICENSE file./
*/
#ifndef ENVIRON_H
#define ENVIRON_H
#ifndef
SS_
ENVIRON_H
#define
SS_
ENVIRON_H
#include
<skalibs/stralloc.h>
#include
<skalibs/genalloc.h>
#define MAXVAR 50
#define MAXFILE 100
#define MAXENV 4095
typedef
struct
exlsn_s
exlsn_t
,
*
exlsn_t_ref
;
struct
exlsn_s
{
stralloc
vars
;
stralloc
values
;
genalloc
data
;
// array of elsubst
stralloc
modifs
;
}
;
#define EXLSN_ZERO { .vars = STRALLOC_ZERO, .values = STRALLOC_ZERO, .data = GENALLOC_ZERO, .modifs = STRALLOC_ZERO }
#include
<sys/types.h>
#include
<skalibs/stralloc.h>
extern
int
env_clean
(
stralloc
*
src
)
;
extern
int
env_split_one
(
char
*
line
,
genalloc
*
ga
,
stralloc
*
sa
)
;
extern
int
env_split
(
genalloc
*
gaenv
,
stralloc
*
saenv
,
stralloc
*
src
)
;
extern
int
env_parsenclean
(
stralloc
*
modifs
,
stralloc
*
src
)
;
extern
int
make_env_from_line
(
char
const
**
v
,
stralloc
*
sa
)
;
extern
int
env_substitute
(
char
const
*
key
,
char
const
*
val
,
exlsn_t
*
info
,
char
const
*
const
*
envp
,
int
unexport
)
;
extern
int
env_addkv
(
const
char
*
key
,
const
char
*
val
,
exlsn_t
*
info
)
;
extern
size_t
build_env
(
char
const
*
src
,
char
const
*
const
*
envp
,
char
const
**
newenv
,
char
*
tmpenv
)
;
extern
int
env_get_from_src
(
stralloc
*
modifs
,
char
const
*
src
)
;
extern
int
env_resolve_conf
(
stralloc
*
env
,
uid_t
owner
)
;
extern
int
env_merge_conf
(
char
const
*
dst
,
char
const
*
file
,
stralloc
*
srclist
,
stralloc
*
modifs
,
unsigned
int
force
)
;
#endif
This diff is collapsed.
Click to expand it.
src/lib66/environ.c
+
50
−
439
View file @
4bb9e0aa
...
...
@@ -11,397 +11,19 @@
* This file may not be copied, modified, propagated, or distributed
* except according to the terms contained in the LICENSE file./
*/
#include
<stddef.h>
#include
<string.h>
#include
<errno.h>
//#include <stdio.h>
#include
<sys/types.h>
#include
<string.h>
#include
<oblibs/string.h>
#include
<oblibs/stralist.h>
#include
<oblibs/directory.h>
#include
<oblibs/environ.h>
#include
<oblibs/sastr.h>
#include
<oblibs/files.h>
#include
<oblibs/types.h>
#include
<skalibs/stralloc.h>
#include
<skalibs/genalloc.h>
#include
<skalibs/diuint32.h>
#include
<skalibs/env.h>
#include
<skalibs/strerr2.h>
#include
<skalibs/djbunix.h>
#include
<skalibs/bytestr.h>
#include
<66/parser.h>
#include
<66/environ.h>
#include
<66/utils.h>
#include
<66/constants.h>
#include
<66/config.h>
#include
<execline/execline.h>
/* @Return 1 on success
* @Return 0 on fail
* @Return -1 for empty line */
int
env_clean
(
stralloc
*
src
)
{
int
r
,
e
=
1
;
unsigned
int
i
;
genalloc
gatmp
=
GENALLOC_ZERO
;
//stralist
stralloc
kp
=
STRALLOC_ZERO
;
stralloc
tmp
=
STRALLOC_ZERO
;
size_t
pos
=
0
;
char
const
*
file
=
"env_clean"
;
parse_mill_t
line
=
{
.
open
=
'@'
,
.
close
=
'='
,
\
.
skip
=
"
\t\r
"
,
.
skiplen
=
3
,
\
.
end
=
"
\n
"
,
.
endlen
=
1
,
\
.
jump
=
"#"
,
.
jumplen
=
1
,
\
.
check
=
0
,
.
flush
=
0
,
\
.
forceskip
=
0
,
.
force
=
1
,
\
.
inner
=
PARSE_MILL_INNER_ZERO
}
;
parse_mill_t
line_end
=
{
.
open
=
'@'
,
.
close
=
'\n'
,
\
.
skip
=
"
\t\r
"
,
.
skiplen
=
3
,
\
.
end
=
"
\n
"
,
.
endlen
=
1
,
\
.
jump
=
"#"
,
.
jumplen
=
1
,
\
.
check
=
0
,
.
flush
=
0
,
\
.
forceskip
=
0
,
.
force
=
1
,
\
.
inner
=
PARSE_MILL_INNER_ZERO
}
;
size_t
blen
=
src
->
len
,
n
=
0
;
if
(
!
stralloc_inserts
(
src
,
0
,
"@"
))
goto
err
;
while
(
pos
<
(
blen
+
n
)
&&
n
<
2
)
{
kp
.
len
=
0
;
genalloc_deepfree
(
stralist
,
&
gatmp
,
stra_free
)
;
line
.
inner
.
nopen
=
line
.
inner
.
nclose
=
0
;
r
=
parse_config
(
!
n
?&
line
:&
line_end
,
file
,
src
,
&
kp
,
&
pos
)
;
if
(
!
r
)
goto
err
;
if
(
r
<
0
&&
!
n
){
e
=
-
1
;
goto
freed
;
}
if
(
!
stralloc_0
(
&
kp
))
goto
err
;
if
(
!
clean_val
(
&
gatmp
,
kp
.
s
))
goto
err
;
for
(
i
=
0
;
i
<
genalloc_len
(
stralist
,
&
gatmp
)
;
i
++
)
{
if
((
i
+
1
)
<
genalloc_len
(
stralist
,
&
gatmp
))
{
if
(
!
stralloc_cats
(
&
tmp
,
gaistr
(
&
gatmp
,
i
)))
goto
err
;
if
(
!
stralloc_cats
(
&
tmp
,
" "
))
goto
err
;
}
else
if
(
!
stralloc_cats
(
&
tmp
,
gaistr
(
&
gatmp
,
i
)))
goto
err
;
}
if
(
!
n
)
if
(
!
stralloc_cats
(
&
tmp
,
"="
))
goto
err
;
if
(
!
stralloc_inserts
(
src
,
pos
,
"@"
))
goto
err
;
n
++
;
}
if
(
!
stralloc_0
(
&
tmp
))
goto
err
;
if
(
!
stralloc_copy
(
src
,
&
tmp
))
goto
err
;
freed:
stralloc_free
(
&
kp
)
;
stralloc_free
(
&
tmp
)
;
genalloc_deepfree
(
stralist
,
&
gatmp
,
stra_free
)
;
return
e
;
err:
stralloc_free
(
&
kp
)
;
stralloc_free
(
&
tmp
)
;
genalloc_deepfree
(
stralist
,
&
gatmp
,
stra_free
)
;
return
0
;
}
int
env_split_one
(
char
*
line
,
genalloc
*
ga
,
stralloc
*
sa
)
{
size_t
slen
=
strlen
(
line
)
;
char
s
[
slen
+
1
]
;
memcpy
(
s
,
line
,
slen
)
;
s
[
slen
]
=
0
;
char
*
k
=
0
;
char
*
v
=
0
;
diuint32
tmp
=
DIUINT32_ZERO
;
k
=
s
;
v
=
s
;
obstr_sep
(
&
v
,
"="
)
;
/** TODO, for the moment we just ignore un key with an empty
* value, this is clearely not a good way, it must be handled
* correctly. By the way the parser is currently re written and
* the env_** will changes. Just be functionnal here*/
if
(
!*
v
)
return
-
1
;
tmp
.
left
=
sa
->
len
;
if
(
!
stralloc_catb
(
sa
,
k
,
strlen
(
k
)
+
1
))
return
0
;
if
(
!
obstr_trim
(
v
,
'\n'
))
return
0
;
tmp
.
right
=
sa
->
len
;
if
(
!
stralloc_catb
(
sa
,
v
,
strlen
(
v
)
+
1
))
return
0
;
if
(
!
genalloc_append
(
diuint32
,
ga
,
&
tmp
))
return
0
;
return
1
;
}
int
env_split
(
genalloc
*
gaenv
,
stralloc
*
saenv
,
stralloc
*
src
)
{
int
nbline
=
0
,
i
=
0
;
genalloc
gatmp
=
GENALLOC_ZERO
;
//stralist
stralloc
tmp
=
STRALLOC_ZERO
;
nbline
=
get_nbline_ga
(
src
->
s
,
src
->
len
,
&
gatmp
)
;
for
(;
i
<
nbline
;
i
++
)
{
char
*
line
=
gaistr
(
&
gatmp
,
i
)
;
if
(
!*
line
)
continue
;
tmp
.
len
=
0
;
if
(
!
stralloc_cats
(
&
tmp
,
line
))
goto
err
;
/** skip commented line or empty line*/
if
(
env_clean
(
&
tmp
)
<
0
)
continue
;
if
(
!
stralloc_0
(
&
tmp
))
goto
err
;
if
(
!
env_split_one
(
tmp
.
s
,
gaenv
,
saenv
))
goto
err
;
}
genalloc_deepfree
(
stralist
,
&
gatmp
,
stra_free
)
;
stralloc_free
(
&
tmp
)
;
return
1
;
err:
genalloc_deepfree
(
stralist
,
&
gatmp
,
stra_free
)
;
stralloc_free
(
&
tmp
)
;
return
0
;
}
int
env_parsenclean
(
stralloc
*
modifs
,
stralloc
*
src
)
{
int
nbline
=
0
,
i
=
0
;
size_t
pos
=
0
;
genalloc
gatmp
=
GENALLOC_ZERO
;
//stralist
stralloc
tmp
=
STRALLOC_ZERO
;
nbline
=
get_nbline_ga
(
src
->
s
,
src
->
len
,
&
gatmp
)
;
for
(;
i
<
nbline
;
i
++
)
{
tmp
.
len
=
0
;
if
(
!
gaistrlen
(
&
gatmp
,
i
))
break
;
if
(
!
stralloc_cats
(
&
tmp
,
gaistr
(
&
gatmp
,
i
)))
goto
err
;
if
(
!
parse_env
(
&
tmp
,
&
pos
))
goto
err
;
if
(
!
env_clean
(
&
tmp
))
goto
err
;
tmp
.
len
--
;
//remove '0'
int
r
=
get_len_until
(
tmp
.
s
,
'='
)
;
if
(
tmp
.
s
[
r
+
1
]
==
SS_VAR_UNEXPORT
){
r
++
;
char
t
[
tmp
.
len
+
1
]
;
memcpy
(
t
,
tmp
.
s
,
r
)
;
memcpy
(
t
+
r
,
tmp
.
s
+
r
+
1
,
tmp
.
len
-
(
r
+
1
))
;
tmp
.
len
--
;
t
[
tmp
.
len
]
=
0
;
if
(
!
stralloc_catb
(
modifs
,
t
,
tmp
.
len
+
1
))
goto
err
;
}
else
if
(
!
stralloc_catb
(
modifs
,
tmp
.
s
,
tmp
.
len
+
1
))
goto
err
;
// ||
}
genalloc_deepfree
(
stralist
,
&
gatmp
,
stra_free
)
;
stralloc_free
(
&
tmp
)
;
return
1
;
err:
genalloc_deepfree
(
stralist
,
&
gatmp
,
stra_free
)
;
stralloc_free
(
&
tmp
)
;
return
0
;
}
int
make_env_from_line
(
char
const
**
v
,
stralloc
*
sa
)
{
genalloc
gatmp
=
GENALLOC_ZERO
;
stralloc
copy
=
STRALLOC_ZERO
;
unsigned
int
i
=
0
;
if
(
!
sa
->
len
)
goto
err
;
if
(
!
clean_val
(
&
gatmp
,
sa
->
s
))
goto
err
;
for
(;
i
<
genalloc_len
(
stralist
,
&
gatmp
)
;
i
++
)
{
char
*
line
=
gaistr
(
&
gatmp
,
i
)
;
if
(
!
stralloc_catb
(
&
copy
,
line
,
gaistrlen
(
&
gatmp
,
i
)
+
1
))
goto
err
;
}
stralloc_copy
(
sa
,
&
copy
)
;
stralloc_free
(
&
copy
)
;
if
(
!
env_make
(
v
,
i
,
sa
->
s
,
sa
->
len
))
goto
err
;
genalloc_deepfree
(
stralist
,
&
gatmp
,
stra_free
)
;
return
i
;
err:
stralloc_free
(
&
copy
)
;
genalloc_deepfree
(
stralist
,
&
gatmp
,
stra_free
)
;
return
0
;
}
int
env_substitute
(
char
const
*
key
,
char
const
*
val
,
exlsn_t
*
info
,
char
const
*
const
*
envp
,
int
unexport
)
{
char
const
*
defaultval
=
""
;
char
const
*
x
;
int
insist
=
0
;
eltransforminfo_t
si
=
ELTRANSFORMINFO_ZERO
;
elsubst_t
blah
;
blah
.
var
=
info
->
vars
.
len
;
blah
.
value
=
info
->
values
.
len
;
if
(
el_vardupl
(
key
,
info
->
vars
.
s
,
info
->
vars
.
len
))
{
strerr_warnwu1x
(
"el_vardupl"
)
;
goto
err
;
}
if
(
!
stralloc_catb
(
&
info
->
vars
,
key
,
strlen
(
key
)
+
1
))
{
strerr_warnwu1x
(
"append stralloc of env_substitute"
)
;
goto
err
;
}
x
=
env_get2
(
envp
,
key
)
;
if
(
!
x
)
{
if
(
insist
)
{
strerr_warnw2x
(
key
,
": is not set"
)
;
goto
err
;
}
x
=
defaultval
;
}
else
if
(
unexport
)
{
if
(
!
stralloc_catb
(
&
info
->
modifs
,
key
,
strlen
(
key
)
+
1
))
goto
err
;
}
if
(
!
x
)
blah
.
n
=
0
;
else
{
int
r
;
if
(
!
stralloc_cats
(
&
info
->
values
,
x
))
goto
err
;
r
=
el_transform
(
&
info
->
values
,
blah
.
value
,
&
si
)
;
if
(
r
<
0
)
goto
err
;
blah
.
n
=
r
;
}
if
(
!
genalloc_append
(
elsubst_t
,
&
info
->
data
,
&
blah
))
goto
err
;
return
1
;
err:
info
->
vars
.
len
=
blah
.
var
;
info
->
values
.
len
=
blah
.
value
;
return
0
;
}
int
env_addkv
(
const
char
*
key
,
const
char
*
val
,
exlsn_t
*
info
)
{
int
r
;
eltransforminfo_t
si
=
ELTRANSFORMINFO_ZERO
;
elsubst_t
blah
;
blah
.
var
=
info
->
vars
.
len
;
blah
.
value
=
info
->
values
.
len
;
if
(
el_vardupl
(
key
,
info
->
vars
.
s
,
info
->
vars
.
len
))
goto
err
;
if
(
!
stralloc_catb
(
&
info
->
vars
,
key
,
strlen
(
key
)
+
1
))
goto
err
;
if
(
!
stralloc_cats
(
&
info
->
values
,
val
))
goto
err
;
r
=
el_transform
(
&
info
->
values
,
blah
.
value
,
&
si
)
;
if
(
r
<
0
)
goto
err
;
blah
.
n
=
r
;
if
(
!
genalloc_append
(
elsubst_t
,
&
info
->
data
,
&
blah
))
goto
err
;
return
1
;
err:
info
->
vars
.
len
=
blah
.
var
;
info
->
values
.
len
=
blah
.
value
;
return
0
;
}
int
env_get_from_src
(
stralloc
*
modifs
,
char
const
*
src
)
{
int
r
;
size_t
filesize
;
unsigned
int
i
;
stralloc
sa
=
STRALLOC_ZERO
;
genalloc
toparse
=
GENALLOC_ZERO
;
r
=
scan_mode
(
src
,
S_IFDIR
)
;
if
(
r
<
0
)
{
r
=
scan_mode
(
src
,
S_IFREG
)
;
if
(
!
r
||
r
<
0
)
{
VERBO3
strerr_warnw2sys
(
"invalid environment: "
,
src
)
;
goto
err
;
}
filesize
=
file_get_size
(
src
)
;
if
(
filesize
>
MAXENV
)
{
VERBO3
strerr_warnw2x
(
"environment too long: "
,
src
)
;
goto
err
;
}
if
(
!
openreadfileclose
(
src
,
&
sa
,
filesize
))
{
VERBO3
strerr_warnwu2sys
(
"open: "
,
src
)
;
goto
err
;
}
if
(
!
env_parsenclean
(
modifs
,
&
sa
))
{
VERBO3
strerr_warnwu2x
(
"parse and clean environment of: "
,
sa
.
s
)
;
goto
err
;
}
}
else
if
(
!
r
)
{
VERBO3
strerr_warnw2sys
(
"invalid environment: "
,
src
)
;
goto
err
;
}
/** we parse all file of the directory*/
else
{
r
=
dir_get
(
&
toparse
,
src
,
""
,
S_IFREG
)
;
if
(
!
r
)
{
VERBO3
strerr_warnwu2sys
(
"get file from: "
,
src
)
;
goto
err
;
}
for
(
i
=
0
;
i
<
genalloc_len
(
stralist
,
&
toparse
)
;
i
++
)
{
sa
.
len
=
0
;
if
(
i
>
MAXFILE
)
{
VERBO3
strerr_warnw2x
(
"to many file to parse in: "
,
src
)
;
goto
err
;
}
if
(
!
file_readputsa
(
&
sa
,
src
,
gaistr
(
&
toparse
,
i
)))
{
VERBO3
strerr_warnw4x
(
"read file: "
,
src
,
"/"
,
gaistr
(
&
toparse
,
i
))
;
goto
err
;
}
if
(
!
env_parsenclean
(
modifs
,
&
sa
))
{
VERBO3
strerr_warnw4x
(
"parse and clean environment of: "
,
src
,
"/"
,
gaistr
(
&
toparse
,
i
))
;
goto
err
;
}
}
}
genalloc_deepfree
(
stralist
,
&
toparse
,
stra_free
)
;
stralloc_free
(
&
sa
)
;
return
1
;
err:
genalloc_deepfree
(
stralist
,
&
toparse
,
stra_free
)
;
stralloc_free
(
&
sa
)
;
return
0
;
}
size_t
build_env
(
char
const
*
src
,
char
const
*
const
*
envp
,
char
const
**
newenv
,
char
*
tmpenv
)
{
stralloc
modifs
=
STRALLOC_ZERO
;
size_t
envlen
=
env_len
(
envp
)
;
if
(
!
env_get_from_src
(
&
modifs
,
src
))
{
VERBO3
strerr_warnw2x
(
"get environment file from: "
,
src
)
;
goto
err
;
}
size_t
n
=
env_len
(
envp
)
+
1
+
byte_count
(
modifs
.
s
,
modifs
.
len
,
'\0'
)
;
size_t
mlen
=
modifs
.
len
;
if
(
mlen
>
MAXENV
)
{
VERBO3
strerr_warnw2x
(
"environment too long: "
,
src
)
;
goto
err
;
}
memcpy
(
tmpenv
,
modifs
.
s
,
mlen
)
;
tmpenv
[
mlen
]
=
0
;
if
(
!
env_merge
(
newenv
,
n
,
envp
,
envlen
,
tmpenv
,
mlen
))
{
VERBO3
strerr_warnwu2x
(
"merge environment from: "
,
src
)
;
goto
err
;
}
stralloc_free
(
&
modifs
)
;
return
1
;
err:
stralloc_free
(
&
modifs
)
;
return
0
;
}
#include
<66/utils.h>
int
env_resolve_conf
(
stralloc
*
env
,
uid_t
owner
)
{
...
...
@@ -421,68 +43,57 @@ int env_resolve_conf(stralloc *env, uid_t owner)
int
env_merge_conf
(
char
const
*
dst
,
char
const
*
file
,
stralloc
*
srclist
,
stralloc
*
modifs
,
unsigned
int
force
)
{
int
found
=
0
;
stralloc
newlist
=
STRALLOC_ZERO
;
// key=value from modifs
genalloc
mga
=
GENALLOC_ZERO
;
// diuint32
stralloc
msa
=
STRALLOC_ZERO
;
// key=value from src
genalloc
ga
=
GENALLOC_ZERO
;
// diuint32
stralloc
sa
=
STRALLOC_ZERO
;
char
*
key
,
*
val
,
*
mkey
,
*
mval
;
if
(
!
env_split
(
&
mga
,
&
msa
,
modifs
))
strerr_diefu1x
(
111
,
"split key=value pair"
)
;
if
(
!
env_split
(
&
ga
,
&
sa
,
srclist
))
strerr_diefu3x
(
111
,
"split key=value pair of file: "
,
dst
,
file
)
;
// replace existing key
for
(
unsigned
int
i
=
0
;
i
<
genalloc_len
(
diuint32
,
&
ga
)
;
i
++
)
{
found
=
0
;
key
=
sa
.
s
+
genalloc_s
(
diuint32
,
&
ga
)[
i
].
left
;
val
=
sa
.
s
+
genalloc_s
(
diuint32
,
&
ga
)[
i
].
right
;
if
(
!
stralloc_cats
(
&
newlist
,
key
)
||
!
stralloc_cats
(
&
newlist
,
"="
))
return
0
;
for
(
unsigned
int
j
=
0
;
j
<
genalloc_len
(
diuint32
,
&
mga
)
;
j
++
)
int
r
;
size_t
pos
=
0
,
fakepos
=
0
;
stralloc
result
=
STRALLOC_ZERO
;
stralloc
skey
=
STRALLOC_ZERO
;
stralloc
sval
=
STRALLOC_ZERO
;
stralloc
mkey
=
STRALLOC_ZERO
;
stralloc
mval
=
STRALLOC_ZERO
;
if
(
!
environ_get_clean_env
(
srclist
)
||
!
environ_get_clean_env
(
modifs
)
||
!
environ_clean_nline
(
srclist
)
||
!
environ_clean_nline
(
modifs
)
||
!
stralloc_copy
(
&
result
,
srclist
))
goto
err
;
result
.
len
--
;
//remove 0
if
(
!
sastr_split_string_in_nline
(
modifs
))
goto
err
;
if
(
!
sastr_split_string_in_nline
(
srclist
))
goto
err
;
for
(;
pos
<
modifs
->
len
;
pos
+=
strlen
(
modifs
->
s
+
pos
)
+
1
)
{
fakepos
=
pos
;
skey
.
len
=
sval
.
len
=
mkey
.
len
=
mval
.
len
=
0
;
if
(
!
stralloc_copy
(
&
mkey
,
modifs
)
||
!
stralloc_copy
(
&
mval
,
modifs
)
||
!
stralloc_copy
(
&
skey
,
srclist
)
||
!
stralloc_copy
(
&
sval
,
srclist
))
goto
err
;
if
(
!
environ_get_key_nclean
(
&
mkey
,
&
pos
))
goto
err
;
r
=
sastr_find
(
srclist
,
mkey
.
s
)
;
if
(
r
>=
0
)
{
mkey
=
msa
.
s
+
genalloc_s
(
diuint32
,
&
mga
)[
j
].
left
;
mval
=
msa
.
s
+
genalloc_s
(
diuint32
,
&
mga
)[
j
].
right
;
if
(
obstr_equal
(
key
,
mkey
)
&&
force
)
if
(
force
)
{
found
=
1
;
if
(
!
stralloc_cats
(
&
newlist
,
mval
))
return
0
;
break
;
if
(
!
environ_get_val_of_key
(
&
sval
,
mkey
.
s
)
||
!
environ_get_val_of_key
(
&
mval
,
mkey
.
s
)
||
!
sastr_replace
(
&
result
,
sval
.
s
,
mval
.
s
))
goto
err
;
result
.
len
--
;
}
}
if
(
!
found
)
if
(
!
stralloc_cats
(
&
newlist
,
val
))
return
0
;
if
(
!
stralloc_cats
(
&
newlist
,
"
\n
"
))
return
0
;
}
// append new key coming from modifs
for
(
unsigned
int
i
=
0
;
i
<
genalloc_len
(
diuint32
,
&
mga
)
;
i
++
)
{
found
=
0
;
key
=
msa
.
s
+
genalloc_s
(
diuint32
,
&
mga
)[
i
].
left
;
val
=
msa
.
s
+
genalloc_s
(
diuint32
,
&
mga
)[
i
].
right
;
for
(
unsigned
int
j
=
0
;
j
<
genalloc_len
(
diuint32
,
&
ga
)
;
j
++
)
{
mkey
=
sa
.
s
+
genalloc_s
(
diuint32
,
&
ga
)[
j
].
left
;
mval
=
sa
.
s
+
genalloc_s
(
diuint32
,
&
ga
)[
j
].
right
;
if
(
obstr_equal
(
key
,
mkey
))
found
=
1
;
}
if
(
!
found
)
else
{
if
(
!
stralloc_cats
(
&
newlist
,
key
)
||
!
stralloc_cats
(
&
newlist
,
"="
))
return
0
;
if
(
!
stralloc_cats
(
&
newlist
,
val
))
return
0
;
if
(
!
stralloc_cats
(
&
newlist
,
"
\n
"
))
return
0
;
if
(
!
stralloc_cats
(
&
result
,
modifs
->
s
+
fakepos
)
||
!
stralloc_cats
(
&
result
,
"
\n
"
))
goto
err
;
}
}
if
(
!
file_write_unsafe
(
dst
,
file
,
newlist
.
s
,
newlist
.
len
))
strerr_diefu3sys
(
111
,
"write: "
,
dst
,
file
)
;
if
(
!
stralloc_cats
(
&
result
,
"
\n
"
))
goto
err
;
if
(
!
file_write_unsafe
(
dst
,
file
,
result
.
s
,
result
.
len
))
goto
err
;
stralloc_free
(
&
newlist
)
;
stralloc_free
(
&
sa
)
;
stralloc_free
(
&
msa
)
;
genalloc_free
(
diuint32
,
&
mga
)
;
genalloc_free
(
diuint32
,
&
ga
)
;
stralloc_free
(
&
result
)
;
stralloc_free
(
&
skey
)
;
stralloc_free
(
&
sval
)
;
stralloc_free
(
&
mkey
)
;
stralloc_free
(
&
mval
)
;
return
1
;
err:
stralloc_free
(
&
result
)
;
stralloc_free
(
&
skey
)
;
stralloc_free
(
&
sval
)
;
stralloc_free
(
&
mkey
)
;
stralloc_free
(
&
mval
)
;
return
0
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment