Please note that this project has not been updated for a long time, hence it is not compatible with recent versions of Jitsi Meet and Jitsi Videobridge. The required effort to make it compatible seems substantial. See this discussion on the community forums
A traffic generator for Jitsi Videobridge.
Jitsi-Hammer is a program that connects to a Jitsi-Meet conference, initiates the video conference management by Focus, creates fake users, and generates RTP traffic for these fake users.
Note that the hammer requires Java 1.8 because of a dependency (see pom.xml for details).
If you want to stream one of the Pcaps in the resources/ directory, you're going to need Git LFS support. You can download it from here.
You can run the program by using the jitsi-hammer.sh script:
./jitsi-hammer.sh <MANDATORY_OPTIONS> [OPTIONAL_OPTIONS]
The only MANDATORY_OPTION for now is :
-BOSHuri - the full URI to use for BOSH connection
The OPTIONAL_OPTIONS are :
-XMPPdomain <domain name used by the XMPP server>
-BOSHhost <hostname of the BOSH server>
-MUCdomain <domain name used for the MUC>
-help <display the usage and help of the program>
-focusJID <JID of the focus user, by default this is 'focus.' + XMPPdomain>
-room <name of the MUC room (default : TestHammer)>
-port <port number of the BOSH server (default: 80)>
-users <number of fake users to create (default: 1)>
-length <length of the run in seconds (default: 0)>
-ivf <path to an ivf file for the video streams>
-videortpdump <path to a rtpdump file containing VP8 RTP packets for the video streams>
-audiortpdump <path to a rtpdump file containing Opus RTP packets for the video streams>
-overallstats <enable the logging of the overall stats at the end of the run>
-allstats <enable the logging of all the stats collected during the run>
-summarystats <enable the logging of the summary stats(min,max,mean,standard deviation) from the stats collected during the run>
-statspolling <time (in seconds) between two polling of stats (default: 5sec)>
-credentials <filepath to a file containing users credentials>
-interval <time in milliseconds between adding of users (default: 2sec)>
-nostats <disable all stats (default: stats are enabled)>
-channelLastN <"channelLastN" video conference property for initiated video conference>
-adaptiveLastN <"adaptiveLastN" video conference property for initiated video conference>
-adaptiveSimulcast <"adaptiveSimulcast" video conference property for initiated video conference>
-openSctp <"openSctp" video conference property for initiated video conference>
-startAudioMuted <"startAudioMuted" video conference property for initiated video conference>
-startVideoMuted <"startVideoMuted" video conference property for initiated video conference>
-simulcastMode <"simulcastMode" video conference property for initiated video conference>
Options XMPPdomain
, BOSHhost
, port
and MUCDomain
, if specified, will override the ones retrieved from BOSHuri
.
By default, the BOSHuri
's hostname is used as both BOSHhost
and XMPPdomain
, and MUCdomain
is that hostname with conference.
prefix, e.g. conference.meet.jit.si
will be used as MUCdomain
when accessing a BOSHuri
"https://meet.jit.si/http-bind/" .
The port
setting defaults for 80 for non-secure BOSHuri
, and respectively 443 will be used for HTTPS ones.
When the option -credentials
is used, instead of loging in anonymously to the XMPP server, Jitsi-Hammer will login with the credentials contained in the file.
The file must be encoded in UTF-8, and should be a list of "username:password" (the password and username are separeted by a ":") separated by newlines.
You must know that when -length N
is given, if N <= 0, the run will never stop.
For the audio streams, if -audiortpdump file
is not given, Jitsi-Hammer will generate silence.
For the video streams, if neither `-ivf file
nor -videortpdump file
are given, Jitsi-Hammer will generate a fading from white to black to white...
IVF is a simple video format described here (not official source). An IVF file basically just contains VP8 frames, with a fixed header for each.
IVF is more or less a toy format, generally used to test and debug VP8/VP9. But its simplicity makes it great to read.
You can create IVF from a webm file by usingmkvextract
:
mkvextract tracks input_file.webm ID:output_file.ivf
with ID being the id of the VP8 track (generally 0, you can get its value by using mkvinfo input_file.webm
.
Or you can also use ffmpeg
:
ffmpeg -i file_input.webm -vcodec copy file_output.ivf
rtpdump file is a binary file format, described here and here, used to record/dump and save RTP packets of a RTP stream.
Wireshark can create rtpdump files from RTP streams (if you decode them as RTP).
To do that, you first need to record with Wireshark an RTP stream, decode it as RTP, and then do the following :
In the resources directory, you can find :
-ivf
-audiortpdump
-videortpdump
.You can also find dtls10-cipher-suites-only.diff : it's a diff file used to patch older version of libjitsi to enable dtls. You don't need it.
Jitsi-Hammer can log all the streams stats that it can gets from the class MediaStreamStats. You can generate 3 types of stats :
-allstats
you will log the stats of ALL the streams at each turn of loop.-summarystats
you will log the summary stats like min/max/mean/standard deviation from all the stream stats at each turn of loop.-overallstats
you will log the overall stats of the stream for the entire run (not just at each turn of loop).The stats will be saved in JSON in a directory depending of your system :
You can adjust the logging configuration of the JVM with the file ./lib/logging.properties .
For now it is set to only display at a WARNING level, but you can set "org.jitsi.hammer.level" to INFO if you want to print the INFO log of Jitsi-Hammer (but not libjitsi).