diff mbox

[Powertop,v2,2/2] Add stubs to support Android platform

Message ID 1348493284-9375-2-git-send-email-rajagopal.venkat@linaro.org
State New
Headers show

Commit Message

rajagopal.venkat@linaro.org Sept. 24, 2012, 1:28 p.m. UTC
This patch adds stubs for features that are not supported
by Andriod. An header file which defines all stubs is
included only for Android builds.

Signed-off-by: Rajagopal Venkat <rajagopal.venkat@linaro.org>
---
 Android.mk          | 33 ++++++++++++++++++++++-----
 src/android_stubs.h | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/lib.h           |  4 ++++
 3 files changed, 96 insertions(+), 6 deletions(-)
 create mode 100644 src/android_stubs.h

Comments

Magnus Fromreide Sept. 26, 2012, 10:09 p.m. UTC | #1
On Mon, Sep 24, 2012 at 06:58:04PM +0530, Rajagopal Venkat wrote:
> This patch adds stubs for features that are not supported
> by Andriod. An header file which defines all stubs is
> included only for Android builds.
> 
> Signed-off-by: Rajagopal Venkat <rajagopal.venkat@linaro.org>
> diff --git a/src/android_stubs.h b/src/android_stubs.h
> new file mode 100644
> index 0000000..ed37c0e
> --- /dev/null
> +++ b/src/android_stubs.h
> +
> +/* Android C++ new operator does not throw exception on failure */
> +#define set_new_handler(x)

That they fail to throw exceptions from new is no reason to disable
set_new_handler, the newhandler is called by the runtime on out of memory
and is intended to allow the user to try fixing the issue. This is true for
the noexcept version as well. Is this yet another incompatibility?

> +/* define stubs for C++ exception handling */
> +#define try     	if (true)
> +#define catch(x) 	if (false)

If you should do this then I think it should be spelled

#define try if (true)
#define catch else if (false)

in order to not break

if (condition)
    try {
    } catch(type variable) {
    }

but it still breaks the syntax for it which can be shown by simply adding an
else clause to the if statement.

Oh, and furthermore I consider that Android needs a C++ compiler.

> +
> +/* Define __NR_perf_event_open if not already defined */
> +#if __arm__
> +#ifndef __NR_perf_event_open
> +#define __NR_perf_event_open    364
> +#endif
> +#endif
> +
> +/*
> + * bionic libc mbstowcs version returns zero when max parameter
> + * is zero, resulting infinite loops in powertop source. Add
> + * mbstowcs wrapper to fix it.
> + */
> +namespace pandroid {
> +	extern "C" inline size_t mbstowcs(wchar_t *dst,
> +			const char *src, size_t len)
> +	{
> +		return ::mbstowcs(dst, src, ::strlen(src));
> +	}
> +}
> +
> +#define mbstowcs(dst, src, len)		pandroid::mbstowcs(dst, src, len)

Still broken.
If dst isn't a NULL pointer then len is the limit on the length of the
destination buffer. In throwing away this you open up for stack smashing
attacks.

/MF
Sergey Senozhatsky Sept. 26, 2012, 11 p.m. UTC | #2
On (09/27/12 00:09), Magnus Fromreide wrote:
> That they fail to throw exceptions from new is no reason to disable
> set_new_handler, the newhandler is called by the runtime on out of memory
> and is intended to allow the user to try fixing the issue. This is true for
> the noexcept version as well. Is this yet another incompatibility?
>


right. the funny thing is, guess what, gcc actually has "#ifdef __EXCEPTIONS"
within operator new()

 44 _GLIBCXX_WEAK_DEFINITION void *
 45 operator new (std::size_t sz) _GLIBCXX_THROW (std::bad_alloc)
 46 {
 47   void *p;
 48 
 49   /* malloc (0) is unpredictable; avoid it.  */
 50   if (sz == 0)
 51     sz = 1;
 52   p = (void *) malloc (sz);
 53   while (p == 0)
 54     {
 55       new_handler handler = __new_handler;
 56       if (! handler)
 57 #ifdef __EXCEPTIONS
 58         throw bad_alloc();
 59 #else
 60         std::abort();
 61 #endif
 62       handler ();
 63       p = (void *) malloc (sz);
 64     }
 65 
 66   return p;
 67 }


