Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libdap-server-http-db-auth
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container 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
cellframe
libdap-server-http-db-auth
Compare revisions
d1e5f6abc9d394b53beb06a2566dd3ae52be92e8 to a765ab9943f3716469223e4073068b0948fa587b
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
cellframe/libdap-server-http-db-auth
Select target project
No results found
a765ab9943f3716469223e4073068b0948fa587b
Select Git revision
Swap
Target
cellframe/libdap-server-http-db-auth
Select target project
cellframe/libdap-server-http-db-auth
1 result
d1e5f6abc9d394b53beb06a2566dd3ae52be92e8
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
[*] Fixes for strncpy()
· a765ab99
Dmitriy A. Gerasimov
authored
5 years ago
a765ab99
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/db_auth.c
+13
-13
13 additions, 13 deletions
src/db_auth.c
with
13 additions
and
13 deletions
src/db_auth.c
View file @
a765ab99
...
...
@@ -698,8 +698,8 @@ int db_auth_login(const char* login, const char* password,
log_it
(
L_INFO
,
"Login accepted"
);
*
ai
=
DAP_NEW_Z
(
db_auth_info_t
);
strncpy
((
*
ai
)
->
user
,
login
,
sizeof
((
*
ai
)
->
user
));
strncpy
((
*
ai
)
->
password
,
password
,
sizeof
((
*
ai
)
->
password
));
strncpy
((
*
ai
)
->
user
,
login
,
sizeof
((
*
ai
)
->
user
)
-
1
);
strncpy
((
*
ai
)
->
password
,
password
,
sizeof
((
*
ai
)
->
password
)
-
1
);
if
(
!
bson_iter_init
(
&
iter
,
doc
)
)
log_it
(
L_ERROR
,
"Error iter init"
);
...
...
@@ -719,17 +719,17 @@ int db_auth_login(const char* login, const char* password,
if
(
bson_iter_init
(
&
iter
,
doc
)
&&
bson_iter_find_descendant
(
&
iter
,
"profile.first_name"
,
&
sub_iter
))
strncpy
((
*
ai
)
->
first_name
,
bson_iter_value
(
&
sub_iter
)
->
value
.
v_utf8
.
str
,
sizeof
((
*
ai
)
->
first_name
));
sizeof
((
*
ai
)
->
first_name
)
-
1
);
if
(
bson_iter_init
(
&
iter
,
doc
)
&&
bson_iter_find_descendant
(
&
iter
,
"profile.last_name"
,
&
sub_iter
))
strncpy
((
*
ai
)
->
last_name
,
bson_iter_value
(
&
sub_iter
)
->
value
.
v_utf8
.
str
,
sizeof
((
*
ai
)
->
last_name
));
sizeof
((
*
ai
)
->
last_name
)
-
1
);
if
(
bson_iter_init
(
&
iter
,
doc
)
&&
bson_iter_find_descendant
(
&
iter
,
"profile.email"
,
&
sub_iter
))
strncpy
((
*
ai
)
->
email
,
bson_iter_value
(
&
sub_iter
)
->
value
.
v_utf8
.
str
,
sizeof
((
*
ai
)
->
email
));
sizeof
((
*
ai
)
->
email
)
-
1
);
for
(
int
i
=
0
;
i
<
sizeof
((
*
ai
)
->
cookie
);
i
++
)
(
*
ai
)
->
cookie
[
i
]
=
65
+
rand
()
%
25
;
...
...
@@ -851,11 +851,11 @@ db_auth_info_t * db_auth_register(const char *user,const char *password,
else
{
db_auth_info_t
*
ai
=
DAP_NEW_Z
(
db_auth_info_t
);
strncpy
(
ai
->
user
,
user
,
sizeof
(
ai
->
user
));
strncpy
(
ai
->
password
,
password
,
sizeof
(
ai
->
password
));
strncpy
(
ai
->
last_name
,
last_name
,
sizeof
(
ai
->
last_name
));
strncpy
(
ai
->
first_name
,
first_name
,
sizeof
(
ai
->
first_name
));
strncpy
(
ai
->
email
,
email
,
sizeof
(
ai
->
email
));
strncpy
(
ai
->
user
,
user
,
sizeof
(
ai
->
user
)
-
1
);
strncpy
(
ai
->
password
,
password
,
sizeof
(
ai
->
password
)
-
1
);
strncpy
(
ai
->
last_name
,
last_name
,
sizeof
(
ai
->
last_name
)
-
1
);
strncpy
(
ai
->
first_name
,
first_name
,
sizeof
(
ai
->
first_name
)
-
1
);
strncpy
(
ai
->
email
,
email
,
sizeof
(
ai
->
email
)
-
1
);
for
(
int
i
=
0
;
i
<
sizeof
(
ai
->
cookie
);
i
++
)
ai
->
cookie
[
i
]
=
65
+
rand
()
%
25
;
...
...
@@ -943,10 +943,10 @@ db_auth_info_t * db_auth_register_channel(const char* name_channel, const char*
}
db_auth_info_t
*
ai
=
DAP_NEW_Z
(
db_auth_info_t
);
strncpy
(
ai
->
user
,
name_channel
,
sizeof
(
ai
->
user
));
strncpy
(
ai
->
password
,
password
,
sizeof
(
ai
->
password
));
strncpy
(
ai
->
user
,
name_channel
,
sizeof
(
ai
->
user
)
-
1
);
strncpy
(
ai
->
password
,
password
,
sizeof
(
ai
->
password
)
-
1
);
for
(
in
t
i
=
0
;
i
<
sizeof
(
ai
->
cookie
);
i
++
)
for
(
size_
t
i
=
0
;
i
<
sizeof
(
ai
->
cookie
);
i
++
)
ai
->
cookie
[
i
]
=
65
+
rand
()
%
25
;
pthread_mutex_lock
(
&
mutex_on_auth_hash
);
...
...
This diff is collapsed.
Click to expand it.