Fix Asan build errors (#281) 91/176391/1 accepted/tizen/unified/20180420.081822 submit/tizen/20180419.060512
authordh79.pyun@samsung.com <dh79.pyun@samsung.com>
Tue, 17 Apr 2018 06:31:54 +0000 (15:31 +0900)
committerDoHyun Pyun <dh79.pyun@samsung.com>
Thu, 19 Apr 2018 04:33:38 +0000 (13:33 +0900)
Remove duplicate variables
multiple definition of `g_ESEasySetupResource'
multiple definition of `g_ESDevConfResource'
multiple definition of `g_ESCoapCloudConfResource'
multiple definition of `g_ESWiFiConfResource'

https://github.sec.samsung.net/RS7-IOTIVITY/IoTivity/pull/281
(cherry picked from commit 0cbbcfa65ff14d751dd1193f75b7c20269e26991)

Change-Id: If5f4a7d87e95350d70187cb21e070c5193130487
Signed-off-by: Oleg Ogurtsov <o.ogurtsov@samsung.com>
Signed-off-by: DoHyun Pyun <dh79.pyun@samsung.com>
15 files changed:
build_common/SConscript
extlibs/mbedtls/SConscript
extlibs/mbedtls/mbedtls/configs/config-mini-tls1_1.h
extlibs/mbedtls/mbedtls/configs/config-picocoin.h
extlibs/mbedtls/mbedtls/configs/config-suite-b.h
extlibs/mbedtls/mbedtls/configs/config-thread.h
extlibs/mbedtls/mbedtls/include/mbedtls/config.h
service/easy-setup/enrollee/src/samsung/sc_easysetup.c [changed mode: 0755->0644]
service/notification/src/provider/NSProviderCallbackResponse.c
service/notification/src/provider/NSProviderMemoryCache.c
service/notification/src/provider/NSProviderMemoryCache.h
service/notification/src/provider/NSProviderSubscription.c
service/notification/src/provider/NSProviderSubscription.h
service/notification/src/provider/NSProviderTopic.c
service/notification/src/provider/NSProviderTopic.h

index b373665..e16a27d 100644 (file)
@@ -104,6 +104,7 @@ help_vars.Add(ListVariable('RD_MODE', 'Resource Directory build mode', 'CLIENT',
 help_vars.Add(BoolVariable('SIMULATOR', 'Build with simulator module', False))
 
 help_vars.Add(BoolVariable('WITH_RA_IBB', 'Build with Remote Access module(workssys)', False))
+help_vars.Add(BoolVariable('WITH_ASAN', 'Build with Address Sanitizer support', False))
 
 
 if target_os in targets_disallow_multitransport:
index cfcec9d..152c4ba 100644 (file)
@@ -77,6 +77,11 @@ mbedtls_env.PrependUnique(CPPPATH = [mbedtls_dir])
 mbedtls_env.AppendUnique(CPPPATH = [mbedtls_dir+'include/'])
 mbedtls_env.AppendUnique(CFLAGS = ['-fPIC', '-Wall'])
 
+asan_build = env.get('WITH_ASAN')
+print 'Asan build: {}'.format(asan_build)
+if asan_build:
+    mbedtls_env.AppendUnique(CFLAGS = ['-UMBEDTLS_HAVE_ASM'])
+
 ######################################################################
 # Source files and Target(s)
 ######################################################################
index e22363d..2d6d5ac 100644 (file)
@@ -29,7 +29,9 @@
 #define MBEDTLS_CONFIG_H
 
 /* System support */
+#if !defined(__SANITIZE_ADDRESS__)
 #define MBEDTLS_HAVE_ASM
+#endif
 #define MBEDTLS_HAVE_TIME
 
 /* mbed TLS feature support */
index 26b24a9..7fe0ee7 100644 (file)
@@ -33,7 +33,9 @@
 #define MBEDTLS_CONFIG_H
 
 /* System support */
+#if !defined(__SANITIZE_ADDRESS__)
 #define MBEDTLS_HAVE_ASM
+#endif
 #define MBEDTLS_HAVE_TIME
 
 /* mbed TLS feature support */
index 3c4804c..45ad8d2 100644 (file)
@@ -36,7 +36,9 @@
 #define MBEDTLS_CONFIG_H
 
 /* System support */
+#if !defined(__SANITIZE_ADDRESS__)
 #define MBEDTLS_HAVE_ASM
+#endif
 #define MBEDTLS_HAVE_TIME
 
 /* mbed TLS feature support */
index 990fe08..f1f8ff5 100644 (file)
@@ -35,7 +35,9 @@
 #define MBEDTLS_CONFIG_H
 
 /* System support */
+#if !defined(__SANITIZE_ADDRESS__)
 #define MBEDTLS_HAVE_ASM
+#endif
 
 /* mbed TLS feature support */
 #define MBEDTLS_AES_ROM_TABLES
index 9798b39..083c56e 100644 (file)
@@ -39,6 +39,7 @@
  * \{
  */
 
+#if !defined(__SANITIZE_ADDRESS__)
 /**
  * \def MBEDTLS_HAVE_ASM
  *
@@ -54,6 +55,7 @@
  * Comment to disable the use of assembly code.
  */
 #define MBEDTLS_HAVE_ASM
+#endif
 
 /**
  * \def MBEDTLS_HAVE_SSE2
  * \{
  */
 
+#if !defined(__SANITIZE_ADDRESS__)
 /**
  * \def MBEDTLS_AESNI_C
  *
  * This modules adds support for the AES-NI instructions on x86-64
  */
 #define MBEDTLS_AESNI_C
+#endif
 
 /**
  * \def MBEDTLS_AES_C
  */
 #define MBEDTLS_OID_C
 
+#if !defined(__SANITIZE_ADDRESS__)
 /**
  * \def MBEDTLS_PADLOCK_C
  *
  * This modules adds support for the VIA PadLock on x86.
  */
 #define MBEDTLS_PADLOCK_C
+#endif
 
 /**
  * \def MBEDTLS_PEM_PARSE_C
old mode 100755 (executable)
new mode 100644 (file)
index 5c7a2e3..e86e1b9
  */
 #define SC_ENROLLEE_TAG "ES_SC_ENROLLEE"
 
-EasySetupResource g_ESEasySetupResource;
-WiFiConfResource g_ESWiFiConfResource;
-CoapCloudConfResource g_ESCoapCloudConfResource;
-DevConfResource g_ESDevConfResource;
-
 SCProperties g_SCProperties;
 
 static void ReadAccountData(OCRepPayload* payload,void** userdata);
index e702bab..2902df0 100644 (file)
@@ -34,7 +34,7 @@
 static NSSubscribeRequestCallback g_subscribeRequestCb = NULL;\r
 static NSProviderSyncInfoCallback g_syncCb = NULL;\r
 \r
-pthread_mutex_t nsInitMutex;\r
+extern pthread_mutex_t nsInitMutex;\r
 \r
 void NSRegisterSubscribeRequestCb(NSSubscribeRequestCallback subscribeRequestCb)\r
 {\r
index 9e4dd69..484f623 100644 (file)
@@ -34,6 +34,9 @@
         } \\r
     }\r
 \r
+pthread_mutex_t NSCacheMutex;\r
+pthread_mutexattr_t NSCacheMutexAttr;\r
+\r
 NSCacheList * NSProviderStorageCreate()\r
 {\r
     pthread_mutex_lock(&NSCacheMutex);\r
index df2733d..05440f8 100644 (file)
@@ -57,7 +57,7 @@ bool NSProviderIsTopicSubScribed(NSCacheElement * conTopicList, char * cId, char
 NSResult NSProviderDeleteConsumerTopic(NSCacheList * conTopicList,\r
         NSCacheTopicSubData * topicSubData);\r
 \r
-pthread_mutex_t NSCacheMutex;\r
-pthread_mutexattr_t NSCacheMutexAttr;\r
+extern pthread_mutex_t NSCacheMutex;\r
+extern pthread_mutexattr_t NSCacheMutexAttr;\r
 \r
 #endif /* _NS_PROVIDER_CACHEADAPTER__H_ */\r
index 3116cbb..3d01f3e 100644 (file)
@@ -21,6 +21,8 @@
 #include "NSProviderSubscription.h"\r
 #include "NSProviderListener.h"\r
 \r
+NSCacheList * consumerSubList;\r
+\r
 NSResult NSInitSubscriptionList()\r
 {\r
     NS_LOG(DEBUG, "NSInitSubscriptionList - IN");\r
index dd11273..89acd5e 100644 (file)
@@ -34,7 +34,7 @@
 #include "oic_malloc.h"\r
 #include <stdbool.h>\r
 \r
-NSCacheList * consumerSubList;\r
+extern NSCacheList * consumerSubList;\r
 \r
 NSResult NSInitSubscriptionList();\r
 NSResult NSSetSubscriptionAccessPolicy(bool policy);\r
index 055dc47..f6aa8e9 100644 (file)
@@ -23,6 +23,9 @@
 #include "oic_malloc.h"
 #include <pthread.h>
 
+NSCacheList * consumerTopicList;
+NSCacheList * registeredTopicList;
+
 NSResult NSSendTopicUpdation();
 
 NSResult NSInitTopicList()
index f75a1f5..5c85845 100644 (file)
@@ -42,8 +42,8 @@ typedef struct {
     NSResult result;\r
 } NSTopicSyncResult;\r
 \r
-NSCacheList * consumerTopicList;\r
-NSCacheList * registeredTopicList;\r
+extern NSCacheList * consumerTopicList;\r
+extern NSCacheList * registeredTopicList;\r
 \r
 NSResult NSInitTopicList();\r
 NSTopicList * NSGetTopics(char *consumerId);\r