It tourned out, that __EXCEPTIONS with us (for operator new and STL) since 2001
"2001-02-15  Benjamin Kosnik  <bkoz@redhat.com>"

So, I guess this is how Google has came up with the idea of C++ w/o exceptions.

Wow.

	-ss

 
> > +/* define stubs for C++ exception handling */
> > +#define try     	if (true)
> > +#define catch(x) 	if (false)
> 
> If you should do this then I think it should be spelled
> 
> #define try if (true)
> #define catch else if (false)
> 
> in order to not break
> 
> if (condition)
>     try {
>     } catch(type variable) {
>     }
> 
> but it still breaks the syntax for it which can be shown by simply adding an
> else clause to the if statement.
> 
> Oh, and furthermore I consider that Android needs a C++ compiler.
> 
> > +
> > +/* Define __NR_perf_event_open if not already defined */
> > +#if __arm__
> > +#ifndef __NR_perf_event_open
> > +#define __NR_perf_event_open    364
> > +#endif
> > +#endif
> > +
> > +/*
> > + * bionic libc mbstowcs version returns zero when max parameter
> > + * is zero, resulting infinite loops in powertop source. Add
> > + * mbstowcs wrapper to fix it.
> > + */
> > +namespace pandroid {
> > +	extern "C" inline size_t mbstowcs(wchar_t *dst,
> > +			const char *src, size_t len)
> > +	{
> > +		return ::mbstowcs(dst, src, ::strlen(src));
> > +	}
> > +}
> > +
> > +#define mbstowcs(dst, src, len)		pandroid::mbstowcs(dst, src, len)
> 
> Still broken.
> If dst isn't a NULL pointer then len is the limit on the length of the
> destination buffer. In throwing away this you open up for stack smashing
> attacks.
>
Chris Ferron Sept. 28, 2012, 4:54 p.m. UTC | #3
On 09/26/2012 04:00 PM, Sergey Senozhatsky wrote:
> On (09/27/12 00:09), Magnus Fromreide wrote:
>> That they fail to throw exceptions from new is no reason to disable
>> set_new_handler, the newhandler is called by the runtime on out of memory
>> and is intended to allow the user to try fixing the issue. This is true for
>> the noexcept version as well. Is this yet another incompatibility?
>>
>
> right. the funny thing is, guess what, gcc actually has "#ifdef __EXCEPTIONS"
> within operator new()
>
>   44 _GLIBCXX_WEAK_DEFINITION void *
>   45 operator new (std::size_t sz) _GLIBCXX_THROW (std::bad_alloc)
>   46 {
>   47   void *p;
>   48
>   49   /* malloc (0) is unpredictable; avoid it.  */
>   50   if (sz == 0)
>   51     sz = 1;
>   52   p = (void *) malloc (sz);
>   53   while (p == 0)
>   54     {
>   55       new_handler handler = __new_handler;
>   56       if (! handler)
>   57 #ifdef __EXCEPTIONS
>   58         throw bad_alloc();
>   59 #else
>   60         std::abort();
>   61 #endif
>   62       handler ();
>   63       p = (void *) malloc (sz);
>   64     }
>   65
>   66   return p;
>   67 }
>
>
> It tourned out, that __EXCEPTIONS with us (for operator new and STL) since 2001
> "2001-02-15  Benjamin Kosnik  <bkoz@redhat.com>"
>
> So, I guess this is how Google has came up with the idea of C++ w/o exceptions.
>
> Wow.
>
> 	-ss
Well to be fair, not that I agree any-more, but years ago it was common 
practice to disable exceptions (via the compiler) for C++ in very 
specialized "REAL" "Embedded Systems". This practice was problematic in 
that you needed to have a will defined Error handling design, but saved 
space. Honestly, its been a long time since I worked on anything that 
has a "REAL" size requirement, so I don't see the point. On the other 
hand in some Embedded system  The whole reason to using your own error 
handling design was that in a real embedded system, design 
considerations like, uptime, failure control and ability to eliminate 
undefined behaviour were KEY. So taking the time to design was already a 
given, and size was not a single point factor. (not arguing the C vs C++ 
point here BTW)  So for what ever reason the decision to use C++ happens 
for an embedded project. Problem was C++ exception were good for insure 
the program didn't fail, but detailed failure handling became 
problematic. Sure you could avoid general failures but often especially 
in an embedded system you found yourself with undefined behaviour that 
was nearly imposable to handle. OK in general history over :)

