Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
Patricio Latini
openairinterface5G
Commits
e1dc1d9d
Commit
e1dc1d9d
authored
2 years ago
by
Robert Schmidt
Browse files
Options
Downloads
Patches
Plain Diff
Correctly implement option to load additional SOs for telnet
parent
6c6ce912
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
common/utils/telnetsrv/telnetsrv.c
+15
-16
15 additions, 16 deletions
common/utils/telnetsrv/telnetsrv.c
with
15 additions
and
16 deletions
common/utils/telnetsrv/telnetsrv.c
+
15
−
16
View file @
e1dc1d9d
...
...
@@ -821,14 +821,14 @@ void poll_telnetcmdq(void *qid, void *arg) {
*
*
*/
void
exec_moduleinit
(
char
*
modname
)
{
static
bool
exec_moduleinit
(
char
*
modname
)
{
void
(
*
fptr
)(
void
);
char
initfunc
[
TELNET_CMD_MAXSIZE
+
10
];
if
(
strlen
(
modname
)
>
TELNET_CMD_MAXSIZE
)
{
fprintf
(
stderr
,
"[TELNETSRV] module %s not loaded, name exceeds the %i size limit
\n
"
,
modname
,
TELNET_CMD_MAXSIZE
);
return
;
return
false
;
}
sprintf
(
initfunc
,
"add_%s_cmds"
,
modname
);
...
...
@@ -836,37 +836,35 @@ void exec_moduleinit(char *modname) {
if
(
fptr
!=
NULL
)
{
fptr
();
}
else
{
fprintf
(
stderr
,
"[TELNETSRV] couldn't find %s for module %s
\n
"
,
initfunc
,
modname
);
return
true
;
}
fprintf
(
stderr
,
"[TELNETSRV] couldn't find %s for module %s
\n
"
,
initfunc
,
modname
);
return
false
;
}
int
add_embeddedmodules
(
void
)
{
int
ret
=
0
;
int
pindex
=
config_paramidx_fromname
(
telnetoptions
,
sizeof
(
telnetoptions
)
/
sizeof
(
paramdef_t
),
TELNETSRV_OPTNAME_STATICMOD
);
for
(
int
i
=
0
;
i
<
telnetoptions
[
pindex
].
numelt
;
i
++
)
{
ret
++
;
exec_moduleinit
(
telnetoptions
[
pindex
].
strlistptr
[
i
]);
bool
success
=
exec_moduleinit
(
telnetoptions
[
pindex
].
strlistptr
[
i
]);
if
(
success
)
ret
++
;
}
return
ret
;
}
int
add_sharedmodules
(
void
)
{
char
initfunc
[
TELNET_CMD_MAXSIZE
+
9
];
void
(
*
fptr
)(
void
);
int
ret
=
0
;
int
pindex
=
config_paramidx_fromname
(
telnetoptions
,
sizeof
(
telnetoptions
)
/
sizeof
(
paramdef_t
),
TELNETSRV_OPTNAME_SHRMOD
);
for
(
int
i
=
0
;
i
<
telnetoptions
[
pindex
].
numelt
;
i
++
)
{
sprintf
(
initfunc
,
"add_%s_cmds"
,
telnetoptions
[
pindex
].
strlistptr
[
i
]);
fptr
=
dlsym
(
RTLD_DEFAULT
,
initfunc
);
if
(
fptr
!=
NULL
)
{
fptr
();
char
*
name
=
telnetoptions
[
pindex
].
strlistptr
[
i
];
char
libname
[
256
];
snprintf
(
libname
,
sizeof
(
libname
),
"telnetsrv_%s"
,
name
);
load_module_shlib
(
libname
,
NULL
,
0
,
NULL
);
bool
success
=
exec_moduleinit
(
name
);
if
(
success
)
ret
++
;
}
else
{
fprintf
(
stderr
,
"[TELNETSRV] couldn't find %s for module %s
\n
"
,
initfunc
,
telnetoptions
[
pindex
].
strlistptr
[
i
]);
}
}
return
ret
;
...
...
@@ -890,6 +888,7 @@ int telnetsrv_autoinit(void) {
add_telnetcmd
(
"telnet"
,
telnet_vardef
,
telnet_cmdarray
);
add_embeddedmodules
();
add_sharedmodules
();
if
(
telnetparams
.
listenstdin
)
{
if
(
pthread_create
(
&
telnetparams
.
telnetclt_pthread
,
NULL
,
(
void
*
(
*
)(
void
*
))
run_telnetclt
,
NULL
)
!=
0
)
{
fprintf
(
stderr
,
"[TELNETSRV] Error %s on pthread_create f() run_telnetclt
\n
"
,
strerror
(
errno
));
...
...
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