summaryrefslogtreecommitdiffstats
path: root/src/tuple_gen.cpp
blob: e408f27578ff6cf8b792c9e4c5157b86ba6cfe86 (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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
/*

 Wenxian Li
 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 "tuple_gen.h"
#include <string.h>
#include "utl_yaml.h"

void CServerPool::Create(IP_DIST_t  dist_value,
            uint32_t min_ip,
            uint32_t max_ip,
            double l_flow,
            double t_cps) {
    gen = new CIpPool();
    gen->set_dist(dist_value);
    uint32_t total_ip = max_ip - min_ip +1;
    gen->m_ip_info.resize(total_ip);

    if (total_ip > ((l_flow*t_cps/MAX_PORT))) {
        for(int idx=0;idx<total_ip;idx++){
            gen->m_ip_info[idx] = new CServerInfoL();
            gen->m_ip_info[idx]->set_ip(min_ip+idx);
        }
    } else {
        for(int idx=0;idx<total_ip;idx++){
            gen->m_ip_info[idx] = new CServerInfo();
            gen->m_ip_info[idx]->set_ip(min_ip+idx);
        }
    }
    gen->CreateBase();
}



void CClientPool::Create(IP_DIST_t  dist_value,
            uint32_t min_ip,
            uint32_t max_ip,
            double l_flow,
            double t_cps,
            CFlowGenList* fl_list,
            bool has_mac_map,
            uint16_t tcp_aging, 
            uint16_t udp_aging) {
    assert(max_ip>=min_ip);
    set_dist(dist_value);
    uint32_t total_ip = max_ip - min_ip +1;
    uint32_t avail_ip = total_ip;
    if (has_mac_map && (fl_list!=NULL)) {
        for(int idx=0;idx<total_ip;idx++){
            mac_addr_align_t *mac_adr = NULL;
            mac_adr = get_mac_addr_by_ip(fl_list, min_ip+idx);
            if (mac_adr == NULL) {
                avail_ip--;
            }
        }
    }
    if (avail_ip!=0) {
        m_ip_info.resize(avail_ip);
    } else {
        printf("\n Error, empty mac file is configured.\n"
               "Will ignore the mac file configuration.\n");
        m_ip_info.resize(total_ip);
    }

    if (total_ip > ((l_flow*t_cps/MAX_PORT))) {
        if (has_mac_map) {
            for(int idx=0;idx<total_ip;idx++){
                mac_addr_align_t *mac_adr = NULL;
                mac_adr = get_mac_addr_by_ip(fl_list, min_ip+idx);
                if (mac_adr != NULL) {
                    m_ip_info[idx] = new CClientInfoL(has_mac_map);
                    m_ip_info[idx]->set_ip(min_ip+idx);
                    m_ip_info[idx]->set_mac(mac_adr);
                }
            }
        } else {
            for(int idx=0;idx<total_ip;idx++){
                m_ip_info[idx] = new CClientInfoL(has_mac_map);
                m_ip_info[idx]->set_ip(min_ip+idx);
            }
        } 
    } else {
        if (has_mac_map) {
            for(int idx=0;idx<total_ip;idx++){
                mac_addr_align_t *mac_adr = NULL;
                mac_adr = get_mac_addr_by_ip(fl_list, min_ip+idx);
                if (mac_adr != NULL) {
                    m_ip_info[idx] = new CClientInfo(has_mac_map);
                    m_ip_info[idx]->set_ip(min_ip+idx);
                    m_ip_info[idx]->set_mac(mac_adr);
                }
            }
        } else {
            for(int idx=0;idx<total_ip;idx++){
                m_ip_info[idx] = new CClientInfo(has_mac_map);
                m_ip_info[idx]->set_ip(min_ip+idx);
            }
        } 
 
    }
    m_tcp_aging = tcp_aging;
    m_udp_aging = udp_aging;
    CreateBase();
}

void delay(int msec);

bool CTupleGeneratorSmart::add_client_pool(IP_DIST_t  client_dist,
                                          uint32_t min_client,
                                          uint32_t max_client,
                                          double l_flow,
                                          double t_cps,
                                          CFlowGenList* fl_list, 
                                          uint16_t tcp_aging,
                                          uint16_t udp_aging){
    assert(max_client>=min_client);
    CClientPool* pool = new CClientPool();
    pool->Create(client_dist, min_client, max_client,
                 l_flow, t_cps, fl_list, has_mac_mapping,
                 tcp_aging, udp_aging);

    m_client_pool.push_back(pool);
    return(true);
}

bool CTupleGeneratorSmart::add_server_pool(IP_DIST_t  server_dist,
                                          uint32_t min_server,
                                          uint32_t max_server,
                                          double l_flow,
                                          double t_cps,
                                          bool is_bundling){
    assert(max_server>=min_server);
    CServerPoolBase* pool;
    if (is_bundling) 
        pool = new CServerPool();
    else
        pool = new CServerPoolSimple();
    // we currently only supports mac mapping file for client
    pool->Create(server_dist, min_server, max_server,
                 l_flow, t_cps);
    m_server_pool.push_back(pool);
    return(true);
}



bool CTupleGeneratorSmart::Create(uint32_t _id,
                                  uint32_t thread_id,
                                  bool has_mac)
{
    m_thread_id     = thread_id;
    m_id = _id;
    m_was_init=true;
    has_mac_mapping = has_mac;
    return(true);
}

void CTupleGeneratorSmart::Delete(){
    m_was_init=false;
    has_mac_mapping = false;

    for (int idx=0;idx<m_client_pool.size();idx++) {
        m_client_pool[idx]->Delete();
        delete m_client_pool[idx];
    }
    m_client_pool.clear();

    for (int idx=0;idx<m_server_pool.size();idx++) {
        m_server_pool[idx]->Delete();
        delete m_server_pool[idx];
    }
    m_server_pool.clear();
}

void CTupleGenPoolYaml::Dump(FILE *fd){
    fprintf(fd,"  dist            : %d \n",m_dist);
    fprintf(fd,"  IPs         : %08x -%08x \n",m_ip_start,m_ip_end);
    fprintf(fd,"  clients per gb  : %d  \n",m_number_of_clients_per_gb);
    fprintf(fd,"  min clients     : %d  \n",m_min_clients);
    fprintf(fd,"  tcp aging       : %d sec \n",m_tcp_aging_sec);
    fprintf(fd,"  udp aging       : %d sec \n",m_udp_aging_sec);
}

bool CTupleGenPoolYaml::is_valid(uint32_t num_threads,bool is_plugins){
    if ( m_ip_start > m_ip_end ){
        printf(" ERROR The ip_start must be bigger than ip_end \n");
        return(false);
    }
    
    uint32_t ips= (m_ip_end - m_ip_start +1);
    if ( ips < num_threads ) {
        printf(" ERROR The number of ips should be at least number of threads %d \n",num_threads);
        return (false);
    }

    if (ips > 1000000) {
        printf("  The number of clients requested is %d maximum supported : %d \n",ips,1000000);
        return (false);
    }
    return (true);
}







void operator >> (const YAML::Node& node, CTupleGenPoolYaml & fi) {
    std::string tmp;
    node["name"] >> fi.m_name;
    node["distribution"] >> tmp ;
    if (tmp == "random") {
        fi.m_dist=cdRANDOM_DIST;
    }else if (tmp == "normal") {
        fi.m_dist=cdNORMAL_DIST;
    } else {
        fi.m_dist=cdSEQ_DIST;
    }
    utl_yaml_read_ip_addr(node,"ip_start",fi.m_ip_start);
    utl_yaml_read_ip_addr(node,"ip_end",fi.m_ip_end);
    fi.m_number_of_clients_per_gb = 0;

    fi.m_min_clients = 0;
    fi.m_is_bundling = false;
    fi.m_tcp_aging_sec = 0;
    fi.m_udp_aging_sec = 0;
    fi.m_dual_interface_mask = 0;
    try {
        utl_yaml_read_uint32(node,"clients_per_gb",fi.m_number_of_clients_per_gb);
    } catch ( const std::exception& e ) {
    ;}
    try {
        utl_yaml_read_uint32(node,"min_clients",fi.m_min_clients);
    } catch ( const std::exception& e ) {
    ;}
    try {
        utl_yaml_read_ip_addr(node,"dual_port_mask",fi.m_dual_interface_mask);
    } catch ( const std::exception& e ) {
    ;}
    try {
        utl_yaml_read_uint16(node,"tcp_aging",fi.m_tcp_aging_sec);
    } catch ( const std::exception& e ) {
    ;}
    try {
        utl_yaml_read_uint16(node,"udp_aging",fi.m_udp_aging_sec);
    } catch ( const std::exception& e ) {
    ;}
    try {
        node["track_ports"] >> fi.m_is_bundling;
    } catch ( const std::exception& e ) {
    ;}
}
void copy_global_pool_para(CTupleGenPoolYaml & src, CTupleGenPoolYaml & dst) {
    if (src.m_number_of_clients_per_gb == 0)
        src.m_number_of_clients_per_gb = dst.m_number_of_clients_per_gb;
    if (src.m_min_clients == 0)
        src.m_min_clients = dst.m_min_clients;
    if (src.m_dual_interface_mask == 0)
        src.m_dual_interface_mask = dst.m_dual_interface_mask;
    if (src.m_tcp_aging_sec == 0)
        src.m_tcp_aging_sec = dst.m_tcp_aging_sec;
    if (src.m_udp_aging_sec == 0)
        src.m_udp_aging_sec = dst.m_udp_aging_sec;
}
void operator >> (const YAML::Node& node, CTupleGenYamlInfo & fi) {
    std::string tmp;

    try {
        CTupleGenPoolYaml c_pool;
        CTupleGenPoolYaml s_pool;
        node["distribution"] >> tmp ;
        if (tmp == "random") {
            c_pool.m_dist=cdRANDOM_DIST;
        }else if (tmp == "normal") {
            c_pool.m_dist=cdNORMAL_DIST;
        } else {
            c_pool.m_dist=cdSEQ_DIST;
        }
        s_pool.m_dist = c_pool.m_dist;
        utl_yaml_read_ip_addr(node,"clients_start",c_pool.m_ip_start);
        utl_yaml_read_ip_addr(node,"clients_end",c_pool.m_ip_end);
        utl_yaml_read_ip_addr(node,"servers_start",s_pool.m_ip_start);
        utl_yaml_read_ip_addr(node,"servers_end",s_pool.m_ip_end);
        utl_yaml_read_uint32(node,"clients_per_gb",c_pool.m_number_of_clients_per_gb);
        utl_yaml_read_uint32(node,"min_clients",c_pool.m_min_clients);
        utl_yaml_read_ip_addr(node,"dual_port_mask",c_pool.m_dual_interface_mask);
        utl_yaml_read_uint16(node,"tcp_aging",c_pool.m_tcp_aging_sec);
        utl_yaml_read_uint16(node,"udp_aging",c_pool.m_udp_aging_sec);
        s_pool.m_dual_interface_mask = c_pool.m_dual_interface_mask;
        s_pool.m_is_bundling = false;
        fi.m_client_pool.push_back(c_pool);
        fi.m_server_pool.push_back(s_pool);
    }catch ( const std::exception& e ) {
        printf("No default generator defined.\n");
    }
    try{
        const YAML::Node& c_pool_info = node["generator_clients"];
        for (uint16_t idx=0;idx<c_pool_info.size();idx++) {
            CTupleGenPoolYaml pool;
            try {
                c_pool_info[idx] >> pool;
                if (fi.m_client_pool.size()>0) {
                    copy_global_pool_para(pool, fi.m_client_pool[0]);
                }
                fi.m_client_pool.push_back(pool);
            } catch ( const std::exception& e ) {
                printf("client pool in YAML is wrong\n");
            }
        }
    }catch ( const std::exception& e ) {
        printf("no client generator pool configured, using default pool\n");
    } 
    try {
        const YAML::Node& s_pool_info = node["generator_servers"];
        for (uint16_t idx=0;idx<s_pool_info.size();idx++) {
            CTupleGenPoolYaml pool;
            try {
                s_pool_info[idx] >> pool;
            } catch ( const std::exception& e ) {
                printf("server pool in YAML is wrong\n");
            }
            if (fi.m_server_pool.size()>0) {
                copy_global_pool_para(pool, fi.m_server_pool[0]);
            }
            fi.m_server_pool.push_back(pool);
        }
    }catch ( const std::exception& e ) {
        printf("no server generator pool configured, using default pool\n");
    } 
}

bool CTupleGenYamlInfo::is_valid(uint32_t num_threads,bool is_plugins){
    for (int i=0;i<m_client_pool.size();i++) {
        if (m_client_pool[i].is_valid(num_threads, is_plugins)==false) 
            return false;
    }
    for (int i=0;i<m_server_pool.size();i++) {
        if (m_server_pool[i].is_valid(num_threads, is_plugins)==false) 
            return false;
    }

    return true;
}


/* split the clients and server by dual_port_id and thread_id ,
  clients is splited by threads and dual_port_id
  servers is spliteed by dual_port_id */
void split_ips(uint32_t thread_id, 
               uint32_t total_threads, 
               uint32_t dual_port_id,
               CTupleGenPoolYaml& poolinfo,
               CIpPortion & portion){

    uint32_t chunks = poolinfo.getTotalIps()/total_threads;

    assert(chunks>0);

    uint32_t dual_if_mask=(dual_port_id*poolinfo.getDualMask());
    
    portion.m_ip_start  = poolinfo.get_ip_start()  + thread_id*chunks + dual_if_mask;
    portion.m_ip_end    = portion.m_ip_start + chunks -1 ;
}