summaryrefslogtreecommitdiffstats
path: root/benchmarks/playbooks/ssl.yaml
blob: eea18bf9e9e7d6e12284c8a0d1660436df7b7046 (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
 - hosts: 127.0.0.1
   connection: local
   tasks:
    - name: making ssl directory
      file: path={{workingdir}}/{{Dest_dir}}/ssl state=directory
    - name: making temporary ssl directory
      file: path={{workingdir}}/{{Dest_dir}}/ssl/ssl_temp state=directory
 - hosts: "{{role}}"
   become: yes
   remote_user: "{{username}}"
   tasks:
    - name: checking_home directory
      shell: sudo echo $HOME
      register: home_dir

    - name: cleaning
      shell: sudo rm -rf $HOME/Open_SSL

    - name: cleaning previous results
      shell: sudo rm -rf $HOME/qtip_result

    - name: making OpenSSL temporary directory
      shell: sudo mkdir $HOME/Open_SSL

    - name: making  results temporary directory
      shell: sudo mkdir $HOME/qtip_result

    - include: ./sys_info_pbook.yaml
      vars:
          network: false

    - name: Installing OpenSSL dependencies when CentOS
      shell: sudo yum install git  wget gcc patch  perl-Time-HiRes autofconf automake libpcap-devel libtool -y
      when: ansible_os_family == "RedHat"

    - name: Installing OpenSSL dependencies when Ubuntu
      shell: sudo apt-get  install git gcc wget   perl autoconf automake libpcap-dev libtool -y
      when: ansible_os_family == "Debian"

    - name: Fetching OpenSSL
      shell: cd $HOME/Open_SSL/ && sudo wget http://artifacts.opnfv.org/qtip/utilities/openssl-1.0.2f.tar.gz

    - name: Untar OpenSSL
      shell: cd $HOME/Open_SSL/ && sudo tar -zxvf openssl-1.0.2f.tar.gz
    - name: configure
      shell: cd $HOME/Open_SSL/openssl-1.0.2f  && sudo ./config

    - name: make
      shell: cd  $HOME/Open_SSL/openssl-1.0.2f && sudo make

    - name: make install
      shell: cd  $HOME/Open_SSL/openssl-1.0.2f  && sudo make install

    - name: Benchmarking RSA signatures
      shell: cd $HOME/Open_SSL/openssl-1.0.2f/apps  &&  sudo ./openssl speed rsa >> $HOME/qtip_result/RSA_dump

    - name: Benchmaring AES-128-cbc cipher encryption  throughput
      shell: cd $HOME/Open_SSL/openssl-1.0.2f/apps  &&  sudo ./openssl speed -evp aes-128-cbc >> $HOME/qtip_result/AES-128-CBC_dump


    - name: Fetching result transformation script
      copy: src=./result_transform/ssl/ssl_transform.py dest={{home_dir.stdout}}/qtip_result

    - name: Transforming result
      shell: cd $HOME/qtip_result  &&  python ssl_transform.py

    - name: copy report formation script
      copy: src=./result_transform/final_report.py dest={{home_dir.stdout}}/qtip_result

    - name: consolidating report
      shell: cd $HOME/qtip_result &&  python final_report.py SSL {{fname}}

    - name: registering files
      shell: (cd $HOME/qtip_result/; find . -maxdepth 1 -name "*.json") | cut -d'/' -f2
      register: files_to_copy

    - name: copy results
      fetch:  src={{home_dir.stdout}}/qtip_result/{{item}} dest={{workingdir}}/{{Dest_dir}}/ssl/ssl_temp
      with_items: files_to_copy.stdout_lines

    - name: registering log files
      shell: (cd $HOME/qtip_result/; find . -maxdepth 1 -name "*.log") | cut -d'/' -f2
      register: copy_log_results

    - name: copying log results
      fetch:  src={{home_dir.stdout}}/qtip_result/{{item}} dest={{workingdir}}/{{Dest_dir}}/ssl/ssl_temp
      with_items: copy_log_results.stdout_lines


 - hosts: 127.0.0.1
   connection: local
   tasks:
    - name: echo
      shell: echo $PWD
    - name: extracting_json
      shell: ( find {{workingdir}}/{{Dest_dir}}/ssl/ssl_temp/ -name "*.json" | xargs cp -t {{workingdir}}/{{Dest_dir}}/ssl/)
    - name: making_logs_folder
      shell: mkdir -p {{workingdir}}/{{Dest_dir}}/ssl/logs
    - name: extracting_log
      shell: ( find {{workingdir}}/{{Dest_dir}}/ssl/ssl_temp/ -name "*.log"  | xargs cp -t {{workingdir}}/{{Dest_dir}}/ssl/logs)
    - name: removing ssl_temp
      shell: rm -rf {{workingdir}}/{{Dest_dir}}/ssl/ssl_temp