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
alex037yang
OpenXG-RAN
Commits
30abbdf8
Commit
30abbdf8
authored
Sep 29, 2017
by
frtabu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
prepare for telnet server integration
parent
4ceb5916
Changes
11
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
1358 additions
and
2 deletions
+1358
-2
common/config/config_cmdline.c
common/config/config_cmdline.c
+1
-1
common/utils/telnetsrv/CMakeLists.txt
common/utils/telnetsrv/CMakeLists.txt
+52
-0
common/utils/telnetsrv/load_telnet.c
common/utils/telnetsrv/load_telnet.c
+45
-0
common/utils/telnetsrv/load_telnet.h
common/utils/telnetsrv/load_telnet.h
+5
-0
common/utils/telnetsrv/telnetsrv.c
common/utils/telnetsrv/telnetsrv.c
+696
-0
common/utils/telnetsrv/telnetsrv.h
common/utils/telnetsrv/telnetsrv.h
+108
-0
common/utils/telnetsrv/telnetsrv_phycmd.c
common/utils/telnetsrv/telnetsrv_phycmd.c
+134
-0
common/utils/telnetsrv/telnetsrv_phycmd.h
common/utils/telnetsrv/telnetsrv_phycmd.h
+34
-0
common/utils/telnetsrv/telnetsrv_proccmd.c
common/utils/telnetsrv/telnetsrv_proccmd.c
+226
-0
common/utils/telnetsrv/telnetsrv_proccmd.h
common/utils/telnetsrv/telnetsrv_proccmd.h
+56
-0
targets/RT/USER/lte-softmodem.c
targets/RT/USER/lte-softmodem.c
+1
-1
No files found.
common/config/config_cmdline.c
View file @
30abbdf8
...
...
@@ -54,7 +54,7 @@ char defbool[2]="1";
}
else
{
/* boolean value */
tmpval
=
defbool
;
}
printf
(
"cc 0x%08x, %i
\n
"
,
tmpval
,
argok
);
switch
(
cfgoptions
->
type
)
{
case
TYPE_STRING
:
...
...
common/utils/telnetsrv/CMakeLists.txt
0 → 100644
View file @
30abbdf8
cmake_minimum_required
(
VERSION 2.8 FATAL_ERROR
)
IF
(
DEFINED ENV{OPENAIR_DIR}
)
message
(
"...using oai source files in $ENV{OPENAIR_DIR}"
)
ELSE
()
message
(
"OPENAIR_DIR is not defined. You must run
\"
source oaienv
\"
from the oai root dir"
)
# exit early
return
()
ENDIF
()
set
(
APPROOT .
)
set
(
OPENAIR_DIR $ENV{OPENAIR_DIR}
)
set
(
OPENAIR_BUILD_DIR $ENV{OPENAIR_DIR}/cmake_targets
)
set
(
OPENAIR1_DIR $ENV{OPENAIR1_DIR}
)
set
(
OPENAIR2_DIR $ENV{OPENAIR2_DIR}
)
set
(
OPENAIR_PHY_DIR $ENV{OPENAIR1_DIR}/PHY
)
set
(
OPENAIR_TARGET_DIR $ENV{OPENAIR_DIR}/targets
)
set
(
OPENAIR_COMMONUTILS_DIR $ENV{OPENAIR_DIR}/common/utils
)
set
(
OPENAIR2_COMMON_DIR $ENV{OPENAIR_DIR}/openair2/COMMON
)
set
(
OPENAIR_ASN1INC
${
OPENAIR_BUILD_DIR
}
/lte_build_oai/build/CMakeFiles/Rel14
)
set
(
OPENAIR_NFAPIINC $ENV{NFAPI_DIR}
)
set
(
CMAKE_INSTALL_PREFIX $ENV{OPENAIR_TARGETS}
)
add_definitions
(
-DRel14 -DCMAKER -DENABLE_FXP -DENABLE_ITTI -DENABLE_NAS_UE_LOGGING -DENABLE_SECURITY -DENABLE_USE_CPU_EXECUTION_TIME -DENABLE_USE_MME -DENABLE_VCD -DENB_AGENT -DENB_MODE -DETHERNET=1 -DEXMIMO_IOT -DJUMBO_FRAME -DLINK_ENB_PDCP_TO_GTPV1U -DLOG_NO_THREAD -DMAC_CONTEXT -DMAX_NUM_CCs=1 -DNAS_BUILT_IN_UE -DNAS_UE -DNB_ANTENNAS_RX=2 -DNB_ANTENNAS_TX=2 -DNB_ANTENNAS_TXRX=2 -DNEW_FFT -DNO_RRM -DNone=1 -DOAI_NW_DRIVER_USE_NETLINK -DOPENAIR1 -DOPENAIR2 -DOPENAIR_LTE -DPC_DSP -DPC_TARGET -DPHYSIM -DPHY_CONTEXT -DPUCCH -DRel10=1 -DS1AP_VERSION=R10 -DTRACE_RLC_MUTEX -DUSER_MODE -DX2AP_VERSION=R11 -DXFORMS -mavx2 -msse4.1 -mssse3
)
add_compile_options
(
-fPIC -march=native -Ofast
)
include_directories
(
./
${
OPENAIR_COMMON_DIR
}
${
OPENAIR_DIR
}
${
OPENAIR1_DIR
}
${
OPENAIR2_DIR
}
${
OPENAIR2_COMMON_DIR
}
${
OPENAIR2_DIR
}
/UTIL/LOG
${
OPENAIR_COMMONUTILS_DIR
}
/msc
${
OPENAIR_COMMONUTILS_DIR
}
/itti
${
OPENAIR_ASN1INC
}
${
OPENAIR_TARGET_DIR
}
/COMMON
${
OPENAIR_TARGET_DIR
}
/ARCH/COMMON
${
OPENAIR_NFAPIINC
}
)
set
(
TELNETSRV_SOURCE
${
APPROOT
}
/telnetsrv.c
${
APPROOT
}
/telnetsrv_phycmd.c
${
APPROOT
}
/telnetsrv_proccmd.c
)
#set(TELNETSRV_ETHDEVCMD_SOURCE
# ${APPROOT}/telnetsrv/telnetsrv_ethdevcmd.c
# )
add_library
(
telnetsrv MODULE
${
TELNETSRV_SOURCE
}
)
#add_library(telnetsrv_ethdevcmd MODULE ${TELNETSRV_ETHDEVCMD_SOURCE} )
install
(
TARGETS telnetsrv DESTINATION bin
)
if
(
EXISTS
"
${
OPENAIR_BUILD_DIR
}
/lte_build_oai/build"
AND IS_DIRECTORY
"
${
OPENAIR_BUILD_DIR
}
/lte_build_oai/build"
)
install
(
TARGETS telnetsrv DESTINATION
${
OPENAIR_BUILD_DIR
}
/lte_build_oai/build
)
endif
(
EXISTS
"
${
OPENAIR_BUILD_DIR
}
/lte_build_oai/build"
AND IS_DIRECTORY
"
${
OPENAIR_BUILD_DIR
}
/lte_build_oai/build"
)
common/utils/telnetsrv/load_telnet.c
0 → 100644
View file @
30abbdf8
/* FT NOKBLF:
* this source is to be linked with the program using the telnet server, it looks for
* the telnet server dynamic library, possibly loads it and calls the telnet server
* init functions
*/
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/ioctl.h>
#include <dlfcn.h>
#include "telnetsrv.h"
#include "openair1/PHY/defs.h"
int
load_telnet
(
void
)
{
void
*
lib_handle
;
initfunc_t
fpi
;
lib_handle
=
dlopen
(
TELNETSRV_SHAREDLIB
,
RTLD_LAZY
|
RTLD_NODELETE
|
RTLD_GLOBAL
);
if
(
!
lib_handle
)
{
printf
(
"[TELNETSRV] telnet server is not loaded: %s
\n
"
,
dlerror
());
return
-
1
;
}
fpi
=
dlsym
(
lib_handle
,
"init_telnetsrv"
);
if
(
fpi
!=
NULL
)
{
fpi
(
cfgfile
);
}
else
{
fprintf
(
stderr
,
"[TELNETSRV] %s %d Telnet server init function not found %s
\n
"
,
__FILE__
,
__LINE__
,
dlerror
());
return
-
1
;
}
dlclose
(
lib_handle
);
return
0
;
}
common/utils/telnetsrv/load_telnet.h
0 → 100644
View file @
30abbdf8
#ifndef TELNET_LOAD_H
#define TELNET_LOAD_H
#include "telnetsrv.h"
extern
int
load_telnet
(
void
);
#endif
common/utils/telnetsrv/telnetsrv.c
0 → 100644
View file @
30abbdf8
This diff is collapsed.
Click to expand it.
common/utils/telnetsrv/telnetsrv.h
0 → 100644
View file @
30abbdf8
#ifndef TELNETSRV_H
#define TELNETSRV_H
#define TELNETSRV_SHAREDLIB "libtelnetsrv.so"
#define TELNET_PORT 9090
#define TELNET_MAX_MSGLENGTH 2048
#define TELNET_PROMPT "softmodem> "
#define TELNET_MAXCMD 20
#define TELNET_CMD_MAXSIZE 10
#define TELNET_HELPSTR_SIZE 80
/* status return by the command parser after it analysed user input */
#define CMDSTATUS_NOCMD 0
#define CMDSTATUS_EXIT 1
#define CMDSTATUS_FOUND 2
#define CMDSTATUS_VARNOTFOUND 3
#define CMDSTATUS_NOTFOUND 4
/*----------------------------------------------------------------------------*/
/* structure to be used when adding a module to the telnet server */
/* This is the second parameter of the add_telnetcmd function, which can be used */
/* to add a set of new command to the telnet server shell */
typedef
void
(
*
telnet_printfunc_t
)(
const
char
*
format
,
...);
typedef
int
(
*
cmdfunc_t
)(
char
*
,
int
,
telnet_printfunc_t
prnt
);
typedef
struct
cmddef
{
char
cmdname
[
TELNET_CMD_MAXSIZE
];
char
helpstr
[
TELNET_HELPSTR_SIZE
];
cmdfunc_t
cmdfunc
;
}
telnetshell_cmddef_t
;
/*----------------------------------------------------------------------------*/
/*structure to be used when adding a module to the telnet server */
/* This is the first parameter of the add_telnetcmd function, which can be used */
/* to add a set of new variables which can be got/set from the telnet server shell */
#define TELNET_VARTYPE_INT32 1
#define TELNET_VARTYPE_INT16 2
#define TELNET_VARTYPE_INT64 3
#define TELNET_VARTYPE_STRING 4
#define TELNET_VARTYPE_DOUBLE 5
#define TELNET_VARTYPE_PTR 6
typedef
struct
variabledef
{
char
varname
[
TELNET_CMD_MAXSIZE
];
char
vartype
;
void
*
varvalptr
;
}
telnetshell_vardef_t
;
/*----------------------------------------------------------------------------*/
/* internal structure definitions */
/* cmdparser_t is used to store all modules which have been added to the telnet server. */
/* Each time the add_telnetcmd function is used, the internal array cmdparser_t[] of the */
/* telnet server is populated with the new commands and variables */
typedef
struct
cmdparser
{
char
module
[
TELNET_CMD_MAXSIZE
];
// module name = first token of the telnet shell command
telnetshell_cmddef_t
*
cmd
;
// array of functions added to the shell
telnetshell_vardef_t
*
var
;
// array of variables added to the shell
}
cmdparser_t
;
/* telnetsrv_params_t is an internal structure storing all the current parameters and */
/* global variables used by the telnet server */
typedef
struct
{
pthread_t
telnet_pthread
;
// thread id of the telnet server
int
telnetdbg
;
// debug level of the server
int
priority
;
// server running priority
int
new_socket
;
// socket of the client connection
int
logfilefd
;
// file id of the log file when log output is redirected to a file
int
saved_stdout
;
// file id of the previous stdout, used to be able to restore original stdout
cmdparser_t
CmdParsers
[
TELNET_MAXCMD
];
// array of registered modules.
char
msgbuff
[
TELNET_MAX_MSGLENGTH
];
// internal buffer of the client_printf function which is used to print to the client terminal */
unsigned
int
listenport
;
// ip port the telnet server is listening on
unsigned
int
listenaddr
;
// ip address the telnet server is listening on
unsigned
int
loopcount
;
// loop command param: number of loop iteration
unsigned
int
loopdelay
;
// loop command param: delay in ms between 2 iterations
unsigned
int
phyprntbuff_size
;
// for phy module, dump_eNB_stats function buffer size
}
telnetsrv_params_t
;
typedef
int
(
*
addcmdfunc_t
)(
char
*
,
telnetshell_vardef_t
*
,
telnetshell_cmddef_t
*
);
typedef
int
(
*
initfunc_t
)(
char
*
cfgfile
);
typedef
void
(
*
settelnetmodule_t
)(
char
*
name
,
void
*
ptr
);
/*-------------------------------------------------------------------------------------------*/
/*
VT escape sequence definition, for smarter display....
*/
#define ESC "\x1b"
#define CSI "\x1b["
#define BOLD "\x1b[1m"
#define RED "\x1b[31m"
#define GREEN "\x1b[32m"
#define BLUE "\x1b[34m"
#define MAGENTA "\x1b[35m"
#define CYAN "\x1b[36m"
#define STDFMT "\x1b[0m"
/*---------------------------------------------------------------------------------------------*/
#ifdef TELNETSERVERCODE
int
add_telnetcmd
(
char
*
modulename
,
telnetshell_vardef_t
*
var
,
telnetshell_cmddef_t
*
cmd
);
void
set_sched
(
pthread_t
tid
,
int
pid
,
int
priority
);
void
set_affinity
(
pthread_t
tid
,
int
pid
,
int
coreid
);
extern
int
get_phybsize
();
#endif
#endif
common/utils/telnetsrv/telnetsrv_phycmd.c
0 → 100644
View file @
30abbdf8
#define _GNU_SOURCE
#include <string.h>
#include <pthread.h>
#define TELNETSERVERCODE
#include "telnetsrv.h"
#define TELNETSRV_PHYCMD_MAIN
#include "telnetsrv_phycmd.h"
char
*
prnbuff
;
extern
int
dump_eNB_stats
(
PHY_VARS_eNB
*
eNB
,
char
*
buffer
,
int
length
);
void
init_phytelnet
()
{
if
(
PHY_vars_eNB_g
!=
NULL
)
printf
(
"init_phytelnet: phy var at 0x%08lx
\n
"
,(
unsigned
long
int
)
PHY_vars_eNB_g
);
else
fprintf
(
stderr
,
"init_phytelnet: phy var not found...
\n
"
);
phy_vardef
[
TELNETVAR_PHYCC0
].
varvalptr
=
&
(
PHY_vars_eNB_g
[
0
][
0
]);
phy_vardef
[
TELNETVAR_PHYCC1
].
varvalptr
=
&
(
PHY_vars_eNB_g
[
0
][
1
]);
prnbuff
=
malloc
(
get_phybsize
()
);
if
(
prnbuff
==
NULL
)
{
fprintf
(
stderr
,
"Error %s on malloc in init_phytelnet()
\n
"
,
strerror
(
errno
));
}
}
void
display_uestatshead
(
telnet_printfunc_t
prnt
)
{
prnt
(
"cc ue rnti Dmcs Umcs tao tau Dbr Dtb
\n
"
);
}
void
dump_uestats
(
int
debug
,
telnet_printfunc_t
prnt
,
uint8_t
prntflag
)
{
int
p
;
p
=
dump_eNB_stats
(
PHY_vars_eNB_g
[
0
][
0
],
prnbuff
,
0
);
if
(
prntflag
>=
1
)
prnt
(
"%s
\n
"
,
prnbuff
);
if
(
debug
>=
1
)
prnt
(
"%i bytes printed
\n
"
,
p
);
}
void
display_uestats
(
int
debug
,
telnet_printfunc_t
prnt
,
int
ue
)
{
for
(
int
cc
=
0
;
cc
<
1
;
cc
++
)
{
if
((
PHY_vars_eNB_g
[
0
][
cc
]
->
dlsch
[
ue
][
0
]
->
rnti
>
0
)
&&
(
PHY_vars_eNB_g
[
0
][
cc
]
->
UE_stats
[
ue
].
mode
==
PUSCH
))
{
prnt
(
"%02i %04i %04hx %04i %04i %04i %-04i %04i %06i
\n
"
,
cc
,
ue
,
PHY_vars_eNB_g
[
0
][
cc
]
->
UE_stats
[
ue
].
crnti
,
PHY_vars_eNB_g
[
0
][
cc
]
->
dlsch
[
ue
][
0
]
->
harq_processes
[
0
]
->
mcs
,
0
,
// PHY_vars_eNB_g[0][cc]->ulsch[ue]->harq_processes[0]->mcs,
PHY_vars_eNB_g
[
0
][
cc
]
->
UE_stats
[
ue
].
UE_timing_offset
,
PHY_vars_eNB_g
[
0
][
cc
]
->
UE_stats
[
ue
].
timing_advance_update
,
PHY_vars_eNB_g
[
0
][
cc
]
->
UE_stats
[
ue
].
dlsch_bitrate
/
1000
,
PHY_vars_eNB_g
[
0
][
cc
]
->
UE_stats
[
ue
].
total_TBS
/
1000
);
}
}
}
void
display_phycounters
(
char
*
buf
,
int
debug
,
telnet_printfunc_t
prnt
)
{
prnt
(
" DLSCH kb DLSCH kb/s
\n
"
);
dump_uestats
(
debug
,
prnt
,
0
);
prnt
(
" %09i %06i
\n
"
,
PHY_vars_eNB_g
[
0
][
0
]
->
total_transmitted_bits
/
1000
,
PHY_vars_eNB_g
[
0
][
0
]
->
total_dlsch_bitrate
/
1000
);
}
int
dump_phyvars
(
char
*
buf
,
int
debug
,
telnet_printfunc_t
prnt
)
{
if
(
debug
>
0
)
prnt
(
"phy interface module received %s
\n
"
,
buf
);
if
(
strcasestr
(
buf
,
"phycnt"
)
!=
NULL
)
{
display_phycounters
(
buf
,
debug
,
prnt
);
}
if
(
strcasestr
(
buf
,
"uestat"
)
!=
NULL
)
{
char
*
cptr
=
strcasestr
(
buf
+
sizeof
(
"uestat"
),
"UE"
);
display_uestatshead
(
prnt
);
if
(
cptr
!=
NULL
)
{
int
ueidx
=
strtol
(
cptr
+
sizeof
(
"UE"
),
NULL
,
10
);
if
(
ueidx
<
NUMBER_OF_UE_MAX
&&
ueidx
>=
0
)
{
display_uestats
(
debug
,
prnt
,
ueidx
);
}
}
/* if cptr != NULL */
else
{
for
(
int
ue
=
0
;
ue
<
NUMBER_OF_UE_MAX
;
ue
++
)
{
display_uestats
(
debug
,
prnt
,
ue
);
}
}
/* else cptr != NULL */
}
/* uestat */
if
(
strcasestr
(
buf
,
"uedump"
)
!=
NULL
)
{
dump_uestats
(
debug
,
prnt
,
1
);
}
return
0
;
}
telnetshell_cmddef_t
phy_cmdarray
[]
=
{
{
"disp"
,
"[phycnt,uedump,uestat UE<x>]"
,
dump_phyvars
},
{
""
,
""
,
NULL
},
};
/*-------------------------------------------------------------------------------------*/
void
add_phy_cmds
()
{
init_phytelnet
();
add_telnetcmd
(
"phy"
,
phy_vardef
,
phy_cmdarray
);
}
common/utils/telnetsrv/telnetsrv_phycmd.h
0 → 100644
View file @
30abbdf8
#ifdef TELNETSRV_PHYCMD_MAIN
#include "UTIL/LOG/log.h"
#include "openair1/PHY/defs.h"
#define TELNETVAR_PHYCC0 0
#define TELNETVAR_PHYCC1 1
telnetshell_vardef_t
phy_vardef
[]
=
{
{
"phycc1"
,
TELNET_VARTYPE_PTR
,
NULL
},
{
"phycc2"
,
TELNET_VARTYPE_PTR
,
NULL
},
//{"iqmax",TELNET_VARTYPE_INT16,NULL},
//{"iqmin",TELNET_VARTYPE_INT16,NULL},
//{"loglvl",TELNET_VARTYPE_INT32,NULL},
//{"sndslp",TELNET_VARTYPE_INT32,NULL},
//{"rxrescale",TELNET_VARTYPE_INT32,NULL},
//{"txshift",TELNET_VARTYPE_INT32,NULL},
//{"rachemin",TELNET_VARTYPE_INT32,NULL},
//{"rachdmax",TELNET_VARTYPE_INT32,NULL},
{
""
,
0
,
NULL
}
};
extern
PHY_VARS_eNB
***
PHY_vars_eNB_g
;
#else
extern
void
add_phy_cmds
();
#endif
/*-------------------------------------------------------------------------------------*/
common/utils/telnetsrv/telnetsrv_proccmd.c
0 → 100644
View file @
30abbdf8
#define _GNU_SOURCE
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include <pthread.h>
#include <string.h>
#include <stdarg.h>
#include <dirent.h>
#define READCFG_DYNLOAD
#define TELNETSERVERCODE
#include "telnetsrv.h"
#define TELNETSRV_PROCCMD_MAIN
#include "log.h"
#include "telnetsrv_proccmd.h"
void
decode_procstat
(
char
*
record
,
int
debug
,
telnet_printfunc_t
prnt
)
{
char
prntline
[
160
];
char
*
procfile_fiels
;
char
*
strtokptr
;
char
*
lptr
;
int
fieldcnt
;
char
toksep
[
2
];
fieldcnt
=
0
;
procfile_fiels
=
strtok_r
(
record
,
" "
,
&
strtokptr
);
lptr
=
prntline
;
/*http://man7.org/linux/man-pages/man5/proc.5.html gives the structure of the stat file */
while
(
procfile_fiels
!=
NULL
&&
fieldcnt
<
42
)
{
if
(
strlen
(
procfile_fiels
)
==
0
)
continue
;
fieldcnt
++
;
sprintf
(
toksep
,
" "
);
switch
(
fieldcnt
)
{
case
1
:
/* id */
lptr
+=
sprintf
(
lptr
,
"%9.9s "
,
procfile_fiels
);
sprintf
(
toksep
,
")"
);
break
;
case
2
:
/* name */
lptr
+=
sprintf
(
lptr
,
"%20.20s "
,
procfile_fiels
+
1
);
break
;
case
3
:
//thread state
lptr
+=
sprintf
(
lptr
,
" %c "
,
procfile_fiels
[
0
]);
break
;
case
14
:
//time in user mode
case
15
:
//time in kernel mode
lptr
+=
sprintf
(
lptr
,
"%9.9s "
,
procfile_fiels
);
break
;
case
18
:
//priority
case
19
:
//nice
lptr
+=
sprintf
(
lptr
,
"%3.3s "
,
procfile_fiels
);
break
;
case
23
:
//vsize
lptr
+=
sprintf
(
lptr
,
"%9.9s "
,
procfile_fiels
);
break
;
case
39
:
//processor
lptr
+=
sprintf
(
lptr
,
" %2.2s "
,
procfile_fiels
);
break
;
case
41
:
//policy
lptr
+=
sprintf
(
lptr
,
"%3.3s "
,
procfile_fiels
);
break
;
default:
break
;
}
/* switch on fieldcnr */
procfile_fiels
=
strtok_r
(
NULL
,
toksep
,
&
strtokptr
);
}
/* while on proc_fields != NULL */
prnt
(
"%s
\n
"
,
prntline
);
}
/*decode_procstat */
void
read_statfile
(
char
*
fname
,
int
debug
,
telnet_printfunc_t
prnt
)
{
FILE
*
procfile
;
char
arecord
[
1024
];
procfile
=
fopen
(
fname
,
"r"
);
if
(
procfile
==
NULL
)
{
prnt
(
"Error: Couldn't open %s %i %s
\n
"
,
fname
,
errno
,
strerror
(
errno
));
return
;
}
if
(
fgets
(
arecord
,
sizeof
(
arecord
),
procfile
)
==
NULL
)
{
prnt
(
"Error: Nothing read from %s %i %s
\n
"
,
fname
,
errno
,
strerror
(
errno
));
fclose
(
procfile
);
return
;
}
fclose
(
procfile
);
decode_procstat
(
arecord
,
debug
,
prnt
);
}
void
print_threads
(
char
*
buf
,
int
debug
,
telnet_printfunc_t
prnt
)
{
char
aname
[
256
];
DIR
*
proc_dir
;
struct
dirent
*
entry
;
int
rt
;
prnt
(
" id name state USRmod KRNmod prio nice vsize proc pol
\n\n
"
);
snprintf
(
aname
,
sizeof
(
aname
),
"/proc/%d/stat"
,
getpid
());
read_statfile
(
aname
,
debug
,
prnt
);
prnt
(
"
\n
"
);
snprintf
(
aname
,
sizeof
(
aname
),
"/proc/%d/task"
,
getpid
());
proc_dir
=
opendir
(
aname
);
if
(
proc_dir
==
NULL
)
{
prnt
(
"Error: Couldn't open %s %i %s
\n
"
,
aname
,
errno
,
strerror
(
errno
));
return
;
}
while
((
entry
=
readdir
(
proc_dir
))
!=
NULL
)
{
if
(
entry
->
d_name
[
0
]
==
'.'
)
continue
;
snprintf
(
aname
,
sizeof
(
aname
),
"/proc/%d/task/%s/stat"
,
getpid
(),
entry
->
d_name
);
read_statfile
(
aname
,
debug
,
prnt
);
}
/* while entry != NULL */
closedir
(
proc_dir
);
}
/* print_threads */
int
proccmd_show
(
char
*
buf
,
int
debug
,
telnet_printfunc_t
prnt
)
{
extern
log_t
*
g_log
;
if
(
debug
>
0
)
prnt
(
" proccmd_show received %s
\n
"
,
buf
);
if
(
strcasestr
(
buf
,
"thread"
)
!=
NULL
)
{
print_threads
(
buf
,
debug
,
prnt
);
}
if
(
strcasestr
(
buf
,
"loglvl"
)
!=
NULL
)
{
for
(
int
i
=
MIN_LOG_COMPONENTS
;
i
<
MAX_LOG_COMPONENTS
;
i
++
){
prnt
(
"
\t
%s:
\t
%s
\t
%s
\n
"
,
g_log
->
log_component
[
i
].
name
,
map_int_to_str
(
log_verbosity_names
,
g_log
->
log_component
[
i
].
flag
),
map_int_to_str
(
log_level_names
,
g_log
->
log_component
[
i
].
level
));
}
}
return
0
;
}
int
proccmd_thread
(
char
*
buf
,
int
debug
,
telnet_printfunc_t
prnt
)
{
int
bv1
,
bv2
;
int
res
;
char
sv1
[
64
];
char
tname
[
32
];
bv1
=
0
;
bv2
=
0
;
sv1
[
0
]
=
0
;
if
(
debug
>
0
)
prnt
(
"proccmd_thread received %s
\n
"
,
buf
);
res
=
sscanf
(
buf
,
"%i %9s %i"
,
&
bv1
,
sv1
,
&
bv2
);
if
(
debug
>
0
)
prnt
(
" proccmd_thread: %i params = %i,%s,%i
\n
"
,
res
,
bv1
,
sv1
,
bv2
);
if
(
res
!=
3
)
{
prnt
(
"softmodem thread needs 3 params, %i received
\n
"
,
res
);
return
0
;
}
if
(
strcasestr
(
sv1
,
"prio"
)
!=
NULL
)
{
set_sched
(
0
,
bv1
,
bv2
);
}
else
if
(
strcasestr
(
sv1
,
"aff"
)
!=
NULL
)
{
set_affinity
(
0
,
bv1
,
bv2
);
}
else
{
prnt
(
"%s is not a valid thread command
\n
"
,
sv1
);
}
return
0
;
}
int
proccmd_exit
(
char
*
buf
,
int
debug
,
telnet_printfunc_t
prnt
)
{
extern
void
exit_fun
(
const
char
*
s
);
if
(
debug
>
0
)
prnt
(
"process module received %s
\n
"
,
buf
);
exit_fun
(
"telnet server received exit command
\n
"
);
return
0
;
}
int
proccmd_log
(
char
*
buf
,
int
debug
,
telnet_printfunc_t
prnt
)
{
int
idx1
=
0
;
int
idx2
=
NUM_LOG_LEVEL
-
1
;
int
s
=
sscanf
(
buf
,
"%*s %i-%i"
,
&
idx1
,
&
idx2
);
if
(
debug
>
0
)
prnt
(
"process module received %s
\n
"
,
buf
);
if
(
strcasestr
(
buf
,
"enable"
)
!=
NULL
)
{
set_glog_onlinelog
(
1
);
}
if
(
strcasestr
(
buf
,
"disable"
)
!=
NULL
)
{
set_glog_onlinelog
(
0
);
}
return
0
;
}
/*-------------------------------------------------------------------------------------*/
void
add_softmodem_cmds
()
{
add_telnetcmd
(
"softmodem"
,
NULL
,
proc_cmdarray
);
}
common/utils/telnetsrv/telnetsrv_proccmd.h
0 → 100644
View file @
30abbdf8
/*
* Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The OpenAirInterface Software Alliance licenses this file to You under
* the OAI Public License, Version 1.0 (the "License"); you may not use this file
* except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.openairinterface.org/?page_id=698
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*-------------------------------------------------------------------------------
* For more information about the OpenAirInterface (OAI) Software Alliance:
* contact@openairinterface.org
*/
/*! \file common/utils/telnetsrv_proccmd.h
* \brief: Include file defining telnet commands related to this linux process
* \author Francois TABURET
* \date 2017
* \version 0.1
* \company NOKIA BellLabs France
* \email: francois.taburet@nokia-bell-labs.com
* \note
* \warning
*/
#include <dlfcn.h>
#include "telnetsrv.h"
#ifdef TELNETSRV_PROCCMD_MAIN
/* global variable from log.c */
extern
mapping
*
log_level_names
;
extern
mapping
*
log_verbosity_names
;
extern
int
proccmd_show
(
char
*
buf
,
int
debug
,
telnet_printfunc_t
prnt
);
extern
int
proccmd_thread
(
char
*
buf
,
int
debug
,
telnet_printfunc_t
prnt
);
extern
int
proccmd_exit
(
char
*
buf
,
int
debug
,
telnet_printfunc_t
prnt
);
extern
int
proccmd_log
(
char
*
buf
,
int
debug
,
telnet_printfunc_t
prnt
);
telnetshell_cmddef_t
proc_cmdarray
[]
=
{
{
"show"
,
"loglvl|thread"
,
proccmd_show
},
{
"log"
,
"[enable,disable]"
,
proccmd_log
},
{
"thread"
,
"<id> aff|prio <aff|prio>"
,
proccmd_thread
},
{
"exit"
,
""
,
proccmd_exit
},
{
""
,
""
,
NULL
},
};
#else
extern
void
add_proccmd_cmds
();
#endif
/* TELNETSRV_PROCCMD_MAIN */
targets/RT/USER/lte-softmodem.c
View file @
30abbdf8
...
...
@@ -50,7 +50,7 @@
#include "PHY/defs.h"
#include "common/ran_context.h"
#include "common/config/config_userapi.h"
#include "common/utils/telnetsrv/load_telnet.h"
#undef MALLOC //there are two conflicting definitions, so we better make sure we don't use it at all
//#undef FRAME_LENGTH_COMPLEX_SAMPLES //there are two conflicting definitions, so we better make sure we don't use it at all
...
...
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