Unfortunately this practice has been inherited still today in segments 
of other then embedded. Most commonly you may see this practice in 
specialized segments like gaming consoles. Such practices are still in 
valid use in such device as switches, telecommunications, avionic 
systems, weapon systems, medical devices, ect.

So I have an understanding of the issues, "some" of its history, and 
valid uses. But in my opinion this is still a bad implementation for 
anyone distributing a general operating system.



>
>   
>>> +/* define stubs for C++ exception handling */
>>> +#define try     	if (true)
>>> +#define catch(x) 	if (false)
>> If you should do this then I think it should be spelled
>>
>> #define try if (true)
>> #define catch else if (false)
>>
>> in order to not break
>>
>> if (condition)
>>      try {
>>      } catch(type variable) {
>>      }
>>
>> but it still breaks the syntax for it which can be shown by simply adding an
>> else clause to the if statement.
>>
>> Oh, and furthermore I consider that Android needs a C++ compiler.
>>
>>> +
>>> +/* Define __NR_perf_event_open if not already defined */
>>> +#if __arm__
>>> +#ifndef __NR_perf_event_open
>>> +#define __NR_perf_event_open    364
>>> +#endif
>>> +#endif
>>> +
>>> +/*
>>> + * bionic libc mbstowcs version returns zero when max parameter
>>> + * is zero, resulting infinite loops in powertop source. Add
>>> + * mbstowcs wrapper to fix it.
>>> + */
>>> +namespace pandroid {
>>> +	extern "C" inline size_t mbstowcs(wchar_t *dst,
>>> +			const char *src, size_t len)
>>> +	{
>>> +		return ::mbstowcs(dst, src, ::strlen(src));
>>> +	}
>>> +}
>>> +
>>> +#define mbstowcs(dst, src, len)		pandroid::mbstowcs(dst, src, len)
>> Still broken.
>> If dst isn't a NULL pointer then len is the limit on the length of the
>> destination buffer. In throwing away this you open up for stack smashing
>> attacks.
>>
> _______________________________________________
> PowerTop mailing list
> PowerTop@lists.01.org
> https://lists.01.org/mailman/listinfo/powertop
Sergey Senozhatsky Sept. 28, 2012, 5:10 p.m. UTC | #4
On (09/28/12 09:54), Chris Ferron wrote:
[..]
> Well to be fair, not that I agree any-more, but years ago it was
> common practice to disable exceptions (via the compiler) for C++ in
> very specialized "REAL" "Embedded Systems". This practice was
> problematic in that you needed to have a will defined Error handling
> design, but saved space. Honestly, its been a long time since I
> worked on anything that has a "REAL" size requirement, so I don't see
> the point. On the other hand in some Embedded system  The whole
> reason to using your own error handling design was that in a real
> embedded system, design considerations like, uptime, failure control
> and ability to eliminate undefined behaviour were KEY. So taking the
> time to design was already a given, and size was not a single point
> factor. (not arguing the C vs C++ point here BTW)  So for what ever
> reason the decision to use C++ happens for an embedded project.
> Problem was C++ exception were good for insure the program didn't
> fail, but detailed failure handling became problematic. Sure you
> could avoid general failures but often especially in an embedded
> system you found yourself with undefined behaviour that was nearly
> imposable to handle. OK in general history over :)
> 
> Unfortunately this practice has been inherited still today in
> segments of other then embedded. Most commonly you may see this
> practice in specialized segments like gaming consoles. Such practices
> are still in valid use in such device as switches,
> telecommunications, avionic systems, weapon systems, medical devices,
> ect.
> 
> So I have an understanding of the issues, "some" of its history, and
> valid uses. But in my opinion this is still a bad implementation for
> anyone distributing a general operating system.
> 
> 

Sure, I totally agree. Nowadays, with 4 CPU cores in a pocket, I simply don't buy 
"exceptions are slow" argument. If in some particular project exceptions are so 
common that they're able to sensibly slow down application, then the project most
probably is doing something terribly wrong and mis-concept exceptions.

The tragedy is that at this point in time I believe Google will never consider using
exceptions due to legacy reasons.


	-ss
