Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
babeld
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
babeld
Commits
c2437694
Commit
c2437694
authored
Dec 30, 2019
by
Antonin Décimo
Committed by
Juliusz Chroboczek
May 30, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move key validation in parse_key.
parent
b06b2fcd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
38 deletions
+32
-38
configuration.c
configuration.c
+32
-38
No files found.
configuration.c
View file @
c2437694
...
...
@@ -753,7 +753,7 @@ parse_key(int c, gnc_t gnc, void *closure, struct key **key_return)
key
=
calloc
(
1
,
sizeof
(
struct
key
));
if
(
key
==
NULL
)
goto
error
;
return
-
2
;
while
(
1
)
{
c
=
skip_whitespace
(
c
,
gnc
,
closure
);
if
(
c
<
0
||
c
==
'\n'
||
c
==
'#'
)
{
...
...
@@ -761,7 +761,7 @@ parse_key(int c, gnc_t gnc, void *closure, struct key **key_return)
break
;
}
c
=
getword
(
c
,
&
token
,
gnc
,
closure
);
if
(
c
<
-
1
)
{
if
(
c
<
-
1
||
token
==
NULL
)
{
goto
error
;
}
if
(
strcmp
(
token
,
"id"
)
==
0
)
{
...
...
@@ -795,12 +795,41 @@ parse_key(int c, gnc_t gnc, void *closure, struct key **key_return)
goto
error
;
}
free
(
token
);
token
=
NULL
;
}
if
(
key
->
id
==
NULL
)
goto
error
;
switch
(
key
->
type
)
{
case
AUTH_TYPE_SHA256
:
{
if
(
key
->
len
>
64
)
goto
error
;
if
(
key
->
len
<
64
)
{
unsigned
char
*
v
=
realloc
(
key
->
value
,
64
);
if
(
v
==
NULL
)
goto
error
;
memset
(
v
+
key
->
len
,
0
,
64
-
key
->
len
);
key
->
value
=
v
;
key
->
len
=
64
;
}
break
;
}
case
AUTH_TYPE_BLAKE2S
:
if
(
key
->
len
!=
16
)
goto
error
;
break
;
default:
goto
error
;
}
*
key_return
=
key
;
return
c
;
error:
free
(
token
);
free
(
key
->
value
);
free
(
key
->
id
);
free
(
key
);
return
-
2
;
}
...
...
@@ -1212,43 +1241,8 @@ parse_config_line(int c, gnc_t gnc, void *closure,
}
else
if
(
strcmp
(
token
,
"key"
)
==
0
)
{
struct
key
*
key
=
NULL
;
c
=
parse_key
(
c
,
gnc
,
closure
,
&
key
);
if
(
c
<
-
1
||
key
==
NULL
||
key
->
id
==
NULL
)
{
if
(
key
!=
NULL
)
free
(
key
->
value
);
free
(
key
);
goto
fail
;
}
switch
(
key
->
type
)
{
case
AUTH_TYPE_SHA256
:
if
(
key
->
len
>
64
)
{
free
(
key
->
value
);
free
(
key
);
goto
fail
;
}
if
(
key
->
len
<
64
)
{
unsigned
char
*
v
=
realloc
(
key
->
value
,
64
);
if
(
v
==
NULL
)
{
free
(
key
->
value
);
free
(
key
);
goto
fail
;
}
memset
(
v
+
key
->
len
,
0
,
64
-
key
->
len
);
key
->
value
=
v
;
key
->
len
=
64
;
}
break
;
case
AUTH_TYPE_BLAKE2S
:
if
(
key
->
len
!=
16
)
{
free
(
key
->
value
);
free
(
key
);
goto
fail
;
}
break
;
default:
free
(
key
->
value
);
free
(
key
);
if
(
c
<
-
1
)
goto
fail
;
}
add_key
(
key
->
id
,
key
->
type
,
key
->
len
,
key
->
value
);
free
(
key
);
}
else
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment