Trema, a Framework for Developing OpenFlow Controllers in Ruby and C – InApps is an article under the topic Software Development Many of you are most interested in today !! Today, let’s InApps.net learn Trema, a Framework for Developing OpenFlow Controllers in Ruby and C – InApps in today’s post !

Read more about Trema, a Framework for Developing OpenFlow Controllers in Ruby and C – InApps at Wikipedia



You can find content about Trema, a Framework for Developing OpenFlow Controllers in Ruby and C – InApps from the Wikipedia website

Our first post explored SDN and SDN controllers. In this article we will discuss Trema, a framework for developing OpenFlow controllers in Ruby and C. It is the first in a series of articles on different open source SDN controllers.

With Trema, the term framework is used to highlight the fact that the user has the freedom to configure and build an OpenFlow controller. The framework, designed to provide extensibility, includes all the necessary libraries and functionalities that are necessary to interact with OpenFlow switches. With support for both C and Ruby languages, Trema gives the user the freedom to choose based on their comfort level and performance requirements.

Trema is more a software platform for OpenFlow developers/researchers/enthusiasts than a production controller. For example, if the user wants an OpenFlow controller to manage the network topology, she just has to build and run Trema with an existing topology-manager application. The architecture of the Trema framework is as shown in Figure 1.

sdn2img1

Figure 1

Trema architecture includes core modules such as packet-in filter, switch and switch manager, OpenFlow application interface, necessary libraries, network DSL for configurations, an emulator for integrated development, and Tremashark to support debugging. Trema employs a multi-process model, in which many functional modules are loosely coupled via a messenger. The functional modules could be any of the user modules (applications) or the core modules. The modules interact via messenger using the following six important APIs — the first three are for receiving and last three are for sending messages:

This messenger architecture can help with dynamic reconfigurations and protecting the controller for deploying unstable modules. In summary, the messenger acts as a glue for linking user modules (applications), core modules and monitoring systems.

Figure 2 below is the summarized functional diagram of Trema. It highlights the significance of the messenger, and the core modules and their interaction with the user applications. In the remainder of this article, we describe the important components of the Trema architecture.

sdn2img2

Figure 2

Core Modules

The core modules of the Trema framework mostly include OpenFlow foundational modules and typically those that are useful for multiple applications.

Switch and Switch-Manager

These two core modules implement the necessary functionalities for interactions with the OpenFlow switches. They also maintain all the necessary information about the switches.

The switch manager is responsible for creating the instance (switch daemons) of a switch. Specifically, switch_manager listens for the incoming OpenFlow switch (OFS), and when the OFS comes in, it forks and creates a switch_daemon process and hands over the control of the OFS to the switch daemon. Hence, there will be one switch_daemon process for each OFS instance and only one instance of switch_manager. The service_name of a switch daemon starts initially with switch.(OFS IPaddr:port),  since the daemon cannot know the datapath ID (dpid) at startup. Once the switch daemon initializes and receives a feature_reply, it renames its service_name to switch.(dpid) using rename_message_received_callback.  You can find the code in switch_event_recv_featuresreply at switch_manager/switch.c.

Packet-In Filter

The PacketIn message is a way for the OpenFlow switch to send a captured packet to the controller. Switch sends the packets to the controller only when it is asked to do so by the controller or when there is no appropriate entry in the switch’s flow table.

Read More:   Programming and Model Railroads – InApps 2022

As the name indicates, the packet-in filter module is responsible for handing the packets that arrive at the controller from the OpenFlow switches. The switch module in Trema transfers the incoming packets to the packet-in filter, which would do the necessary changes before passing it to any of the registered applications.

TremaShark

Tremashark is the Wireshark plugin for keeping track of any interprocess communication events among the functional modules. The events could vary from messages to secure-channel status to the queue statuses.

Libraries

The libraries in Trema can be categorized under multiple headings as listed below:

  1. Protocol: OpenFlow.
  2. Interfaces: OpenFlow application, switch, management.
  3. Commonly used data structures: Linked list, doubly-linked list, hash table, timers.
  4. Utilities: Log, stats, wrapper.
  5. Network Protocols: TCP, IP, UDP, ether and etherIP, ICMP and IGMP.

From the above classifications, we can see that the libraries module typically includes stand-alone and independent functionalities and generic programming utilities.

Applications

