Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zzha zzha
OpenXG-RAN
Commits
c4cf67f0
Commit
c4cf67f0
authored
Apr 08, 2022
by
frtabu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modify telnet server structure to support command execution from the webserver
parent
9dbcab30
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
193 additions
and
107 deletions
+193
-107
common/utils/telnetsrv/telnetsrv.c
common/utils/telnetsrv/telnetsrv.c
+16
-4
common/utils/telnetsrv/telnetsrv.h
common/utils/telnetsrv/telnetsrv.h
+2
-0
common/utils/telnetsrv/telnetsrv_enb_phycmd.c
common/utils/telnetsrv/telnetsrv_enb_phycmd.c
+2
-3
common/utils/websrv/websrv.c
common/utils/websrv/websrv.c
+163
-90
common/utils/websrv/websrv.h
common/utils/websrv/websrv.h
+1
-1
openair1/PHY/CODING/coding_load.c
openair1/PHY/CODING/coding_load.c
+2
-2
openair1/SIMULATION/TOOLS/random_channel.c
openair1/SIMULATION/TOOLS/random_channel.c
+4
-4
targets/ARCH/rfsimulator/simulator.c
targets/ARCH/rfsimulator/simulator.c
+3
-3
No files found.
common/utils/telnetsrv/telnetsrv.c
View file @
c4cf67f0
...
@@ -90,9 +90,12 @@ int get_phybsize(void) {
...
@@ -90,9 +90,12 @@ int get_phybsize(void) {
};
};
int
add_telnetcmd
(
char
*
modulename
,
telnetshell_vardef_t
*
var
,
telnetshell_cmddef_t
*
cmd
);
int
add_telnetcmd
(
char
*
modulename
,
telnetshell_vardef_t
*
var
,
telnetshell_cmddef_t
*
cmd
);
int
setoutput
(
char
*
buff
,
int
debug
,
telnet_printfunc_t
prnt
);
int
setoutput
(
char
*
buff
,
int
debug
,
telnet_printfunc_t
prnt
);
int
wsetoutput
(
char
*
fname
,
...
);
int
setparam
(
char
*
buff
,
int
debug
,
telnet_printfunc_t
prnt
);
int
setparam
(
char
*
buff
,
int
debug
,
telnet_printfunc_t
prnt
);
int
wsetparam
(
char
*
pname
,
...
);
int
history_cmd
(
char
*
buff
,
int
debug
,
telnet_printfunc_t
prnt
);
int
history_cmd
(
char
*
buff
,
int
debug
,
telnet_printfunc_t
prnt
);
telnetshell_vardef_t
telnet_vardef
[]
=
{
telnetshell_vardef_t
telnet_vardef
[]
=
{
{
"debug"
,
TELNET_VARTYPE_INT32
,
0
,
&
telnetparams
.
telnetdbg
},
{
"debug"
,
TELNET_VARTYPE_INT32
,
0
,
&
telnetparams
.
telnetdbg
},
{
"prio"
,
TELNET_VARTYPE_INT32
,
0
,
&
telnetparams
.
priority
},
{
"prio"
,
TELNET_VARTYPE_INT32
,
0
,
&
telnetparams
.
priority
},
...
@@ -105,10 +108,10 @@ telnetshell_vardef_t telnet_vardef[] = {
...
@@ -105,10 +108,10 @@ telnetshell_vardef_t telnet_vardef[] = {
};
};
telnetshell_cmddef_t
telnet_cmdarray
[]
=
{
telnetshell_cmddef_t
telnet_cmdarray
[]
=
{
{
"redirlog"
,
"[here,file,off]"
,
setoutput
},
{
"redirlog"
,
"[here,file,off]"
,
setoutput
,
wsetoutput
,
0
,
NULL
},
{
"param"
,
"[prio]"
,
setparam
},
{
"param"
,
"[prio]"
,
setparam
,
wsetparam
,
0
,
NULL
},
{
"history"
,
"[list,reset]"
,
history_cmd
},
{
"history"
,
"[list,reset]"
,
history_cmd
,
NULL
,
0
,
NULL
},
{
""
,
""
,
NULL
},
{
""
,
""
,
NULL
,
NULL
,
0
,
NULL
},
};
};
...
@@ -245,6 +248,11 @@ void redirstd(char *newfname,telnet_printfunc_t prnt ) {
...
@@ -245,6 +248,11 @@ void redirstd(char *newfname,telnet_printfunc_t prnt ) {
prnt
(
"ERROR: stderr redir to %s error %s"
,
strerror
(
errno
));
prnt
(
"ERROR: stderr redir to %s error %s"
,
strerror
(
errno
));
}
}
}
}
int
wsetoutput
(
char
*
fname
,
...
)
{
return
0
;
}
int
setoutput
(
char
*
buff
,
int
debug
,
telnet_printfunc_t
prnt
)
{
int
setoutput
(
char
*
buff
,
int
debug
,
telnet_printfunc_t
prnt
)
{
char
cmds
[
TELNET_MAX_MSGLENGTH
/
TELNET_CMD_MAXSIZE
][
TELNET_CMD_MAXSIZE
];
char
cmds
[
TELNET_MAX_MSGLENGTH
/
TELNET_CMD_MAXSIZE
][
TELNET_CMD_MAXSIZE
];
char
*
logfname
;
char
*
logfname
;
...
@@ -281,6 +289,10 @@ int setoutput(char *buff, int debug, telnet_printfunc_t prnt) {
...
@@ -281,6 +289,10 @@ int setoutput(char *buff, int debug, telnet_printfunc_t prnt) {
return
CMDSTATUS_FOUND
;
return
CMDSTATUS_FOUND
;
}
/* setoutput */
}
/* setoutput */
int
wsetparam
(
char
*
pname
,
...
)
{
return
0
;
}
int
setparam
(
char
*
buff
,
int
debug
,
telnet_printfunc_t
prnt
)
{
int
setparam
(
char
*
buff
,
int
debug
,
telnet_printfunc_t
prnt
)
{
char
cmds
[
TELNET_MAX_MSGLENGTH
/
TELNET_CMD_MAXSIZE
][
TELNET_CMD_MAXSIZE
];
char
cmds
[
TELNET_MAX_MSGLENGTH
/
TELNET_CMD_MAXSIZE
][
TELNET_CMD_MAXSIZE
];
memset
(
cmds
,
0
,
sizeof
(
cmds
));
memset
(
cmds
,
0
,
sizeof
(
cmds
));
...
...
common/utils/telnetsrv/telnetsrv.h
View file @
c4cf67f0
...
@@ -54,6 +54,7 @@
...
@@ -54,6 +54,7 @@
/* to add a set of new command to the telnet server shell */
/* to add a set of new command to the telnet server shell */
typedef
void
(
*
telnet_printfunc_t
)(
const
char
*
format
,
...);
typedef
void
(
*
telnet_printfunc_t
)(
const
char
*
format
,
...);
typedef
int
(
*
cmdfunc_t
)(
char
*
,
int
,
telnet_printfunc_t
prnt
);
typedef
int
(
*
cmdfunc_t
)(
char
*
,
int
,
telnet_printfunc_t
prnt
);
typedef
int
(
*
webfunc_t
)(
char
*
exec
,
...
);
typedef
int
(
*
qcmdfunc_t
)(
char
*
,
int
,
telnet_printfunc_t
prnt
,
void
*
arg
);
typedef
int
(
*
qcmdfunc_t
)(
char
*
,
int
,
telnet_printfunc_t
prnt
,
void
*
arg
);
#define TELNETSRV_CMDFLAG_PUSHINTPOOLQ (1<<0) // ask the telnet server to push the command in a thread pool queue
#define TELNETSRV_CMDFLAG_PUSHINTPOOLQ (1<<0) // ask the telnet server to push the command in a thread pool queue
...
@@ -61,6 +62,7 @@ typedef struct cmddef {
...
@@ -61,6 +62,7 @@ typedef struct cmddef {
char
cmdname
[
TELNET_CMD_MAXSIZE
];
char
cmdname
[
TELNET_CMD_MAXSIZE
];
char
helpstr
[
TELNET_HELPSTR_SIZE
];
char
helpstr
[
TELNET_HELPSTR_SIZE
];
cmdfunc_t
cmdfunc
;
cmdfunc_t
cmdfunc
;
webfunc_t
webfunc
;
unsigned
int
cmdflags
;
unsigned
int
cmdflags
;
void
*
qptr
;
void
*
qptr
;
}
telnetshell_cmddef_t
;
}
telnetshell_cmddef_t
;
...
...
common/utils/telnetsrv/telnetsrv_enb_phycmd.c
View file @
c4cf67f0
...
@@ -110,9 +110,8 @@ int dump_phyvars(char *buf, int debug, telnet_printfunc_t prnt) {
...
@@ -110,9 +110,8 @@ int dump_phyvars(char *buf, int debug, telnet_printfunc_t prnt) {
telnetshell_cmddef_t
phy_cmdarray
[]
=
{
telnetshell_cmddef_t
phy_cmdarray
[]
=
{
{
"disp"
,
"[phycnt,uedump,uestat UE<x>]"
,
dump_phyvars
},
{
"disp"
,
"[phycnt,uedump,uestat UE<x>]"
,
dump_phyvars
,
NULL
,
0
,
NULL
},
{
""
,
""
,
NULL
,
NULL
,
0
,
NULL
},
{
""
,
""
,
NULL
},
};
};
...
...
common/utils/websrv/websrv.c
View file @
c4cf67f0
...
@@ -54,31 +54,22 @@
...
@@ -54,31 +54,22 @@
{
"cert"
,
"<cert file>
\n
"
,
0
,
strptr
:&
websrvparams
.
certfile
,
defstrval
:
NULL
,
TYPE_STRING
,
0
},
{
"cert"
,
"<cert file>
\n
"
,
0
,
strptr
:&
websrvparams
.
certfile
,
defstrval
:
NULL
,
TYPE_STRING
,
0
},
{
"key"
,
"<key file>
\n
"
,
0
,
strptr
:&
websrvparams
.
keyfile
,
defstrval
:
NULL
,
TYPE_STRING
,
0
},
{
"key"
,
"<key file>
\n
"
,
0
,
strptr
:&
websrvparams
.
keyfile
,
defstrval
:
NULL
,
TYPE_STRING
,
0
},
};
};
int
websrv_add_endpoint
(
char
**
http_method
,
int
num_method
,
const
char
*
url_prefix
,
const
char
*
url_format
,
int
(
*
callback_function
[])(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
),
void
*
user_data
)
;
void
register_module_endpoints
(
cmdparser_t
*
module
)
;
void
websrv_printjson
(
char
*
label
,
json_t
*
jsonobj
){
void
websrv_printjson
(
char
*
label
,
json_t
*
jsonobj
){
char
*
jstr
=
json_dumps
(
jsonobj
,
0
);
char
*
jstr
=
json_dumps
(
jsonobj
,
0
);
LOG_I
(
UTIL
,
"[websrv] %s:%s
\n
"
,
label
,
(
jstr
==
NULL
)
?
"??
\n
"
:
jstr
);
LOG_I
(
UTIL
,
"[websrv] %s:%s
\n
"
,
label
,
(
jstr
==
NULL
)
?
"??
\n
"
:
jstr
);
}
}
int
websrv_add_endpoint
(
char
**
http_method
,
int
num_method
,
const
char
*
url_prefix
,
const
char
*
url_format
,
int
(
*
callback_function
[])(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
),
void
*
user_data
)
{
int
status
;
int
j
=
0
;
for
(
int
i
=
0
;
i
<
num_method
;
i
++
)
{
status
=
ulfius_add_endpoint_by_val
(
websrvparams
.
instance
,
http_method
[
i
],
url_prefix
,
url_format
,
0
,
callback_function
[
i
],
user_data
);
if
(
status
!=
U_OK
)
{
LOG_E
(
UTIL
,
"[websrv] cannot add endpoint %s %s/%s
\n
"
,
http_method
[
i
],
url_prefix
,
url_format
);
}
else
{
j
++
;
LOG_I
(
UTIL
,
"[websrv] endpoint %s %s/%s added
\n
"
,
http_method
[
i
],
url_prefix
,
url_format
);
}
}
return
j
;
}
/*----------------------------------------------------------------------------------------------------------*/
/* callbacks and utility functions to stream a file */
char
*
websrv_read_file
(
const
char
*
filename
)
{
char
*
websrv_read_file
(
const
char
*
filename
)
{
char
*
buffer
=
NULL
;
char
*
buffer
=
NULL
;
long
length
;
long
length
;
...
@@ -152,6 +143,7 @@ FILE *websrv_getfile(char *filename, struct _u_response * response) {
...
@@ -152,6 +143,7 @@ FILE *websrv_getfile(char *filename, struct _u_response * response) {
return
f
;
return
f
;
}
}
/*------------------------------------------------------------------------------------------------------------------------*/
/* callback processing main ((initial) url (<address>/<websrvparams.url> */
/* callback processing main ((initial) url (<address>/<websrvparams.url> */
int
websrv_callback_get_mainurl
(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
)
{
int
websrv_callback_get_mainurl
(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
)
{
...
@@ -163,6 +155,8 @@ int websrv_callback_get_mainurl(const struct _u_request * request, struct _u_res
...
@@ -163,6 +155,8 @@ int websrv_callback_get_mainurl(const struct _u_request * request, struct _u_res
return
U_CALLBACK_CONTINUE
;
return
U_CALLBACK_CONTINUE
;
}
}
/* default callback tries to find a file in the web server repo (path exctracted from <websrvparams.url>) and if found streams it */
int
websrv_callback_default
(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
)
{
int
websrv_callback_default
(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
)
{
LOG_I
(
UTIL
,
"[websrv] Requested file is: %s %s
\n
"
,
request
->
http_verb
,
request
->
http_url
);
LOG_I
(
UTIL
,
"[websrv] Requested file is: %s %s
\n
"
,
request
->
http_verb
,
request
->
http_url
);
if
(
request
->
map_post_body
!=
NULL
)
if
(
request
->
map_post_body
!=
NULL
)
...
@@ -183,6 +177,31 @@ int websrv_callback_get_mainurl(const struct _u_request * request, struct _u_res
...
@@ -183,6 +177,31 @@ int websrv_callback_get_mainurl(const struct _u_request * request, struct _u_res
return
U_CALLBACK_ERROR
;
return
U_CALLBACK_ERROR
;
return
U_CALLBACK_CONTINUE
;
return
U_CALLBACK_CONTINUE
;
}
}
/* callback processing url (<address>/oaisoftmodem/:module/variables or <address>/oaisoftmodem/:module/commands) */
int
websrv_callback_newmodule
(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
)
{
LOG_I
(
UTIL
,
"[websrv] callback_newmodule received %s %s
\n
"
,
request
->
http_verb
,
request
->
http_url
);
if
(
user_data
==
NULL
)
{
ulfius_set_string_body_response
(
response
,
500
,
"Cannot access oai softmodem data"
);
LOG_E
(
UTIL
,
"[websrv] callback_newmodule: user-data is NULL"
);
return
U_CALLBACK_COMPLETE
;
}
telnetsrv_params_t
*
telnetparams
=
(
telnetsrv_params_t
*
)
user_data
;
for
(
int
i
=
0
;
i
<
u_map_count
(
request
->
map_url
)
;
i
++
)
{
LOG_I
(
UTIL
,
"[websrv] url element %i %s : %s
\n
"
,
i
,
u_map_enum_keys
(
request
->
map_url
)[
i
],
u_map_enum_values
(
request
->
map_url
)[
i
]
);
if
(
strcmp
(
u_map_enum_keys
(
request
->
map_url
)[
i
],
"module"
)
==
0
)
{
for
(
int
j
=
0
;
telnetparams
->
CmdParsers
[
j
].
cmd
!=
NULL
;
j
++
)
{
/* found the module in the telnet server module array, it was likely not registered at init time */
if
(
strcmp
(
telnetparams
->
CmdParsers
[
j
].
module
,
u_map_enum_values
(
request
->
map_url
)[
i
])
==
0
)
{
register_module_endpoints
(
&
(
telnetparams
->
CmdParsers
[
j
])
);
return
U_CALLBACK_CONTINUE
;
}
}
/* for j */
}
}
/* for i */
ulfius_set_string_body_response
(
response
,
500
,
"Request for an unknown module"
);
return
U_CALLBACK_COMPLETE
;
}
/* callback processing url (<address>/oaisoftmodem/module/variables or <address>/oaisoftmodem/module/commands), options method */
/* callback processing url (<address>/oaisoftmodem/module/variables or <address>/oaisoftmodem/module/commands), options method */
int
websrv_callback_okset_softmodem_cmdvar
(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
)
{
int
websrv_callback_okset_softmodem_cmdvar
(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
)
{
LOG_I
(
UTIL
,
"[websrv] : callback_okset_softmodem_cmdvar received %s %s
\n
"
,
request
->
http_verb
,
request
->
http_url
);
LOG_I
(
UTIL
,
"[websrv] : callback_okset_softmodem_cmdvar received %s %s
\n
"
,
request
->
http_verb
,
request
->
http_url
);
...
@@ -199,7 +218,7 @@ int websrv_callback_okset_softmodem_cmdvar(const struct _u_request * request, st
...
@@ -199,7 +218,7 @@ int websrv_callback_okset_softmodem_cmdvar(const struct _u_request * request, st
ulfius_set_string_body_response
(
response
,
501
,
"Internal server error (ulfius_set_empty_body_response)"
);
ulfius_set_string_body_response
(
response
,
501
,
"Internal server error (ulfius_set_empty_body_response)"
);
LOG_E
(
UTIL
,
"[websrv] cannot set empty body response ulfius error %d
\n
"
,
us
);
LOG_E
(
UTIL
,
"[websrv] cannot set empty body response ulfius error %d
\n
"
,
us
);
}
}
return
U_CALLBACK_CO
NTINU
E
;
return
U_CALLBACK_CO
MPLET
E
;
}
}
int
websrv_callback_set_softmodemvar
(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
)
{
int
websrv_callback_set_softmodemvar
(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
)
{
LOG_I
(
UTIL
,
"[websrv] : callback_set_softmodemvar received %s %s
\n
"
,
request
->
http_verb
,
request
->
http_url
);
LOG_I
(
UTIL
,
"[websrv] : callback_set_softmodemvar received %s %s
\n
"
,
request
->
http_verb
,
request
->
http_url
);
...
@@ -220,7 +239,7 @@ int websrv_callback_set_softmodemvar(const struct _u_request * request, struct _
...
@@ -220,7 +239,7 @@ int websrv_callback_set_softmodemvar(const struct _u_request * request, struct _
const
char
*
vval
=
NULL
;
const
char
*
vval
=
NULL
;
json_t
*
J
=
json_object_get
(
jsbody
,
"name"
);
json_t
*
J
=
json_object_get
(
jsbody
,
"name"
);
vname
=
(
J
==
NULL
)
?
""
:
json_string_value
(
J
);
vname
=
(
J
==
NULL
)
?
""
:
json_string_value
(
J
);
for
(
telnetshell_vardef_t
*
var
=
modulestruct
->
var
;
var
!=
NULL
;
var
++
)
{
for
(
telnetshell_vardef_t
*
var
=
modulestruct
->
var
;
var
->
varvalptr
!=
NULL
;
var
++
)
{
if
(
strncmp
(
var
->
varname
,
vname
,
TELNET_CMD_MAXSIZE
)
==
0
){
if
(
strncmp
(
var
->
varname
,
vname
,
TELNET_CMD_MAXSIZE
)
==
0
){
J
=
json_object_get
(
jsbody
,
"value"
);
J
=
json_object_get
(
jsbody
,
"value"
);
vval
=
(
J
==
NULL
)
?
""
:
json_string_value
(
J
);
vval
=
(
J
==
NULL
)
?
""
:
json_string_value
(
J
);
...
@@ -241,42 +260,60 @@ int websrv_callback_set_softmodemvar(const struct _u_request * request, struct _
...
@@ -241,42 +260,60 @@ int websrv_callback_set_softmodemvar(const struct _u_request * request, struct _
return
U_CALLBACK_COMPLETE
;
return
U_CALLBACK_COMPLETE
;
}
}
/* callback processing module url (<address>/oaisoftmodem/module/commands), post method */
/* callback processing module url (<address>/oaisoftmodem/module/commands), post method */
int
websrv_processwebfunc
(
struct
_u_response
*
response
,
cmdparser_t
*
modulestruct
,
telnetshell_cmddef_t
*
cmd
)
{
LOG_I
(
UTIL
,
"[websrv] : executing command %s %s
\n
"
,
modulestruct
->
module
,
cmd
->
cmdname
);
return
501
;
}
int
websrv_callback_set_softmodemcmd
(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
)
{
int
websrv_callback_exec_softmodemcmd
(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
)
{
LOG_I
(
UTIL
,
"[websrv] : callback_set_softmodemcmd received %s %s
\n
"
,
request
->
http_verb
,
request
->
http_url
);
LOG_I
(
UTIL
,
"[websrv] : callback_exec_softmodemcmd received %s %s
\n
"
,
request
->
http_verb
,
request
->
http_url
);
json_error_t
jserr
;
if
(
user_data
==
NULL
)
{
json_t
*
jsbody
=
ulfius_get_json_body_request
(
request
,
&
jserr
);
ulfius_set_string_body_response
(
response
,
500
,
"Cannot access oai softmodem data"
);
LOG_E
(
UTIL
,
"[websrv] callback_exec_softmodemcmd: user-data is NULL"
);
return
U_CALLBACK_COMPLETE
;
}
cmdparser_t
*
modulestruct
=
(
cmdparser_t
*
)
user_data
;
json_t
*
jsbody
=
ulfius_get_json_body_request
(
request
,
NULL
);
int
httpstatus
=
404
;
int
httpstatus
=
404
;
char
*
msg
=
""
;
if
(
jsbody
==
NULL
)
{
if
(
jsbody
==
NULL
)
{
msg
=
"Unproperly formatted request body"
;
httpstatus
=
400
;
httpstatus
=
400
;
}
else
{
}
else
{
websrv_printjson
(
"callback_set_softmodemcmd: "
,
jsbody
);
websrv_printjson
(
"callback_exec_softmodemcmd: "
,
jsbody
);
if
(
user_data
==
NULL
)
{
httpstatus
=
500
;
LOG_E
(
UTIL
,
"[websrv] %s: NULL user data
\n
"
,
request
->
http_url
);
}
else
{
const
char
*
vname
=
NULL
;
json_t
*
J
=
json_object_get
(
jsbody
,
"name"
);
json_t
*
J
=
json_object_get
(
jsbody
,
"name"
);
vname
=
(
J
==
NULL
)
?
""
:
json_string_value
(
J
);
const
char
*
vname
=
json_string_value
(
J
);
if
(
vname
==
NULL
)
{
if
(
vname
[
0
]
==
0
)
{
msg
=
"No command name in request body"
;
LOG_E
(
UTIL
,
"[websrv] command name not found in body
\n
"
);
LOG_E
(
UTIL
,
"[websrv] command name not found in body
\n
"
);
httpstatus
=
400
;
httpstatus
=
400
;
}
else
{
}
else
{
httpstatus
=
501
;
httpstatus
=
500
;
msg
=
"Unknown command in request body"
;
for
(
telnetshell_cmddef_t
*
cmd
=
modulestruct
->
cmd
;
cmd
->
cmdfunc
!=
NULL
;
cmd
++
)
{
if
((
strcmp
(
cmd
->
cmdname
,
vname
)
==
0
)
&&
cmd
->
webfunc
!=
NULL
){
httpstatus
=
websrv_processwebfunc
(
response
,
modulestruct
,
cmd
);
break
;
}
}
//for
}
}
}
//user_data
}
//sbody
}
//sbody
ulfius_set_empty_body_response
(
response
,
httpstatus
);
if
(
httpstatus
!=
200
)
ulfius_set_string_body_response
(
response
,
httpstatus
,
msg
);
return
U_CALLBACK_COMPLETE
;
return
U_CALLBACK_COMPLETE
;
}
}
/* callback processing module url (<address>/oaisoftmodem/module/variables), get method*/
/* callback processing module url (<address>/oaisoftmodem/module/variables), get method*/
int
websrv_callback_get_softmodemvar
(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
)
{
int
websrv_callback_get_softmodemvar
(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
)
{
cmdparser_t
*
modulestruct
=
(
cmdparser_t
*
)
user_data
;
LOG_I
(
UTIL
,
"[websrv] : callback_get_softmodemvar received %s %s module %s
\n
"
,
request
->
http_verb
,
request
->
http_url
,
(
user_data
==
NULL
)
?
"NULL"
:
((
cmdparser_t
*
)
user_data
)
->
module
);
if
(
user_data
==
NULL
)
{
ulfius_set_string_body_response
(
response
,
500
,
"No variables defined for this module"
);
return
U_CALLBACK_COMPLETE
;
}
cmdparser_t
*
modulestruct
=
(
cmdparser_t
*
)
user_data
;
LOG_I
(
UTIL
,
"[websrv] received %s variables request
\n
"
,
modulestruct
->
module
);
LOG_I
(
UTIL
,
"[websrv] received %s variables request
\n
"
,
modulestruct
->
module
);
json_t
*
module
action
s
=
json_array
();
json_t
*
module
var
s
=
json_array
();
for
(
int
j
=
0
;
modulestruct
->
var
[
j
].
varvalptr
!=
NULL
;
j
++
)
{
for
(
int
j
=
0
;
modulestruct
->
var
[
j
].
varvalptr
!=
NULL
;
j
++
)
{
char
*
strval
=
telnet_getvarvalue
(
modulestruct
->
var
,
j
);
char
*
strval
=
telnet_getvarvalue
(
modulestruct
->
var
,
j
);
...
@@ -290,12 +327,12 @@ int websrv_callback_get_softmodemvar(const struct _u_request * request, struct _
...
@@ -290,12 +327,12 @@ int websrv_callback_get_softmodemvar(const struct _u_request * request, struct _
websrv_printjson
(
"oneaction"
,
oneaction
);
websrv_printjson
(
"oneaction"
,
oneaction
);
}
}
free
(
strval
);
free
(
strval
);
json_array_append
(
module
action
s
,
oneaction
);
json_array_append
(
module
var
s
,
oneaction
);
}
}
if
(
moduleactions
==
NULL
)
{
if
(
json_array_size
(
modulevars
)
==
0
)
{
LOG_
E
(
UTIL
,
"[websrv] cannot encode moduleactions response
for %s
\n
"
,
modulestruct
->
module
);
LOG_
I
(
UTIL
,
"[websrv] no defined variables
for %s
\n
"
,
modulestruct
->
module
);
}
else
{
}
else
{
websrv_printjson
(
"module
actions"
,
moduleaction
s
);
websrv_printjson
(
"module
vars"
,
modulevar
s
);
}
}
int
us
=
ulfius_add_header_to_response
(
response
,
"content-type"
,
"application/json"
);
int
us
=
ulfius_add_header_to_response
(
response
,
"content-type"
,
"application/json"
);
...
@@ -303,25 +340,32 @@ int websrv_callback_get_softmodemvar(const struct _u_request * request, struct _
...
@@ -303,25 +340,32 @@ int websrv_callback_get_softmodemvar(const struct _u_request * request, struct _
ulfius_set_string_body_response
(
response
,
501
,
"Internal server error (ulfius_add_header_to_response)"
);
ulfius_set_string_body_response
(
response
,
501
,
"Internal server error (ulfius_add_header_to_response)"
);
LOG_E
(
UTIL
,
"[websrv] cannot set response header type ulfius error %d
\n
"
,
us
);
LOG_E
(
UTIL
,
"[websrv] cannot set response header type ulfius error %d
\n
"
,
us
);
}
}
us
=
ulfius_set_json_body_response
(
response
,
200
,
module
action
s
);
us
=
ulfius_set_json_body_response
(
response
,
200
,
module
var
s
);
if
(
us
!=
U_OK
){
if
(
us
!=
U_OK
){
ulfius_set_string_body_response
(
response
,
501
,
"Internal server error (ulfius_set_json_body_response)"
);
ulfius_set_string_body_response
(
response
,
501
,
"Internal server error (ulfius_set_json_body_response)"
);
LOG_E
(
UTIL
,
"[websrv] cannot set body response ulfius error %d
\n
"
,
us
);
LOG_E
(
UTIL
,
"[websrv] cannot set body response ulfius error %d
\n
"
,
us
);
}
}
return
U_CALLBACK_CO
NTINU
E
;
return
U_CALLBACK_CO
MPLET
E
;
}
}
/* callback processing module url (<address>/oaisoftmodem/module/commands)*/
/* callback processing module url (<address>/oaisoftmodem/module/commands)*/
int
websrv_callback_get_softmodemcmd
(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
)
{
int
websrv_callback_get_softmodemcmd
(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
)
{
LOG_I
(
UTIL
,
"[websrv] : callback_get_softmodemcmd received %s %s module %s
\n
"
,
request
->
http_verb
,
request
->
http_url
,
(
user_data
==
NULL
)
?
"NULL"
:
((
cmdparser_t
*
)
user_data
)
->
module
);
if
(
user_data
==
NULL
)
{
ulfius_set_string_body_response
(
response
,
500
,
"No commands defined for this module"
);
return
U_CALLBACK_COMPLETE
;
}
cmdparser_t
*
modulestruct
=
(
cmdparser_t
*
)
user_data
;
cmdparser_t
*
modulestruct
=
(
cmdparser_t
*
)
user_data
;
LOG_I
(
UTIL
,
"[websrv] received %s commands request
\n
"
,
modulestruct
->
module
);
LOG_I
(
UTIL
,
"[websrv] received %s commands request
\n
"
,
modulestruct
->
module
);
json_t
*
modulesubcom
=
json_array
();
json_t
*
modulesubcom
=
json_array
();
for
(
int
j
=
0
;
modulestruct
->
cmd
[
j
].
cmdfunc
!=
NULL
;
j
++
)
{
for
(
int
j
=
0
;
modulestruct
->
cmd
[
j
].
cmdfunc
!=
NULL
;
j
++
)
{
if
(
strcasecmp
(
"help"
,
modulestruct
->
cmd
[
j
].
cmdname
)
!=
0
)
{
json_t
*
acmd
=
json_pack
(
"{s:s}"
,
"name"
,
modulestruct
->
cmd
[
j
].
cmdname
);
json_t
*
acmd
=
json_pack
(
"{s:s}"
,
"name"
,
modulestruct
->
cmd
[
j
].
cmdname
);
json_array_append
(
modulesubcom
,
acmd
);
json_array_append
(
modulesubcom
,
acmd
);
}
}
}
if
(
modulesubcom
==
NULL
)
{
if
(
modulesubcom
==
NULL
)
{
LOG_E
(
UTIL
,
"[websrv] cannot encode modulesubcom response for %s
\n
"
,
modulestruct
->
module
);
LOG_E
(
UTIL
,
"[websrv] cannot encode modulesubcom response for %s
\n
"
,
modulestruct
->
module
);
}
else
{
}
else
{
...
@@ -337,7 +381,7 @@ int websrv_callback_get_softmodemcmd(const struct _u_request * request, struct _
...
@@ -337,7 +381,7 @@ int websrv_callback_get_softmodemcmd(const struct _u_request * request, struct _
ulfius_set_string_body_response
(
response
,
501
,
"Internal server error (ulfius_set_json_body_response)"
);
ulfius_set_string_body_response
(
response
,
501
,
"Internal server error (ulfius_set_json_body_response)"
);
LOG_E
(
UTIL
,
"[websrv] cannot set body response ulfius error %d
\n
"
,
us
);
LOG_E
(
UTIL
,
"[websrv] cannot set body response ulfius error %d
\n
"
,
us
);
}
}
return
U_CALLBACK_CO
NTINU
E
;
return
U_CALLBACK_CO
MPLET
E
;
}
}
int
websrv_callback_get_softmodemmodules
(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
)
{
int
websrv_callback_get_softmodemmodules
(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
)
{
...
@@ -364,14 +408,14 @@ int websrv_callback_get_softmodemmodules(const struct _u_request * request, stru
...
@@ -364,14 +408,14 @@ int websrv_callback_get_softmodemmodules(const struct _u_request * request, stru
websrv_printjson
(
"cmdnames"
,
cmdnames
);
websrv_printjson
(
"cmdnames"
,
cmdnames
);
}
}
// ulfius_set_string_body_response(response, 200, cfgfile);
// ulfius_set_string_body_response(response, 200, cfgfile);
return
U_CALLBACK_CO
NTINU
E
;
return
U_CALLBACK_CO
MPLET
E
;
}
}
/* callback processing initial url (<address>/oaisoftmodem)*/
/* callback processing initial url (<address>/oaisoftmodem)*/
int
websrv_callback_get_softmodemstatus
(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
)
{
int
websrv_callback_get_softmodemstatus
(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
)
{
char
*
cfgfile
=
CONFIG_GETCONFFILE
;
char
*
cfgfile
=
CONFIG_GETCONFFILE
;
char
*
execfunc
=
get_softmodem_function
(
NULL
);
char
*
execfunc
=
get_softmodem_function
(
NULL
);
char
*
strtype
=
"string"
;
char
*
strtype
=
"string"
;
json_t
*
module
action
s
=
json_array
();
json_t
*
module
var
s
=
json_array
();
json_t
*
body1
=
json_pack
(
"{s:s,s:s,s:s,s:b}"
,
"name"
,
"config_file"
,
"value"
,
cfgfile
,
"type"
,
strtype
,
"modifiable"
,
0
);
json_t
*
body1
=
json_pack
(
"{s:s,s:s,s:s,s:b}"
,
"name"
,
"config_file"
,
"value"
,
cfgfile
,
"type"
,
strtype
,
"modifiable"
,
0
);
if
(
body1
==
NULL
)
{
if
(
body1
==
NULL
)
{
LOG_E
(
UTIL
,
"[websrv] cannot encode status body1 response
\n
"
);
LOG_E
(
UTIL
,
"[websrv] cannot encode status body1 response
\n
"
);
...
@@ -386,8 +430,8 @@ int websrv_callback_get_softmodemstatus(const struct _u_request * request, struc
...
@@ -386,8 +430,8 @@ int websrv_callback_get_softmodemstatus(const struct _u_request * request, struc
websrv_printjson
(
"status body2"
,
body2
);
websrv_printjson
(
"status body2"
,
body2
);
}
}
json_array_append
(
module
action
s
,
body1
);
json_array_append
(
module
var
s
,
body1
);
json_array_append
(
module
action
s
,
body2
);
json_array_append
(
module
var
s
,
body2
);
int
us
=
ulfius_add_header_to_response
(
response
,
"content-type"
,
"application/json"
);
int
us
=
ulfius_add_header_to_response
(
response
,
"content-type"
,
"application/json"
);
if
(
us
!=
U_OK
){
if
(
us
!=
U_OK
){
...
@@ -395,44 +439,82 @@ int websrv_callback_get_softmodemstatus(const struct _u_request * request, struc
...
@@ -395,44 +439,82 @@ int websrv_callback_get_softmodemstatus(const struct _u_request * request, struc
LOG_E
(
UTIL
,
"[websrv] cannot set status response header type ulfius error %d
\n
"
,
us
);
LOG_E
(
UTIL
,
"[websrv] cannot set status response header type ulfius error %d
\n
"
,
us
);
}
}
us
=
ulfius_set_json_body_response
(
response
,
200
,
module
action
s
);
us
=
ulfius_set_json_body_response
(
response
,
200
,
module
var
s
);
if
(
us
!=
U_OK
){
if
(
us
!=
U_OK
){
ulfius_set_string_body_response
(
response
,
501
,
"Internal server error (ulfius_set_json_body_response)"
);
ulfius_set_string_body_response
(
response
,
501
,
"Internal server error (ulfius_set_json_body_response)"
);
LOG_E
(
UTIL
,
"[websrv] cannot set status body response ulfius error %d
\n
"
,
us
);
LOG_E
(
UTIL
,
"[websrv] cannot set status body response ulfius error %d
\n
"
,
us
);
}
}
// ulfius_set_string_body_response(response, 200, cfgfile);
// ulfius_set_string_body_response(response, 200, cfgfile);
return
U_CALLBACK_CO
NTINU
E
;
return
U_CALLBACK_CO
MPLET
E
;
}
}
void
*
websrv_autoinit
()
{
int
websrv_add_endpoint
(
char
**
http_method
,
int
num_method
,
const
char
*
url_prefix
,
const
char
*
url_format
,
int
(
*
callback_function
[])(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
),
void
*
user_data
)
{
int
status
;
int
j
=
0
;
int
priority
=
(
user_data
==
NULL
)
?
10
:
0
;
for
(
int
i
=
0
;
i
<
num_method
;
i
++
)
{
status
=
ulfius_add_endpoint_by_val
(
&
(
websrvparams
.
instance
),
http_method
[
i
],
url_prefix
,
url_format
,
priority
,
callback_function
[
i
],
user_data
);
if
(
status
!=
U_OK
)
{
LOG_E
(
UTIL
,
"[websrv] cannot add endpoint %s %s/%s
\n
"
,
http_method
[
i
],
url_prefix
,
url_format
);
}
else
{
j
++
;
LOG_I
(
UTIL
,
"[websrv] endpoint %s %s/%s added
\n
"
,
http_method
[
i
],
url_prefix
,
url_format
);
}
}
return
j
;
}
/* add endpoints for a module, as defined in cmdparser_t telnet server structure */
void
register_module_endpoints
(
cmdparser_t
*
module
)
{
int
(
*
callback_functions_var
[
3
])(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
)
=
{
websrv_callback_get_softmodemvar
,
websrv_callback_okset_softmodem_cmdvar
,
websrv_callback_set_softmodemvar
};
char
*
http_methods
[
3
]
=
{
"GET"
,
"OPTIONS"
,
"POST"
};
int
(
*
callback_functions_cmd
[
3
])(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
)
=
{
websrv_callback_get_softmodemcmd
,
websrv_callback_okset_softmodem_cmdvar
,
websrv_callback_exec_softmodemcmd
};
char
prefixurl
[
TELNET_CMD_MAXSIZE
+
20
];
snprintf
(
prefixurl
,
TELNET_CMD_MAXSIZE
+
19
,
"oaisoftmodem/%s"
,
module
->
module
);
LOG_I
(
UTIL
,
"[websrv] add endpoints %s/[variables or commands]
\n
"
,
prefixurl
);
websrv_add_endpoint
(
http_methods
,
3
,
prefixurl
,
"commands"
,
callback_functions_cmd
,
module
);
websrv_add_endpoint
(
http_methods
,
3
,
prefixurl
,
"variables"
,
callback_functions_var
,
module
);
}
void
*
websrv_autoinit
()
{
int
ret
;
int
ret
;
telnetsrv_params_t
*
telnetparams
=
get_telnetsrv_params
();
telnetsrv_params_t
*
telnetparams
=
get_telnetsrv_params
();
memset
(
&
websrvparams
,
0
,
sizeof
(
websrvparams
));
memset
(
&
websrvparams
,
0
,
sizeof
(
websrvparams
));
config_get
(
websrvoptions
,
sizeof
(
websrvoptions
)
/
sizeof
(
paramdef_t
),
"websrv"
);
config_get
(
websrvoptions
,
sizeof
(
websrvoptions
)
/
sizeof
(
paramdef_t
),
"websrv"
);
websrvparams
.
instance
=
malloc
(
sizeof
(
struct
_u_instance
));
if
(
ulfius_init_instance
(
websrvparams
.
instance
,
websrvparams
.
listenport
,
NULL
,
NULL
)
!=
U_OK
)
{
if
(
ulfius_init_instance
(
&
(
websrvparams
.
instance
)
,
websrvparams
.
listenport
,
NULL
,
NULL
)
!=
U_OK
)
{
LOG_W
(
UTIL
,
"[websrv] Error,cannot init websrv
\n
"
);
LOG_W
(
UTIL
,
"[websrv] Error,cannot init websrv
\n
"
);
free
(
websrvparams
.
instance
);
return
(
NULL
);
return
(
NULL
);
}
}
u_map_put
(
websrvparams
.
instance
->
default_headers
,
"Access-Control-Allow-Origin"
,
"*"
);
u_map_put
(
websrvparams
.
instance
.
default_headers
,
"Access-Control-Allow-Origin"
,
"*"
);
// Maximum body size sent by the client is 1 Kb
// Maximum body size sent by the client is 1 Kb
websrvparams
.
instance
->
max_post_body_size
=
1024
;
websrvparams
.
instance
.
max_post_body_size
=
1024
;
// Endpoint list declaration
// Endpoint list declaration
//1: load the frontend code: files contained in the websrvparams.url directory
//1: load the frontend code: files contained in the websrvparams.url directory
ulfius_add_endpoint_by_val
(
websrvparams
.
instance
,
"GET"
,
websrvparams
.
url
,
NULL
,
0
,
&
websrv_callback_get_mainurl
,
NULL
);
ulfius_add_endpoint_by_val
(
&
(
websrvparams
.
instance
)
,
"GET"
,
websrvparams
.
url
,
NULL
,
0
,
&
websrv_callback_get_mainurl
,
NULL
);
//2: build the first page, when receiving the "oaisoftmodem" url
//2: build the first page, when receiving the "oaisoftmodem" url
// ulfius_add_endpoint_by_val(
websrvparams.instance
, "GET", "oaisoftmodem", "variables", 0, &websrv_callback_get_softmodemstatus, NULL);
// ulfius_add_endpoint_by_val(
&(websrvparams.instance)
, "GET", "oaisoftmodem", "variables", 0, &websrv_callback_get_softmodemstatus, NULL);
ulfius_add_endpoint_by_val
(
websrvparams
.
instance
,
"GET"
,
"oaisoftmodem"
,
"commands"
,
0
,
&
websrv_callback_get_softmodemmodules
,
NULL
);
ulfius_add_endpoint_by_val
(
&
(
websrvparams
.
instance
)
,
"GET"
,
"oaisoftmodem"
,
"commands"
,
0
,
&
websrv_callback_get_softmodemmodules
,
NULL
);
//3 default_endpoint declaration, it tries to open the file with the url name as specified in the request.It looks for the file
//3 default_endpoint declaration, it tries to open the file with the url name as specified in the request.It looks for the file
ulfius_set_default_endpoint
(
websrvparams
.
instance
,
&
websrv_callback_default
,
NULL
);
ulfius_set_default_endpoint
(
&
(
websrvparams
.
instance
)
,
&
websrv_callback_default
,
NULL
);
// endpoints
// endpoints
int
(
*
callback_functions_var
[
3
])(
const
struct
_u_request
*
request
,
int
(
*
callback_functions_var
[
3
])(
const
struct
_u_request
*
request
,
...
@@ -441,48 +523,39 @@ int websrv_callback_get_softmodemstatus(const struct _u_request * request, struc
...
@@ -441,48 +523,39 @@ int websrv_callback_get_softmodemstatus(const struct _u_request * request, struc
char
*
http_methods
[
3
]
=
{
"GET"
,
"OPTIONS"
,
"POST"
};
char
*
http_methods
[
3
]
=
{
"GET"
,
"OPTIONS"
,
"POST"
};
websrv_add_endpoint
(
http_methods
,
3
,
"oaisoftmodem"
,
"variables"
,
callback_functions_var
,
NULL
);
websrv_add_endpoint
(
http_methods
,
3
,
"oaisoftmodem"
,
"variables"
,
callback_functions_var
,
NULL
);
callback_functions_var
[
0
]
=
websrv_callback_get_softmodemvar
;
int
(
*
callback_functions_cmd
[
3
])(
const
struct
_u_request
*
request
,
struct
_u_response
*
response
,
void
*
user_data
)
=
{
websrv_callback_get_softmodemcmd
,
websrv_callback_okset_softmodem_cmdvar
,
websrv_callback_set_softmodemcmd
};
for
(
int
i
=
0
;
telnetparams
->
CmdParsers
[
i
].
var
!=
NULL
&&
telnetparams
->
CmdParsers
[
i
].
cmd
!=
NULL
;
i
++
)
{
char
prefixurl
[
TELNET_CMD_MAXSIZE
+
20
];
snprintf
(
prefixurl
,
TELNET_CMD_MAXSIZE
+
19
,
"oaisoftmodem/%s"
,
telnetparams
->
CmdParsers
[
i
].
module
);
LOG_I
(
UTIL
,
"[websrv] add endpoints %s/[variables or commands]
\n
"
,
prefixurl
);
websrv_add_endpoint
(
http_methods
,
3
,
prefixurl
,
"commands"
,
callback_functions_cmd
,
&
(
telnetparams
->
CmdParsers
[
i
])
);
websrv_add_endpoint
(
http_methods
,
3
,
prefixurl
,
"variables"
,
callback_functions_var
,
&
(
telnetparams
->
CmdParsers
[
i
]));
for
(
int
i
=
0
;
telnetparams
->
CmdParsers
[
i
].
cmd
!=
NULL
;
i
++
)
{
register_module_endpoints
(
&
(
telnetparams
->
CmdParsers
[
i
])
);
}
}
ulfius_add_endpoint_by_val
(
&
(
websrvparams
.
instance
),
"GET"
,
"oaisoftmodem"
,
"@module/commands"
,
10
,
websrv_callback_newmodule
,
telnetparams
);
ulfius_add_endpoint_by_val
(
&
(
websrvparams
.
instance
),
"GET"
,
"oaisoftmodem"
,
"@module/variables"
,
10
,
websrv_callback_newmodule
,
telnetparams
);
// Start the framework
// Start the framework
ret
=
U_ERROR
;
ret
=
U_ERROR
;
if
(
websrvparams
.
keyfile
!=
NULL
&&
websrvparams
.
certfile
!=
NULL
)
{
if
(
websrvparams
.
keyfile
!=
NULL
&&
websrvparams
.
certfile
!=
NULL
)
{
char
*
key_pem
=
websrv_read_file
(
websrvparams
.
keyfile
);
char
*
key_pem
=
websrv_read_file
(
websrvparams
.
keyfile
);
char
*
cert_pem
=
websrv_read_file
(
websrvparams
.
certfile
);
char
*
cert_pem
=
websrv_read_file
(
websrvparams
.
certfile
);
if
(
key_pem
==
NULL
&&
cert_pem
!=
NULL
)
{
if
(
key_pem
==
NULL
&&
cert_pem
!=
NULL
)
{
ret
=
ulfius_start_secure_framework
(
websrvparams
.
instance
,
key_pem
,
cert_pem
);
ret
=
ulfius_start_secure_framework
(
&
(
websrvparams
.
instance
)
,
key_pem
,
cert_pem
);
free
(
key_pem
);
free
(
key_pem
);
free
(
cert_pem
);
free
(
cert_pem
);
}
else
{
}
else
{
LOG_E
(
UTIL
,
"[websrv] Unable to load key %s and cert %s_
\n
"
,
websrvparams
.
keyfile
,
websrvparams
.
certfile
);
LOG_E
(
UTIL
,
"[websrv] Unable to load key %s and cert %s_
\n
"
,
websrvparams
.
keyfile
,
websrvparams
.
certfile
);
}
}
}
else
{
}
else
{
ret
=
ulfius_start_framework
(
websrvparams
.
instance
);
ret
=
ulfius_start_framework
(
&
(
websrvparams
.
instance
)
);
}
}
if
(
ret
==
U_OK
)
{
if
(
ret
==
U_OK
)
{
LOG_I
(
UTIL
,
"[websrv] Web server started on port %d"
,
websrvparams
.
instance
->
port
);
LOG_I
(
UTIL
,
"[websrv] Web server started on port %d"
,
websrvparams
.
instance
.
port
);
}
else
{
}
else
{
LOG_W
(
UTIL
,
"[websrv] Error starting web server on port %d
\n
"
,
websrvparams
.
instance
->
port
);
LOG_W
(
UTIL
,
"[websrv] Error starting web server on port %d
\n
"
,
websrvparams
.
instance
.
port
);
}
}
return
websrvparams
.
instance
;
return
&
(
websrvparams
.
instance
)
;
}
}
void
websrv_end
(
void
*
webinst
)
{
void
websrv_end
(
void
*
webinst
)
{
ulfius_stop_framework
((
struct
_u_instance
*
)
webinst
);
ulfius_stop_framework
((
struct
_u_instance
*
)
webinst
);
ulfius_clean_instance
((
struct
_u_instance
*
)
webinst
);
ulfius_clean_instance
((
struct
_u_instance
*
)
webinst
);
return
;
return
;
}
}
common/utils/websrv/websrv.h
View file @
c4cf67f0
...
@@ -41,7 +41,7 @@
...
@@ -41,7 +41,7 @@
/* websrv_params_t is an internal structure storing all the current parameters and */
/* websrv_params_t is an internal structure storing all the current parameters and */
/* global variables used by the web server */
/* global variables used by the web server */
typedef
struct
{
typedef
struct
{
struct
_u_instance
*
instance
;
// ulfius (web server) instance
struct
_u_instance
instance
;
// ulfius (web server) instance
unsigned
int
dbglvl
;
// debug level of the server
unsigned
int
dbglvl
;
// debug level of the server
int
priority
;
// server running priority
int
priority
;
// server running priority
unsigned
int
listenport
;
// ip port the telnet server is listening on
unsigned
int
listenport
;
// ip port the telnet server is listening on
...
...
openair1/PHY/CODING/coding_load.c
View file @
c4cf67f0
...
@@ -41,8 +41,8 @@
...
@@ -41,8 +41,8 @@
static
int
coding_setmod_cmd
(
char
*
buff
,
int
debug
,
telnet_printfunc_t
prnt
);
static
int
coding_setmod_cmd
(
char
*
buff
,
int
debug
,
telnet_printfunc_t
prnt
);
static
telnetshell_cmddef_t
coding_cmdarray
[]
=
{
static
telnetshell_cmddef_t
coding_cmdarray
[]
=
{
{
"mode"
,
"[sse,avx2,stdc,none]"
,
coding_setmod_cmd
},
{
"mode"
,
"[sse,avx2,stdc,none]"
,
coding_setmod_cmd
,
NULL
,
0
,
NULL
},
{
""
,
""
,
NULL
},
{
""
,
""
,
NULL
,
NULL
,
0
,
NULL
},
};
};
telnetshell_vardef_t
coding_vardef
[]
=
{
telnetshell_vardef_t
coding_vardef
[]
=
{
{
"maxiter"
,
TELNET_VARTYPE_INT32
,
0
,
&
max_turbo_iterations
},
{
"maxiter"
,
TELNET_VARTYPE_INT32
,
0
,
&
max_turbo_iterations
},
...
...
openair1/SIMULATION/TOOLS/random_channel.c
View file @
c4cf67f0
...
@@ -48,10 +48,10 @@ static int channelmod_show_cmd(char *buff, int debug, telnet_printfunc_t prnt);
...
@@ -48,10 +48,10 @@ static int channelmod_show_cmd(char *buff, int debug, telnet_printfunc_t prnt);
static
int
channelmod_modify_cmd
(
char
*
buff
,
int
debug
,
telnet_printfunc_t
prnt
);
static
int
channelmod_modify_cmd
(
char
*
buff
,
int
debug
,
telnet_printfunc_t
prnt
);
static
int
channelmod_print_help
(
char
*
buff
,
int
debug
,
telnet_printfunc_t
prnt
);
static
int
channelmod_print_help
(
char
*
buff
,
int
debug
,
telnet_printfunc_t
prnt
);
static
telnetshell_cmddef_t
channelmod_cmdarray
[]
=
{
static
telnetshell_cmddef_t
channelmod_cmdarray
[]
=
{
{
"help"
,
""
,
channelmod_print_help
},
{
"help"
,
""
,
channelmod_print_help
,
NULL
,
0
,
NULL
},
{
"show"
,
"<predef,current>"
,
channelmod_show_cmd
},
{
"show"
,
"<predef,current>"
,
channelmod_show_cmd
,
NULL
,
0
,
NULL
},
{
"modify"
,
"<channelid> <param> <value>"
,
channelmod_modify_cmd
},
{
"modify"
,
"<channelid> <param> <value>"
,
channelmod_modify_cmd
,
NULL
,
0
,
NULL
},
{
""
,
""
,
NULL
},
{
""
,
""
,
NULL
,
NULL
,
0
,
NULL
},
};
};
static
telnetshell_vardef_t
channelmod_vardef
[]
=
{
static
telnetshell_vardef_t
channelmod_vardef
[]
=
{
...
...
targets/ARCH/rfsimulator/simulator.c
View file @
c4cf67f0
...
@@ -91,12 +91,12 @@
...
@@ -91,12 +91,12 @@
static
int
rfsimu_setchanmod_cmd
(
char
*
buff
,
int
debug
,
telnet_printfunc_t
prnt
,
void
*
arg
);
static
int
rfsimu_setchanmod_cmd
(
char
*
buff
,
int
debug
,
telnet_printfunc_t
prnt
,
void
*
arg
);
static
telnetshell_cmddef_t
rfsimu_cmdarray
[]
=
{
static
telnetshell_cmddef_t
rfsimu_cmdarray
[]
=
{
{
"setmodel"
,
"<model name> <model type>"
,(
cmdfunc_t
)
rfsimu_setchanmod_cmd
,
TELNETSRV_CMDFLAG_PUSHINTPOOLQ
},
{
"setmodel"
,
"<model name> <model type>"
,(
cmdfunc_t
)
rfsimu_setchanmod_cmd
,
NULL
,
TELNETSRV_CMDFLAG_PUSHINTPOOLQ
},
{
""
,
""
,
NULL
},
{
""
,
""
,
NULL
,
NULL
,
0
},
};
};
static
telnetshell_vardef_t
rfsimu_vardef
[]
=
{
static
telnetshell_vardef_t
rfsimu_vardef
[]
=
{
{
""
,
0
,
NULL
}
{
""
,
0
,
0
,
NULL
}
};
};
pthread_mutex_t
Sockmutex
;
pthread_mutex_t
Sockmutex
;
...
...
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