Chris Ferron Sept. 28, 2012, 5:21 p.m. UTC | #5
On 09/28/2012 10:10 AM, Sergey Senozhatsky wrote:
> On (09/28/12 09:54), Chris Ferron wrote:
> [..]
>> Well to be fair, not that I agree any-more, but years ago it was
>> common practice to disable exceptions (via the compiler) for C++ in
>> very specialized "REAL" "Embedded Systems". This practice was
>> problematic in that you needed to have a will defined Error handling
>> design, but saved space. Honestly, its been a long time since I
>> worked on anything that has a "REAL" size requirement, so I don't see
>> the point. On the other hand in some Embedded system  The whole
>> reason to using your own error handling design was that in a real
>> embedded system, design considerations like, uptime, failure control
>> and ability to eliminate undefined behaviour were KEY. So taking the
>> time to design was already a given, and size was not a single point
>> factor. (not arguing the C vs C++ point here BTW)  So for what ever
>> reason the decision to use C++ happens for an embedded project.
>> Problem was C++ exception were good for insure the program didn't
>> fail, but detailed failure handling became problematic. Sure you
>> could avoid general failures but often especially in an embedded
>> system you found yourself with undefined behaviour that was nearly
>> imposable to handle. OK in general history over :)
>>
>> Unfortunately this practice has been inherited still today in
>> segments of other then embedded. Most commonly you may see this
>> practice in specialized segments like gaming consoles. Such practices
>> are still in valid use in such device as switches,
>> telecommunications, avionic systems, weapon systems, medical devices,
>> ect.
>>
>> So I have an understanding of the issues, "some" of its history, and
>> valid uses. But in my opinion this is still a bad implementation for
>> anyone distributing a general operating system.
>>
>>
> Sure, I totally agree. Nowadays, with 4 CPU cores in a pocket, I simply don't buy
> "exceptions are slow" argument. If in some particular project exceptions are so
> common that they're able to sensibly slow down application, then the project most
> probably is doing something terribly wrong and mis-concept exceptions.
Agree
>
> The tragedy is that at this point in time I believe Google will never consider using
> exceptions due to legacy reasons.
>
>
> 	-ss
diff mbox

Patch

diff --git a/Android.mk b/Android.mk
index a52ecfd..081f470 100644
--- a/Android.mk
+++ b/Android.mk
@@ -1,17 +1,36 @@ 
 LOCAL_PATH := $(call my-dir)
 include $(CLEAR_VARS)
 
+LOCAL_MODULE := powertop
+
 LOCAL_MODULE_TAGS := debug
 LOCAL_SHARED_LIBRARIES := libstlport \
 			  libnl \
 			  libpci \
-			  libtraceevnet \
-LOCAL_MODULE := powertop  
+
+LOCAL_STATIC_LIBRARIES := libncurses
+
+CSSTOH_SOURCE := $(LOCAL_PATH)/src/csstoh.c
+POWERTOP_CSS_SOURCE := $(LOCAL_PATH)/src/powertop.css
+GEN_CSSTOH := $(LOCAL_PATH)/src/csstoh
+GEN_CSS_H := $(LOCAL_PATH)/src/css.h
+$(GEN_CSS_H):
+	$(CC) -o $(GEN_CSSTOH) $(CSSTOH_SOURCE)
+	./$(GEN_CSSTOH) $(POWERTOP_CSS_SOURCE) $@
+
+LOCAL_GENERATED_SOURCES += $(GEN_CSS_H)
 
 #LOCAL_CFLAGS += -Wall -O2 -g -fno-omit-frame-pointer -fstack-protector -Wshadow -Wformat -D_FORTIFY_SOURCE=2
 #LOCAL_CPPFLAGS += -Wall -O2 -g -fno-omit-frame-pointer
 
-LOCAL_C_INCLUDES += external/stlport/stlport/ external/stlport/stlport/stl external/stlport/stlport/using/h/  bionic external/libnl/include/
+LOCAL_C_INCLUDES += external/stlport/stlport/ \
+	external/stlport/stlport/stl \
+	external/stlport/stlport/using/h/ \
+	bionic \
+	external/libnl/include/ \
+	external/ncurses/include \
+	external/elfutils/bionic-fixup \
+	$(LOCAL_PATH)/src
 
 LOCAL_SRC_FILES += \
 	src/parameters/parameters.cpp \
@@ -21,10 +40,11 @@  LOCAL_SRC_FILES += \
 	src/process/work.cpp \
 	src/process/process.cpp \
 	src/process/timer.cpp \
-	src/process/device.cpp \
+	src/process/processdevice.cpp \
 	src/process/interrupt.cpp \
 	src/process/do_process.cpp \
 	src/cpu/intel_cpus.cpp \
+	src/cpu/intel_gpu.cpp \
 	src/cpu/cpu.cpp \
 	src/cpu/cpu_linux.cpp \
 	src/cpu/cpudevice.cpp \
@@ -33,20 +53,21 @@  LOCAL_SRC_FILES += \
 	src/cpu/abstract_cpu.cpp \
 	src/measurement/measurement.cpp \
 	src/measurement/acpi.cpp \
+	src/measurement/sysfs.cpp \
 	src/measurement/extech.cpp \
 	src/measurement/power_supply.cpp \
 	src/display.cpp \
 	src/report.cpp \
 	src/main.cpp \
 	src/tuning/tuning.cpp \
-	src/tuning/usb.cpp \
+	src/tuning/tuningusb.cpp \
 	src/tuning/bluetooth.cpp \
 	src/tuning/ethernet.cpp \
 	src/tuning/runtime.cpp \
 	src/tuning/iw.c \
 	src/tuning/iw.h \
 	src/tuning/tunable.cpp \
-	src/tuning/sysfs.cpp \
+	src/tuning/tuningsysfs.cpp \
 	src/tuning/cpufreq.cpp \
 	src/tuning/wifi.cpp \
 	src/perf/perf_bundle.cpp \
diff --git a/src/android_stubs.h b/src/android_stubs.h
new file mode 100644
index 0000000..ed37c0e
--- /dev/null
+++ b/src/android_stubs.h
@@ -0,0 +1,65 @@ 
+#include <linux/ethtool.h>
+#include <sys/socket.h>
+#include <string.h>
+#include <wchar.h>
+
+
+/* Android doesn't provide locale support in its C and C++
+ * runtime. Handled at higher level in application stack.
+ * So define stubs for gettext funtions used.
+ */
+#define PACKAGE			0
+#define LOCALEDIR		0
+#define bindtextdomain(x, y)
+#define textdomain(x)
+#define gettext(x)		(x)
+
+/* Android C++ new operator does not throw exception on failure */
+#define set_new_handler(x)
+
+/* define stubs for C++ exception handling */
+#define try     	if (true)
+#define catch(x) 	if (false)
+
+/* Define __NR_perf_event_open if not already defined */
+#if __arm__
+#ifndef __NR_perf_event_open
+#define __NR_perf_event_open    364
+#endif
+#endif
+
+/*
+ * bionic libc mbstowcs version returns zero when max parameter
+ * is zero, resulting infinite loops in powertop source. Add
+ * mbstowcs wrapper to fix it.
+ */
+namespace pandroid {
+	extern "C" inline size_t mbstowcs(wchar_t *dst,
+			const char *src, size_t len)
+	{
+		return ::mbstowcs(dst, src, ::strlen(src));
+	}
+}
+
+#define mbstowcs(dst, src, len)		pandroid::mbstowcs(dst, src, len)
+
+/* Implement missing functions */
+static inline void ethtool_cmd_speed_set(struct ethtool_cmd *ep,
+						__u32 speed)
+{
+
+	ep->speed = (__u16)speed;
+	ep->speed_hi = (__u16)(speed >> 16);
+}
+
+static inline __u32 ethtool_cmd_speed(struct ethtool_cmd *ep)
+{
+	return (ep->speed_hi << 16) | ep->speed;
+}
+
+static inline char *strchrnul(const char *s, int c)
+{
+	while (*s && (*s != c))
+		s++;
+	return (char *)s;
+}
diff --git a/src/lib.h b/src/lib.h
index 8cf4632..6772904 100644
--- a/src/lib.h
+++ b/src/lib.h
@@ -33,6 +33,10 @@ 
 #include "config.h"
 #endif
 
+#ifdef __ANDROID__
+#include "android_stubs.h"
+#endif
+
 #define _(STRING)    gettext(STRING)
 
 #define POWERTOP_VERSION "v2.1"