summaryrefslogtreecommitdiffstats
path: root/src/platform_cfg.h
blob: b921c9c72a8360844a48a9a0f478a2f6bddd8308 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
#ifndef CPLATFORM_CFG_H
#define CPLATFORM_CFG_H

/*
 Hanoh Haim
 Cisco Systems, Inc.
*/

/*
Copyright (c) 2015-2015 Cisco Systems, Inc.

Licensed under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0

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.
*/

#include <yaml-cpp/yaml.h>
#include <stdint.h>
#include <stdio.h>
#include <vector>
#include <string>
#include "tw_cfg.h"
#include "trex_defs.h"


#define CONST_NB_MBUF_2_10G  (16380/2)

typedef enum {         MBUF_64        , // per dual port, per NUMA

                       MBUF_128       ,
                       MBUF_256       ,
                       MBUF_512       ,
                       MBUF_1024      ,
                       MBUF_2048      ,
                       MBUF_4096      ,
                       MBUF_9k        ,


                        // per NUMA
                       TRAFFIC_MBUF_64       ,
                       TRAFFIC_MBUF_128      ,
                       TRAFFIC_MBUF_256      ,
                       TRAFFIC_MBUF_512      ,
                       TRAFFIC_MBUF_1024     ,
                       TRAFFIC_MBUF_2048     ,
                       TRAFFIC_MBUF_4096     ,
                       TRAFFIC_MBUF_9k       ,


                       MBUF_DP_FLOWS        ,
                       MBUF_GLOBAL_FLOWS    , 
                       MBUF_ELM_SIZE         
              } mbuf_sizes_t;

const std::string * get_mbuf_names(void);

/*
#- port_limit      : 2         # this option can limit the number of port of the platform
  cpu_mask_offset : 4    # the offset of the cpu affinity 
  interface_mask  : [ "0000:11:00.00", "0000:11:00.01" ]  # interface that should be mask and not be considered
  scan_only_1g    : true
  enable_zmq_pub  : true  # enable publisher for stats data 
  zmq_pub_port    : 4500
  telnet_port     : 4501 # the telnet port in case it is enable ( with intercative mode )
  port_info       :  # set eh mac addr 
          - dest_mac        :   [0x0,0x0,0x0,0x1,0x0,0x00]  # port 0
            src_mac         :   [0x0,0x0,0x0,0x1,0x0,0x00]

  #for system of 1Gb/sec NIC or VM enable this  
  port_bandwidth_gb : 10  # port bandwidth 10Gb/sec , for VM put here 1 for XL710 put 40 
# memory configuration for 2x10Gb/sec system 
  memory    : 
     mbuf_64     : 16380 
     mbuf_128    : 8190
     mbuf_256    : 8190
     mbuf_512    : 8190
     mbuf_1024   : 8190
     mbuf_2048   : 2049

     traffic_mbuf_128    : 8190
     traffic_mbuf_256    : 8190
     traffic_mbuf_512    : 8190
     traffic_mbuf_1024   : 8190
     traffic_mbuf_2048   : 2049

     dp_flows    : 1048576 
     global_flows : 10240 
            
*/



struct CMacYamlInfo {
    std::vector     <uint8_t> m_dest_base;
    std::vector     <uint8_t> m_src_base;
    uint32_t m_def_gw;
    uint32_t m_ip;
    uint32_t m_mask;
    uint16_t m_vlan;
    void Dump(FILE *fd);

    void copy_dest(char *p);
    void copy_src(char *p);
    uint32_t get_def_gw();
    uint32_t get_ip();
    uint32_t get_vlan();
    uint32_t get_mask();

    void dump_mac_vector( std::vector<uint8_t> & v,FILE *fd){
        int i;
        for (i=0; i<5; i++) {
            fprintf(fd,"%02x:",v[i]);
        }
        fprintf(fd,"%02x\n",v[5]);
    }
};

/*
  platform :
        master_core  : 0
        latency_core : 5
        dual_if   :
             - socket   : 0
               threads  : [1,2,3,4]
             - socket   : 1
               threads  : [16,17,18,16]

*/

struct CPlatformDualIfYamlInfo {
public:
    uint32_t              m_socket; 
    std::vector <uint8_t> m_threads;
public:
    void Dump(FILE *fd);
};

struct CPlatformCoresYamlInfo {
public:

    CPlatformCoresYamlInfo(){
        m_is_exists=false;
    }
    bool             m_is_exists;
    uint32_t         m_master_thread; 
    uint32_t         m_rx_thread;  
    std::vector <CPlatformDualIfYamlInfo> m_dual_if;
public:
    void Dump(FILE *fd);
};



struct CPlatformMemoryYamlInfo {


public:

    CPlatformMemoryYamlInfo(){
        reset();
    }
    uint32_t         m_mbuf[MBUF_ELM_SIZE]; // relative to traffic norm to 2x10G ports 

public:
    void Dump(FILE *fd);
    void reset();
};


struct CPlatformYamlInfo {
public:
    CPlatformYamlInfo(){
        reset();
    }

    void reset(){

        m_if_mask.clear();
        m_mac_info.clear();
        m_if_list.clear();

        m_info_exist=false;
        m_port_limit_exist=false;
        m_port_limit=0xffffffff;

        m_if_mask_exist=false;

        m_enable_zmq_pub_exist=false;
        m_enable_zmq_pub=true;
        m_zmq_pub_port=4500;
        m_zmq_rpc_port = 4501;


        m_telnet_exist=false;
        m_telnet_port=4502  ;

        m_mac_info_exist=false;
        m_port_bandwidth_gb = 10;
        m_memory.reset();
        m_prefix="";
        m_limit_memory=""  ;
        m_thread_per_dual_if=1;
        m_tw.reset();

    }

    bool            m_info_exist; /* file exist ?*/

    bool            m_port_limit_exist;
    uint32_t        m_port_limit; 


    bool                          m_if_mask_exist;
    std::vector <std::string>     m_if_mask;

    std::vector <std::string>     m_if_list;

    std::string                   m_prefix;
    std::string                   m_limit_memory;
    uint32_t                      m_thread_per_dual_if;

    uint32_t                      m_port_bandwidth_gb;

    bool                          m_enable_zmq_pub_exist;
    bool                          m_enable_zmq_pub;
    uint16_t                      m_zmq_pub_port;


    bool                          m_telnet_exist;
    uint16_t                      m_telnet_port;

    uint16_t                      m_zmq_rpc_port;

    bool                       m_mac_info_exist;
    std::vector <CMacYamlInfo> m_mac_info;
    CPlatformMemoryYamlInfo     m_memory;
    CPlatformCoresYamlInfo      m_platform;
    CTimerWheelYamlInfo         m_tw;

public:
    std::string get_use_if_comma_seperated();
    void Dump(FILE *fd);
    int load_from_yaml_file(std::string file_name);
};



#endif