The Trema framework includes about 15 to 20 different applications, also termed as user modules. These applications typically implement high-level functionalities, and can be seen as examples of SDN applications. Any application developer can make use of these applications as reference points to understand the usage of the APIs and develop newer applications. At a very high level, we can summarize categories of APIs as below:

  1. Create OpenFlow messages.
  2. Send OpenFlow messages
  3. Receive OpenFlow messages.
  4. Receive secure channel or switch-specific events

As we will see in future articles, these APIs will be exposed by almost all the OpenFlow controllers. In the below table we summarize important OpenFlow APIs that are used by 10 different applications:

User App
Name

Openflow
Message Send

Event / Openflow
Message Receive

Hello trema: set_switch_ready_handler;
Cbench-switchCreate_actions
Create_flow_mod
Send_openflow_message
Set_packet_in_handler;
List-switchesSet_list_switches_reply_handler
learning-switchCreate_actions
Create_flow_mod
Send_openflow_message
Set_packet_in_handler
DumperSet_error_handler
Set_vendor_handler
Set_features_reply_handler
Set_get_config_reply_handler
Set_packet_in_handler
Set_flow_removed_handler
Set_port_status_handler
Set_stats_reply_handler
Set_barrier_reply_handler
Set_queue_get_config_reply_handler
Set_switch_ready_handler
Set_switch_disconnected_handler
Multi-learning switchSet_packet_in_handler
Create_actions
Send_openflow_message
Add_periodic_event_handler
Set_switch_ready_handler
Set_switch_disconnected_handler
echo_switchSet_hello_handler
Switch_send_openflow_message
Set_features_request_handler
Create_features_reply
Switch_send_openflow_message
Set_switch_disconnected_handler
Set_echo_request_handler
Repeater_hubcreate_actions
create_flow_mod
send_openflow_message
set_packet_in_handler
Switch infoCreate_features_request
Send_openflow_message
Set_switch_ready_handler
Set_features_reply_handler
Switch monitorAdd_periodic_event_callback
Set_switch_ready_handler
Traffic monitorCreate_actions
Create_packet_out
Send_openflow_message
Add_periodic_event_callback
Set_packet_in_handler
Set_flow_removed_handler
Read More:   Design for Simplicity and Flexibility, and Let Users Bring Your Products to the Next Level – InApps Technology 2022

Running a Trema Application

Trema is an OpenFlow platform that supports the entire development cycle, including testing. It provides the seamless integration of the controller and the network environment (such as the emulator) for testing and validation.

There are two different options to run the Trema application. The first and straightforward way is to execute the application in the examples folder, with or without a configuration file. For example, to run the dumper application, one can just use the below command:

The command Trema allows the user to run and terminate applications that are developed on top of the core modules. Apart from the “run” option, the command can also be used to kill applications, send packets between hosts, dump the flow entries in the switches, and display the statistics.

All applications in Trema, typically, come with a configuration file, which defines how that particular application should behave (if needed) and what the integrated network configuration should be (if any). Defining the behavior of the application in the configuration file includes the following:

  1. Choice of applications or modules: The developer has to decide what all applications he would need for his controller. In some cases, if the feature the user is looking for is not present as an existing application in the framework, then the user may have to develop one. For example, if the user needs his controller to have MPLS support, he would develop a separate application for the same.
  2. Configuration of the modules: This mainly includes the configuration of the filters – defining which events should be handled by which component.
  3. Configuration of message routing: The message routing refers to the process of forwarding the incoming packets (from switch to the controller) to the appropriate modules.

The network configuration is typically defined in switches and hosts and their connectivity.

Feature image: “Enchanted Snowflakes” by Eric Kilby is licensed under CC BY-SA 2.0.



Source: InApps.net

Rate this post
As a Senior Tech Enthusiast, I bring a decade of experience to the realm of tech writing, blending deep industry knowledge with a passion for storytelling. With expertise in software development to emerging tech trends like AI and IoT—my articles not only inform but also inspire. My journey in tech writing has been marked by a commitment to accuracy, clarity, and engaging storytelling, making me a trusted voice in the tech community.

Let’s create the next big thing together!

Coming together is a beginning. Keeping together is progress. Working together is success.

Let’s talk

Get a custom Proposal

Please fill in your information and your need to get a suitable solution.

    You need to enter your email to download

      [cf7sr-simple-recaptcha]

      Success. Downloading...