From c6c7b1b7cfe680efca819b64dc6c1cb0e5ad485c Mon Sep 17 00:00:00 2001
From: Lionel Gauthier <lionel.gauthier@eurecom.fr>
Date: Wed, 12 Mar 2014 09:57:27 +0000
Subject: [PATCH] Automaticaly generate certificate for S6A

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@5147 818b1a75-f10b-46b9-bf7c-635c3b92a50f
---
 .../epc.sfr.hades.vlan.conf                   |  3 ++-
 .../PROJECTS/GENERIC-LTE-EPC/start_epc.bash   |  1 +
 targets/PROJECTS/GENERIC-LTE-EPC/utils.bash   | 21 +++++++++++++++++++
 3 files changed, 24 insertions(+), 1 deletion(-)

diff --git a/targets/PROJECTS/GENERIC-LTE-EPC/CONF/VLAN.VIRTUAL.YANG-HADES/epc.sfr.hades.vlan.conf b/targets/PROJECTS/GENERIC-LTE-EPC/CONF/VLAN.VIRTUAL.YANG-HADES/epc.sfr.hades.vlan.conf
index 2710eb469..2663c76d5 100755
--- a/targets/PROJECTS/GENERIC-LTE-EPC/CONF/VLAN.VIRTUAL.YANG-HADES/epc.sfr.hades.vlan.conf
+++ b/targets/PROJECTS/GENERIC-LTE-EPC/CONF/VLAN.VIRTUAL.YANG-HADES/epc.sfr.hades.vlan.conf
@@ -30,7 +30,8 @@ MME :
 
     S6A :
     {
-        S6A_CONF                   = "../objs/UTILS/CONF/s6a.conf";
+        # pwd=$OPENAIR_CN/objs
+        S6A_CONF                   = "./UTILS/CONF/s6a.conf";
     };
 
     # ------- SCTP definitions
diff --git a/targets/PROJECTS/GENERIC-LTE-EPC/start_epc.bash b/targets/PROJECTS/GENERIC-LTE-EPC/start_epc.bash
index 864f3634b..a66391928 100755
--- a/targets/PROJECTS/GENERIC-LTE-EPC/start_epc.bash
+++ b/targets/PROJECTS/GENERIC-LTE-EPC/start_epc.bash
@@ -284,6 +284,7 @@ fi
 ##################################################
 # LAUNCH MME + S+P-GW executable
 ##################################################
+check_s6a_certificate
 
 cd $OPENAIRCN_DIR/$OBJ_DIR
 
diff --git a/targets/PROJECTS/GENERIC-LTE-EPC/utils.bash b/targets/PROJECTS/GENERIC-LTE-EPC/utils.bash
index 75ab81572..3fbfe647b 100755
--- a/targets/PROJECTS/GENERIC-LTE-EPC/utils.bash
+++ b/targets/PROJECTS/GENERIC-LTE-EPC/utils.bash
@@ -1071,6 +1071,27 @@ clean_network() {
   done
 }
 
+check_s6a_certificate() {
+    if [ -d /usr/local/etc/freeDiameter ]
+    then
+        if [ -f /usr/local/etc/freeDiameter/user.cert.pem ]
+        then
+            full_hostname=`cat /usr/local/etc/freeDiameter/user.cert.pem | grep "Subject" | grep "CN" | cut -d '=' -f6`
+            if [ a$full_hostname == a`hostname`.eur ]
+            then
+                echo_success "S6A: Found valid certificate in /usr/local/etc/freeDiameter"
+                return 1
+            fi
+        fi
+    fi
+    echo_error "S6A: Did not find valid certificate in /usr/local/etc/freeDiameter"
+    echo_warning "S6A: generatting new certificate in /usr/local/etc/freeDiameter..."
+    cd $OPENAIRCN_DIR/S6A/freediameter
+    ./make_certs.sh
+    check_s6a_certificate
+    return 1
+}
+
 ###########################################################
 IPTABLES=/sbin/iptables
 THIS_SCRIPT_PATH=$(dirname $(readlink -f $0))
-- 
GitLab