SlideShare a Scribd company logo
Accessing Hardware on Android
FTF2014
04/08/2014
Gary Bisson
Embedded Software Engineer
SESSION OVERVIEW
1. Introduction
2. Native Development
3. Direct Access
4. Android HAL Layer
5. Custom System Service
6. Demonstrations
7. Conclusion
ABOUT THE PRESENTER
• Embedded Software Engineer at Adeneo Embedded
(Bellevue, WA)
Linux / Android
♦ BSP Adaptation
♦ Driver Development
♦ System Integration
Partners with Freescale
Introduction
Accessing HW on Android Introduction
ACCESSING THE HARDWARE
• How different from a GNU/Linux system?
No difference for native dev
What about Java applications?
• Android Architecture
Android API
SDK/NDK
5
Accessing HW on Android Introduction
ANDROID ARCHITECTURE
6
Accessing HW on Android Introduction
ACCESSING THE HARDWARE
Different ways of accessing devices from Android applications:
• Direct access from the application
Either in the Java or JNI layer
• Using the available Android hardware API
HAL adaptation
• Adding a custom System Service
API modification
7
Native Development
Accessing HW on Android Native Development
WHAT IS IT?
• Different from JNI/NDK
The word “native” in the NDK can be misleading as it
still involves all the limitations of Java applications
NDK gives you access only to a very limited subset of
the Android API
• Native application/daemon/library: can be run directly on
the system without the full Java stack
9
Accessing HW on Android Native Development
NATIVE APPLICATION
• Can be built statically
Avoids libc issues
Not preferred solution though
• Can be built against Bionic
Every binary/library in Android
Some adaptation may be required
10
Accessing HW on Android Native Development
BIONIC VS. GLIBC
• C++
No exception handling!
No STL! (Standard Template Library)
• Libpthread
Mutexes, condvars, etc. use Linux futexes
No semaphores
No pthread_cancel
• Misc
No wchar_t and no LOCALE support
No crypt()
11
Accessing HW on Android Native Development
BUILD A NATIVE APPLICATION
• Such applications can be found in AOSP:
system/core/
frameworks/base/cmds/
external/
• Same as a Java application, an Android.mk must be
created:
1 LOCAL_PATH:= $(call my-dir)
2 include $(CLEAR_VARS)
3 LOCAL_MODULE := hello-world
4 LOCAL_MODULE_TAGS := optional
5 LOCAL_SRC_FILES := hello-world.cpp
6 LOCAL_SHARED_LIBRARIES := liblog
7 include $(BUILD_EXECUTABLE)
12
Accessing HW on Android Native Development
ADD A NATIVE APPLICATION
• If LOCAL_MODULE_TAGS is set as optional, the package
name must be registered in the device.mk
• Once built, the binary is copied to
<out_folder>/system/bin
• Modify init.rc to start the application at startup:
1 service myapp /system/bin/myapp
2 oneshot
13
Direct Access
Accessing HW on Android Direct Access
ACCESSING THE HARDWARE
• Using the user-space interface (devfs, sysfs...)
Can be done either in Java or in Native C code
Simple Open / Read / Write / Close to a “file”
Every application that uses a specific hardware must
have code to handle it
• The correct permissions must be set
The device node shall be opened by all users (not
allowed by default) or by the UID/GID of the relevant
application(s)
init.rc or eventd.rc must be modified
15
Accessing HW on Android Direct Access
JAVA SAMPLE CODE
1 private void turnOnLed () throws IOException {
2 FileInputStream fileInputStream;
3 FileOutputStream fileOutputStream;
4 File file = new File("/sys/class/leds/led_usr1/brightness");
5 if (file.canRead()) {
6 fileInputStream = new FileInputStream(file);
7 if (fileInputStream.read() != '0') {
8 System.out.println("LED usr1 already onn");
9 return;
10 }
11 }
12 if (file.canWrite()) {
13 fileOutputStream = new FileOutputStream(file);
14 fileOutputStream.write('1');
15 }
16 }
16
Android HAL Layer
Accessing HW on Android Android HAL Layer
HARDWARE API
• Android Hardware API is accessed through the
android.hardware class.
• This class only provides support for a limited number of
devices such as:
Camera: used to set image capture settings, start/stop
preview, snap pictures, and retrieve frames for
encoding for video
Sensors: accelerometer, gyroscope, magnetometers,
proximity, temperature...
• OEMs may provide their own HAL implementation to
connect to the android hardware API (see hardware/imx)
18
Accessing HW on Android Android HAL Layer
HARDWARE API
• USB Host and Accessory: android.hardware.usb:
Provides support to communicate with USB hardware
peripherals that are connected to Android-powered
devices
• Input: android.hardware.input
Provides information about input devices and
available key layouts
New in API Level 16 (Jelly Bean)
• Other APIs:
For instance the android.app.Notification can be
used to toggle a LED (if properly registered) with the
FLAG_SHOW_LIGHTS parameter
19
Accessing HW on Android Android HAL Layer
HARDWARE ABSTRACTION LAYER (HAL)
20
Accessing HW on Android Android HAL Layer
LIGHTS LIBRARY
• Interface defined in
hardware/libhardware/include/hardware/lights.h
• Library must be named lights.<product_name>.so
• Will get loaded from /system/lib/hw at runtime
• See example in hardware/imx/lights/
• Mandatory to have backlight managed by the OS.
21
Accessing HW on Android Android HAL Layer
CAMERA LIBRARY
• Interface defined in
hardware/libhardware/include/hardware/camera.h
• Library must be named camera.<product_name>.so
• Will get loaded from /system/lib/hw at runtime
• See example in hardware/imx/mx6/libcamera/
22
Accessing HW on Android Android HAL Layer
GPS LIBRARY
• Interface defined in
hardware/libhardware/include/hardware/gps.h
• Library must be named gps.<product_name>.so
• Will get loaded from /system/lib/hw at runtime
• See example in hardware/imx/libgps/
23
Accessing HW on Android Android HAL Layer
SENSORS LIBRARY
• Interface defined in
hardware/libhardware/include/hardware/sensors.h
• Library must be named sensors.<product_name>.so
• Will get loaded from /system/lib/hw at runtime
• See example in hardware/imx/libsensors/
24
Accessing HW on Android Android HAL Layer
EXAMPLE: ADDING A SENSOR
1. Kernel driver must be working and loaded
2. Change directory to hardware/imx/libsensors
3. Add Sensor definition into sSensorList structure in
sensors.cpp
Applications will now be aware of a new sensor
This structure define the following parameters
♦ Name
♦ Vendor
♦ Version
♦ Type (Proximity, Temperature etc…)
♦ ...
25
Accessing HW on Android Android HAL Layer
EXAMPLE: ADDING A SENSOR
4. Create object of new sensor
Set file descriptor and event type
5. Update sensors_poll_context_t structure
6. Add new sensor case to handleToDriver function
7. Implement your class:
1 class AccelSensor : public SensorBase {
2 int mEnabled;
3 int setInitialState();
4 public:
5 AccelSensor();
6 virtual ~AccelSensor();
7 virtual int readEvents(sensors_event_t* data, int cnt);
8 virtual bool hasPendingEvents() const;
9 virtual int enable(int32_t handle, int enabled);
10 };
26
Accessing HW on Android Android HAL Layer
EXAMPLE: TESTING A SENSOR
• Use existing tool:
hardware/libhardware/tests/nusensors
This binary tool will list every sensor and try to pull
data from it
• Use existing java application: AndroSensor
www.appsapk.com/androsensor
• Create your own application
Using SensorManager
www.vogella.com/tutorials/AndroidSensor/article.html
27
Accessing HW on Android Android HAL Layer
EXAMPLE: SENSOR MANAGER
1 public class SensorActivity extends Activity, implements
SensorEventListener {
2 private final SensorManager mSensorManager;
3 private final Sensor mAccelerometer;
4 public SensorActivity() {
5 mSensorManager = (SensorManager)getSystemService(
SENSOR_SERVICE);
6 mAccelerometer = mSensorManager.getDefaultSensor(Sensor.
TYPE_ACCELEROMETER);
7 }
8 protected void onResume() {
9 super.onResume();
10 mSensorManager.registerListener(this, mAccelerometer,
SensorManager.SENSOR_DELAY_NORMAL);
11 }
12 [...]
13 public void onAccuracyChanged(Sensor sensor, int accuracy) {}
14 public void onSensorChanged(SensorEvent event) {}
15 }
28
Custom System Service
Accessing HW on Android Custom System Service
ANDROID SYSTEM SERVICES
• Service: component that performs long-running
operations in the background and does not provide a user
interface
• System Services vs. Local Service
System Services accessible for all
Access through getSystemService() method
Permissions required
30
Accessing HW on Android Custom System Service
ANDROID SYSTEM SERVICES
31
Accessing HW on Android Custom System Service
MAIN SYSTEM SERVICES
• System Server
All components contained in one process:
system_server
Mostly made up of Java-coded services with few
written in C/C++
• Media Server
All components contained in one process:
media-server
These services are all coded in C/C++
• Appear to operate independently to anyone connecting to
them through Binder
32
Accessing HW on Android Custom System Service
ANDROID SYSTEM SERVICES
33
Accessing HW on Android Custom System Service
SERVICE MANAGER
• Service Manager = YellowPages book of all services
• Need to register every System Service to be usable
• Can list all services available: service list
• Application asks the Service Manager for a handle to the
Service and then invokes that service's methods
34
Accessing HW on Android Custom System Service
ADDING A SYSTEM SERVICE
1. Creation of the API layer for the System Service (aidl)
Defines only exposed methods
API added to SDK/add-on
2. Creation of a wrapper class for the Service interface
3. Creation of an implementation of that class
4. Creation of a JNI layer if needed
35
Accessing HW on Android Custom System Service
ADDING A SYSTEM SERVICE
1st approach:
• System Service inside the System Server
• Advantages:
Part of the inner system
First to be started
System permissions
• Drawbacks:
SDK creation required
36
Accessing HW on Android Custom System Service
ADDING A SYSTEM SERVICE
2nd approach:
• System Service outside of the System Server
• Advantages:
No framework/ modification
Located in one folder
Easier to port from one version to another
System permissions
SDK add-on
• Drawbacks:
Considered as a usual App
♦ System might remove it in case it runs out of RAM
37
Accessing HW on Android Custom System Service
ADDING A SYSTEM SERVICE
• Example:
https://github.com/gibsson/BasicService
https://github.com/gibsson/BasicClient
• Although SDK generation is possible, SDK add-on is
preferred:
https://github.com/gibsson/basic_sdk_addon
38
Accessing HW on Android Custom System Service
BASIC SERVICE EXAMPLE
BasicService/
AndroidManifest.xml
Android.mk
src/com/gibsson/basic/service/
app/
BasicServiceApp.java
IBasicServiceImpl.java
lib/
BasicManager.java
com.gibsson.basic.service.lib.xml
IBasicService.aidl
39
Accessing HW on Android Custom System Service
AIDL EXAMPLE
1 /**
2 * System-private API for talking to the BasicService.
3 *
4 * {@hide}
5 */
6 interface IBasicService {
7 int getValue();
8 int setValue(int val);
9 }
40
Accessing HW on Android Custom System Service
WRAPPER CLASS EXAMPLE
1 public class BasicManager {
2 private static final String REMOTE_SERVICE_NAME = IBasicService
.class.getName();
3 private final IBasicService service;
4
5 public static BasicManager getInstance() {
6 return new BasicManager();
7 }
8
9 private BasicManager() {
10 this.service = IBasicService.Stub.asInterface(ServiceManager.
getService(REMOTE_SERVICE_NAME));
11 if (this.service == null) {
12 throw new IllegalStateException("Failed to find
IBasicService by name [" + REMOTE_SERVICE_NAME + "]");
13 }
14 }
15 [...]
16 }
41
Accessing HW on Android Custom System Service
IMPLEMENTATION EXAMPLE
1 class IBasicServiceImpl extends IBasicService.Stub {
2 private final Context context;
3 private int value;
4
5 IBasicServiceImpl(Context context) {
6 this.context = context;
7 }
8 protected void finalize() throws Throwable {
9 super.finalize();
10 }
11 public int getValue() {
12 return value;
13 }
14 public int setValue(int val) {
15 value = val + 4;
16 return 0;
17 }
18 }
42
Accessing HW on Android Custom System Service
IMPLEMENTATION APP EXAMPLE
1 public class BasicServiceApp extends Application {
2 private static final String REMOTE_SERVICE_NAME = IBasicService
.class.getName();
3 private IBasicServiceImpl serviceImpl;
4
5 public void onCreate() {
6 super.onCreate();
7 this.serviceImpl = new IBasicServiceImpl(this);
8 ServiceManager.addService(REMOTE_SERVICE_NAME, this.
serviceImpl);
9 }
10
11 public void onTerminate() {
12 super.onTerminate();
13 }
14 }
43
Demonstrations
Accessing HW on Android Demonstrations
HARDWARE SELECTION
• i.MX6Q SabreLite
• Android 4.3 Jelly Bean
• 10" LVDS display
• Could be any other device
45
Accessing HW on Android Demonstrations
DEMONSTRATIONS
• Demonstration #1
Native app access
• Demonstration #2
Direct JNI access
• Demonstration #3
Using Sensor API
• Demonstration #4
Custom System Service
46
Conclusion
Accessing HW on Android Conclusion
CONCLUSION
• Direct access from application
Permission issue
• HAL modification
Only few hardware targeted
• Adding a System Service
Most complex but elegant way
• Solution depends on constraints
48
Accessing HW on Android Conclusion
QUESTIONS?
49
Accessing HW on Android Conclusion
REFERENCES
• Karim Yaghmour: Embedded Android
http://shop.oreilly.com/product/0636920021094.do
• Karim Yaghmour: Extending Android HAL
http://www.opersys.com/blog/extending-android-hal
• Marko Gargenta: Remixing Android
https://thenewcircle.com/s/post/1044/remixing_android
• Lars Vogel: Android Sensors
http://www.vogella.com/tutorials/AndroidSensor/article.html
50

More Related Content

What's hot

Android for Embedded Linux Developers
Android for Embedded Linux DevelopersAndroid for Embedded Linux Developers
Android for Embedded Linux Developers
Opersys inc.
 
Design and Concepts of Android Graphics
Design and Concepts of Android GraphicsDesign and Concepts of Android Graphics
Design and Concepts of Android Graphics
National Cheng Kung University
 
Android's HIDL: Treble in the HAL
Android's HIDL: Treble in the HALAndroid's HIDL: Treble in the HAL
Android's HIDL: Treble in the HAL
Opersys inc.
 
Android Things : Building Embedded Devices
Android Things : Building Embedded DevicesAndroid Things : Building Embedded Devices
Android Things : Building Embedded Devices
Emertxe Information Technologies Pvt Ltd
 
Android media framework overview
Android media framework overviewAndroid media framework overview
Android media framework overview
Jerrin George
 
Embedded Android : System Development - Part IV (Android System Services)
Embedded Android : System Development - Part IV (Android System Services)Embedded Android : System Development - Part IV (Android System Services)
Embedded Android : System Development - Part IV (Android System Services)
Emertxe Information Technologies Pvt Ltd
 
Embedded Android Workshop with Pie
Embedded Android Workshop with PieEmbedded Android Workshop with Pie
Embedded Android Workshop with Pie
Opersys inc.
 
Embedded Android : System Development - Part III
Embedded Android : System Development - Part IIIEmbedded Android : System Development - Part III
Embedded Android : System Development - Part III
Emertxe Information Technologies Pvt Ltd
 
Understanding the Android System Server
Understanding the Android System ServerUnderstanding the Android System Server
Understanding the Android System Server
Opersys inc.
 
Learning AOSP - Android Booting Process
Learning AOSP - Android Booting ProcessLearning AOSP - Android Booting Process
Learning AOSP - Android Booting Process
Nanik Tolaram
 
Q4.11: Porting Android to new Platforms
Q4.11: Porting Android to new PlatformsQ4.11: Porting Android to new Platforms
Q4.11: Porting Android to new Platforms
Linaro
 
Android OTA updates
Android OTA updatesAndroid OTA updates
Android OTA updates
Gary Bisson
 
Android Internals
Android InternalsAndroid Internals
Android Internals
Opersys inc.
 
Android Audio System
Android Audio SystemAndroid Audio System
Android Audio System
Yi-Hsiang Huang
 
Android 10
Android 10Android 10
Android - Application Framework
Android - Application FrameworkAndroid - Application Framework
Android - Application Framework
Yong Heui Cho
 
Android booting sequece and setup and debugging
Android booting sequece and setup and debuggingAndroid booting sequece and setup and debugging
Android booting sequece and setup and debuggingUtkarsh Mankad
 
Android SDK Tutorial | Edureka
Android SDK Tutorial | EdurekaAndroid SDK Tutorial | Edureka
Android SDK Tutorial | Edureka
Edureka!
 
The Android graphics path, in depth
The Android graphics path, in depthThe Android graphics path, in depth
The Android graphics path, in depth
Chris Simmonds
 
ABS 2012 - Android Device Porting Walkthrough
ABS 2012 - Android Device Porting WalkthroughABS 2012 - Android Device Porting Walkthrough
ABS 2012 - Android Device Porting Walkthrough
Benjamin Zores
 

What's hot (20)

Android for Embedded Linux Developers
Android for Embedded Linux DevelopersAndroid for Embedded Linux Developers
Android for Embedded Linux Developers
 
Design and Concepts of Android Graphics
Design and Concepts of Android GraphicsDesign and Concepts of Android Graphics
Design and Concepts of Android Graphics
 
Android's HIDL: Treble in the HAL
Android's HIDL: Treble in the HALAndroid's HIDL: Treble in the HAL
Android's HIDL: Treble in the HAL
 
Android Things : Building Embedded Devices
Android Things : Building Embedded DevicesAndroid Things : Building Embedded Devices
Android Things : Building Embedded Devices
 
Android media framework overview
Android media framework overviewAndroid media framework overview
Android media framework overview
 
Embedded Android : System Development - Part IV (Android System Services)
Embedded Android : System Development - Part IV (Android System Services)Embedded Android : System Development - Part IV (Android System Services)
Embedded Android : System Development - Part IV (Android System Services)
 
Embedded Android Workshop with Pie
Embedded Android Workshop with PieEmbedded Android Workshop with Pie
Embedded Android Workshop with Pie
 
Embedded Android : System Development - Part III
Embedded Android : System Development - Part IIIEmbedded Android : System Development - Part III
Embedded Android : System Development - Part III
 
Understanding the Android System Server
Understanding the Android System ServerUnderstanding the Android System Server
Understanding the Android System Server
 
Learning AOSP - Android Booting Process
Learning AOSP - Android Booting ProcessLearning AOSP - Android Booting Process
Learning AOSP - Android Booting Process
 
Q4.11: Porting Android to new Platforms
Q4.11: Porting Android to new PlatformsQ4.11: Porting Android to new Platforms
Q4.11: Porting Android to new Platforms
 
Android OTA updates
Android OTA updatesAndroid OTA updates
Android OTA updates
 
Android Internals
Android InternalsAndroid Internals
Android Internals
 
Android Audio System
Android Audio SystemAndroid Audio System
Android Audio System
 
Android 10
Android 10Android 10
Android 10
 
Android - Application Framework
Android - Application FrameworkAndroid - Application Framework
Android - Application Framework
 
Android booting sequece and setup and debugging
Android booting sequece and setup and debuggingAndroid booting sequece and setup and debugging
Android booting sequece and setup and debugging
 
Android SDK Tutorial | Edureka
Android SDK Tutorial | EdurekaAndroid SDK Tutorial | Edureka
Android SDK Tutorial | Edureka
 
The Android graphics path, in depth
The Android graphics path, in depthThe Android graphics path, in depth
The Android graphics path, in depth
 
ABS 2012 - Android Device Porting Walkthrough
ABS 2012 - Android Device Porting WalkthroughABS 2012 - Android Device Porting Walkthrough
ABS 2012 - Android Device Porting Walkthrough
 

Similar to Accessing Hardware on Android

lecture-2-android-dev.pdf
lecture-2-android-dev.pdflecture-2-android-dev.pdf
lecture-2-android-dev.pdf
jakjak36
 
Notes Unit2.pptx
Notes Unit2.pptxNotes Unit2.pptx
Notes Unit2.pptx
MIT Autonomous Aurangabad
 
Android development tutorial
Android development tutorialAndroid development tutorial
Android development tutorial
Mohammad Taj
 
Android development tutorial
Android development tutorialAndroid development tutorial
Android development tutorial
nazzf
 
3. Android Architecture.pptx
3. Android Architecture.pptx3. Android Architecture.pptx
3. Android Architecture.pptx
HarshiniB11
 
Android Applications Development: A Quick Start Guide
Android Applications Development: A Quick Start GuideAndroid Applications Development: A Quick Start Guide
Android Applications Development: A Quick Start Guide
Sergii Zhuk
 
AWS Summit Singapore 2019 | Latest Trends for Cloud-Native Application Develo...
AWS Summit Singapore 2019 | Latest Trends for Cloud-Native Application Develo...AWS Summit Singapore 2019 | Latest Trends for Cloud-Native Application Develo...
AWS Summit Singapore 2019 | Latest Trends for Cloud-Native Application Develo...
AWS Summits
 
Android development classes in chandigarh : Big Boxx Academy
Android development classes in chandigarh : Big Boxx AcademyAndroid development classes in chandigarh : Big Boxx Academy
Android development classes in chandigarh : Big Boxx Academy
Big Boxx Animation Academy
 
Introduction to android sessions new
Introduction to android   sessions newIntroduction to android   sessions new
Introduction to android sessions newJoe Jacob
 
Android dev o_auth
Android dev o_authAndroid dev o_auth
Android dev o_auth
lzongren
 
Zeelogic android-training-2013
Zeelogic android-training-2013Zeelogic android-training-2013
Zeelogic android-training-2013Zeelogic Solu
 
Developing for Android-Types of Android Application
Developing for Android-Types of Android ApplicationDeveloping for Android-Types of Android Application
Developing for Android-Types of Android Application
Nandini Prabhu
 
Android In A Nutshell
Android In A NutshellAndroid In A Nutshell
Android In A Nutshell
Ted Chien
 
Manish Chasta - Securing Android Applications
Manish Chasta - Securing Android ApplicationsManish Chasta - Securing Android Applications
Manish Chasta - Securing Android ApplicationsPositive Hack Days
 
Getting started with the NDK
Getting started with the NDKGetting started with the NDK
Getting started with the NDK
Kirill Kounik
 
Android Overview
Android OverviewAndroid Overview
Android Overview
Raju Kadam
 
Android - Anroid Pproject
Android - Anroid PprojectAndroid - Anroid Pproject
Android - Anroid Pproject
Vibrant Technologies & Computers
 

Similar to Accessing Hardware on Android (20)

lecture-2-android-dev.pdf
lecture-2-android-dev.pdflecture-2-android-dev.pdf
lecture-2-android-dev.pdf
 
Notes Unit2.pptx
Notes Unit2.pptxNotes Unit2.pptx
Notes Unit2.pptx
 
Android development tutorial
Android development tutorialAndroid development tutorial
Android development tutorial
 
Android development tutorial
Android development tutorialAndroid development tutorial
Android development tutorial
 
3. Android Architecture.pptx
3. Android Architecture.pptx3. Android Architecture.pptx
3. Android Architecture.pptx
 
Android Applications Development: A Quick Start Guide
Android Applications Development: A Quick Start GuideAndroid Applications Development: A Quick Start Guide
Android Applications Development: A Quick Start Guide
 
AWS Summit Singapore 2019 | Latest Trends for Cloud-Native Application Develo...
AWS Summit Singapore 2019 | Latest Trends for Cloud-Native Application Develo...AWS Summit Singapore 2019 | Latest Trends for Cloud-Native Application Develo...
AWS Summit Singapore 2019 | Latest Trends for Cloud-Native Application Develo...
 
Android development classes in chandigarh : Big Boxx Academy
Android development classes in chandigarh : Big Boxx AcademyAndroid development classes in chandigarh : Big Boxx Academy
Android development classes in chandigarh : Big Boxx Academy
 
Introduction to android
Introduction to androidIntroduction to android
Introduction to android
 
Introduction to android sessions new
Introduction to android   sessions newIntroduction to android   sessions new
Introduction to android sessions new
 
Android dev o_auth
Android dev o_authAndroid dev o_auth
Android dev o_auth
 
Zeelogic android-training-2013
Zeelogic android-training-2013Zeelogic android-training-2013
Zeelogic android-training-2013
 
Developing for Android-Types of Android Application
Developing for Android-Types of Android ApplicationDeveloping for Android-Types of Android Application
Developing for Android-Types of Android Application
 
Android zensar
Android zensarAndroid zensar
Android zensar
 
Android In A Nutshell
Android In A NutshellAndroid In A Nutshell
Android In A Nutshell
 
Android session-1-sajib
Android session-1-sajibAndroid session-1-sajib
Android session-1-sajib
 
Manish Chasta - Securing Android Applications
Manish Chasta - Securing Android ApplicationsManish Chasta - Securing Android Applications
Manish Chasta - Securing Android Applications
 
Getting started with the NDK
Getting started with the NDKGetting started with the NDK
Getting started with the NDK
 
Android Overview
Android OverviewAndroid Overview
Android Overview
 
Android - Anroid Pproject
Android - Anroid PprojectAndroid - Anroid Pproject
Android - Anroid Pproject
 

Recently uploaded

一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
zwunae
 
road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
VENKATESHvenky89705
 
CW RADAR, FMCW RADAR, FMCW ALTIMETER, AND THEIR PARAMETERS
CW RADAR, FMCW RADAR, FMCW ALTIMETER, AND THEIR PARAMETERSCW RADAR, FMCW RADAR, FMCW ALTIMETER, AND THEIR PARAMETERS
CW RADAR, FMCW RADAR, FMCW ALTIMETER, AND THEIR PARAMETERS
veerababupersonal22
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
Kamal Acharya
 
Basic Industrial Engineering terms for apparel
Basic Industrial Engineering terms for apparelBasic Industrial Engineering terms for apparel
Basic Industrial Engineering terms for apparel
top1002
 
Building Electrical System Design & Installation
Building Electrical System Design & InstallationBuilding Electrical System Design & Installation
Building Electrical System Design & Installation
symbo111
 
HYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generationHYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generation
Robbie Edward Sayers
 
Investor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptxInvestor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptx
AmarGB2
 
weather web application report.pdf
weather web application report.pdfweather web application report.pdf
weather web application report.pdf
Pratik Pawar
 
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
MdTanvirMahtab2
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
obonagu
 
Forklift Classes Overview by Intella Parts
Forklift Classes Overview by Intella PartsForklift Classes Overview by Intella Parts
Forklift Classes Overview by Intella Parts
Intella Parts
 
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdfWater Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation & Control
 
block diagram and signal flow graph representation
block diagram and signal flow graph representationblock diagram and signal flow graph representation
block diagram and signal flow graph representation
Divya Somashekar
 
Hierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power SystemHierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power System
Kerry Sado
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
Kamal Acharya
 
Unbalanced Three Phase Systems and circuits.pptx
Unbalanced Three Phase Systems and circuits.pptxUnbalanced Three Phase Systems and circuits.pptx
Unbalanced Three Phase Systems and circuits.pptx
ChristineTorrepenida1
 
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Dr.Costas Sachpazis
 
English lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdfEnglish lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdf
BrazilAccount1
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
fxintegritypublishin
 

Recently uploaded (20)

一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
 
road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
 
CW RADAR, FMCW RADAR, FMCW ALTIMETER, AND THEIR PARAMETERS
CW RADAR, FMCW RADAR, FMCW ALTIMETER, AND THEIR PARAMETERSCW RADAR, FMCW RADAR, FMCW ALTIMETER, AND THEIR PARAMETERS
CW RADAR, FMCW RADAR, FMCW ALTIMETER, AND THEIR PARAMETERS
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
 
Basic Industrial Engineering terms for apparel
Basic Industrial Engineering terms for apparelBasic Industrial Engineering terms for apparel
Basic Industrial Engineering terms for apparel
 
Building Electrical System Design & Installation
Building Electrical System Design & InstallationBuilding Electrical System Design & Installation
Building Electrical System Design & Installation
 
HYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generationHYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generation
 
Investor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptxInvestor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptx
 
weather web application report.pdf
weather web application report.pdfweather web application report.pdf
weather web application report.pdf
 
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
 
Forklift Classes Overview by Intella Parts
Forklift Classes Overview by Intella PartsForklift Classes Overview by Intella Parts
Forklift Classes Overview by Intella Parts
 
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdfWater Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdf
 
block diagram and signal flow graph representation
block diagram and signal flow graph representationblock diagram and signal flow graph representation
block diagram and signal flow graph representation
 
Hierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power SystemHierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power System
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
 
Unbalanced Three Phase Systems and circuits.pptx
Unbalanced Three Phase Systems and circuits.pptxUnbalanced Three Phase Systems and circuits.pptx
Unbalanced Three Phase Systems and circuits.pptx
 
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
 
English lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdfEnglish lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdf
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
 

Accessing Hardware on Android

  • 1. Accessing Hardware on Android FTF2014 04/08/2014 Gary Bisson Embedded Software Engineer
  • 2. SESSION OVERVIEW 1. Introduction 2. Native Development 3. Direct Access 4. Android HAL Layer 5. Custom System Service 6. Demonstrations 7. Conclusion
  • 3. ABOUT THE PRESENTER • Embedded Software Engineer at Adeneo Embedded (Bellevue, WA) Linux / Android ♦ BSP Adaptation ♦ Driver Development ♦ System Integration Partners with Freescale
  • 5. Accessing HW on Android Introduction ACCESSING THE HARDWARE • How different from a GNU/Linux system? No difference for native dev What about Java applications? • Android Architecture Android API SDK/NDK 5
  • 6. Accessing HW on Android Introduction ANDROID ARCHITECTURE 6
  • 7. Accessing HW on Android Introduction ACCESSING THE HARDWARE Different ways of accessing devices from Android applications: • Direct access from the application Either in the Java or JNI layer • Using the available Android hardware API HAL adaptation • Adding a custom System Service API modification 7
  • 9. Accessing HW on Android Native Development WHAT IS IT? • Different from JNI/NDK The word “native” in the NDK can be misleading as it still involves all the limitations of Java applications NDK gives you access only to a very limited subset of the Android API • Native application/daemon/library: can be run directly on the system without the full Java stack 9
  • 10. Accessing HW on Android Native Development NATIVE APPLICATION • Can be built statically Avoids libc issues Not preferred solution though • Can be built against Bionic Every binary/library in Android Some adaptation may be required 10
  • 11. Accessing HW on Android Native Development BIONIC VS. GLIBC • C++ No exception handling! No STL! (Standard Template Library) • Libpthread Mutexes, condvars, etc. use Linux futexes No semaphores No pthread_cancel • Misc No wchar_t and no LOCALE support No crypt() 11
  • 12. Accessing HW on Android Native Development BUILD A NATIVE APPLICATION • Such applications can be found in AOSP: system/core/ frameworks/base/cmds/ external/ • Same as a Java application, an Android.mk must be created: 1 LOCAL_PATH:= $(call my-dir) 2 include $(CLEAR_VARS) 3 LOCAL_MODULE := hello-world 4 LOCAL_MODULE_TAGS := optional 5 LOCAL_SRC_FILES := hello-world.cpp 6 LOCAL_SHARED_LIBRARIES := liblog 7 include $(BUILD_EXECUTABLE) 12
  • 13. Accessing HW on Android Native Development ADD A NATIVE APPLICATION • If LOCAL_MODULE_TAGS is set as optional, the package name must be registered in the device.mk • Once built, the binary is copied to <out_folder>/system/bin • Modify init.rc to start the application at startup: 1 service myapp /system/bin/myapp 2 oneshot 13
  • 15. Accessing HW on Android Direct Access ACCESSING THE HARDWARE • Using the user-space interface (devfs, sysfs...) Can be done either in Java or in Native C code Simple Open / Read / Write / Close to a “file” Every application that uses a specific hardware must have code to handle it • The correct permissions must be set The device node shall be opened by all users (not allowed by default) or by the UID/GID of the relevant application(s) init.rc or eventd.rc must be modified 15
  • 16. Accessing HW on Android Direct Access JAVA SAMPLE CODE 1 private void turnOnLed () throws IOException { 2 FileInputStream fileInputStream; 3 FileOutputStream fileOutputStream; 4 File file = new File("/sys/class/leds/led_usr1/brightness"); 5 if (file.canRead()) { 6 fileInputStream = new FileInputStream(file); 7 if (fileInputStream.read() != '0') { 8 System.out.println("LED usr1 already onn"); 9 return; 10 } 11 } 12 if (file.canWrite()) { 13 fileOutputStream = new FileOutputStream(file); 14 fileOutputStream.write('1'); 15 } 16 } 16
  • 18. Accessing HW on Android Android HAL Layer HARDWARE API • Android Hardware API is accessed through the android.hardware class. • This class only provides support for a limited number of devices such as: Camera: used to set image capture settings, start/stop preview, snap pictures, and retrieve frames for encoding for video Sensors: accelerometer, gyroscope, magnetometers, proximity, temperature... • OEMs may provide their own HAL implementation to connect to the android hardware API (see hardware/imx) 18
  • 19. Accessing HW on Android Android HAL Layer HARDWARE API • USB Host and Accessory: android.hardware.usb: Provides support to communicate with USB hardware peripherals that are connected to Android-powered devices • Input: android.hardware.input Provides information about input devices and available key layouts New in API Level 16 (Jelly Bean) • Other APIs: For instance the android.app.Notification can be used to toggle a LED (if properly registered) with the FLAG_SHOW_LIGHTS parameter 19
  • 20. Accessing HW on Android Android HAL Layer HARDWARE ABSTRACTION LAYER (HAL) 20
  • 21. Accessing HW on Android Android HAL Layer LIGHTS LIBRARY • Interface defined in hardware/libhardware/include/hardware/lights.h • Library must be named lights.<product_name>.so • Will get loaded from /system/lib/hw at runtime • See example in hardware/imx/lights/ • Mandatory to have backlight managed by the OS. 21
  • 22. Accessing HW on Android Android HAL Layer CAMERA LIBRARY • Interface defined in hardware/libhardware/include/hardware/camera.h • Library must be named camera.<product_name>.so • Will get loaded from /system/lib/hw at runtime • See example in hardware/imx/mx6/libcamera/ 22
  • 23. Accessing HW on Android Android HAL Layer GPS LIBRARY • Interface defined in hardware/libhardware/include/hardware/gps.h • Library must be named gps.<product_name>.so • Will get loaded from /system/lib/hw at runtime • See example in hardware/imx/libgps/ 23
  • 24. Accessing HW on Android Android HAL Layer SENSORS LIBRARY • Interface defined in hardware/libhardware/include/hardware/sensors.h • Library must be named sensors.<product_name>.so • Will get loaded from /system/lib/hw at runtime • See example in hardware/imx/libsensors/ 24
  • 25. Accessing HW on Android Android HAL Layer EXAMPLE: ADDING A SENSOR 1. Kernel driver must be working and loaded 2. Change directory to hardware/imx/libsensors 3. Add Sensor definition into sSensorList structure in sensors.cpp Applications will now be aware of a new sensor This structure define the following parameters ♦ Name ♦ Vendor ♦ Version ♦ Type (Proximity, Temperature etc…) ♦ ... 25
  • 26. Accessing HW on Android Android HAL Layer EXAMPLE: ADDING A SENSOR 4. Create object of new sensor Set file descriptor and event type 5. Update sensors_poll_context_t structure 6. Add new sensor case to handleToDriver function 7. Implement your class: 1 class AccelSensor : public SensorBase { 2 int mEnabled; 3 int setInitialState(); 4 public: 5 AccelSensor(); 6 virtual ~AccelSensor(); 7 virtual int readEvents(sensors_event_t* data, int cnt); 8 virtual bool hasPendingEvents() const; 9 virtual int enable(int32_t handle, int enabled); 10 }; 26
  • 27. Accessing HW on Android Android HAL Layer EXAMPLE: TESTING A SENSOR • Use existing tool: hardware/libhardware/tests/nusensors This binary tool will list every sensor and try to pull data from it • Use existing java application: AndroSensor www.appsapk.com/androsensor • Create your own application Using SensorManager www.vogella.com/tutorials/AndroidSensor/article.html 27
  • 28. Accessing HW on Android Android HAL Layer EXAMPLE: SENSOR MANAGER 1 public class SensorActivity extends Activity, implements SensorEventListener { 2 private final SensorManager mSensorManager; 3 private final Sensor mAccelerometer; 4 public SensorActivity() { 5 mSensorManager = (SensorManager)getSystemService( SENSOR_SERVICE); 6 mAccelerometer = mSensorManager.getDefaultSensor(Sensor. TYPE_ACCELEROMETER); 7 } 8 protected void onResume() { 9 super.onResume(); 10 mSensorManager.registerListener(this, mAccelerometer, SensorManager.SENSOR_DELAY_NORMAL); 11 } 12 [...] 13 public void onAccuracyChanged(Sensor sensor, int accuracy) {} 14 public void onSensorChanged(SensorEvent event) {} 15 } 28
  • 30. Accessing HW on Android Custom System Service ANDROID SYSTEM SERVICES • Service: component that performs long-running operations in the background and does not provide a user interface • System Services vs. Local Service System Services accessible for all Access through getSystemService() method Permissions required 30
  • 31. Accessing HW on Android Custom System Service ANDROID SYSTEM SERVICES 31
  • 32. Accessing HW on Android Custom System Service MAIN SYSTEM SERVICES • System Server All components contained in one process: system_server Mostly made up of Java-coded services with few written in C/C++ • Media Server All components contained in one process: media-server These services are all coded in C/C++ • Appear to operate independently to anyone connecting to them through Binder 32
  • 33. Accessing HW on Android Custom System Service ANDROID SYSTEM SERVICES 33
  • 34. Accessing HW on Android Custom System Service SERVICE MANAGER • Service Manager = YellowPages book of all services • Need to register every System Service to be usable • Can list all services available: service list • Application asks the Service Manager for a handle to the Service and then invokes that service's methods 34
  • 35. Accessing HW on Android Custom System Service ADDING A SYSTEM SERVICE 1. Creation of the API layer for the System Service (aidl) Defines only exposed methods API added to SDK/add-on 2. Creation of a wrapper class for the Service interface 3. Creation of an implementation of that class 4. Creation of a JNI layer if needed 35
  • 36. Accessing HW on Android Custom System Service ADDING A SYSTEM SERVICE 1st approach: • System Service inside the System Server • Advantages: Part of the inner system First to be started System permissions • Drawbacks: SDK creation required 36
  • 37. Accessing HW on Android Custom System Service ADDING A SYSTEM SERVICE 2nd approach: • System Service outside of the System Server • Advantages: No framework/ modification Located in one folder Easier to port from one version to another System permissions SDK add-on • Drawbacks: Considered as a usual App ♦ System might remove it in case it runs out of RAM 37
  • 38. Accessing HW on Android Custom System Service ADDING A SYSTEM SERVICE • Example: https://github.com/gibsson/BasicService https://github.com/gibsson/BasicClient • Although SDK generation is possible, SDK add-on is preferred: https://github.com/gibsson/basic_sdk_addon 38
  • 39. Accessing HW on Android Custom System Service BASIC SERVICE EXAMPLE BasicService/ AndroidManifest.xml Android.mk src/com/gibsson/basic/service/ app/ BasicServiceApp.java IBasicServiceImpl.java lib/ BasicManager.java com.gibsson.basic.service.lib.xml IBasicService.aidl 39
  • 40. Accessing HW on Android Custom System Service AIDL EXAMPLE 1 /** 2 * System-private API for talking to the BasicService. 3 * 4 * {@hide} 5 */ 6 interface IBasicService { 7 int getValue(); 8 int setValue(int val); 9 } 40
  • 41. Accessing HW on Android Custom System Service WRAPPER CLASS EXAMPLE 1 public class BasicManager { 2 private static final String REMOTE_SERVICE_NAME = IBasicService .class.getName(); 3 private final IBasicService service; 4 5 public static BasicManager getInstance() { 6 return new BasicManager(); 7 } 8 9 private BasicManager() { 10 this.service = IBasicService.Stub.asInterface(ServiceManager. getService(REMOTE_SERVICE_NAME)); 11 if (this.service == null) { 12 throw new IllegalStateException("Failed to find IBasicService by name [" + REMOTE_SERVICE_NAME + "]"); 13 } 14 } 15 [...] 16 } 41
  • 42. Accessing HW on Android Custom System Service IMPLEMENTATION EXAMPLE 1 class IBasicServiceImpl extends IBasicService.Stub { 2 private final Context context; 3 private int value; 4 5 IBasicServiceImpl(Context context) { 6 this.context = context; 7 } 8 protected void finalize() throws Throwable { 9 super.finalize(); 10 } 11 public int getValue() { 12 return value; 13 } 14 public int setValue(int val) { 15 value = val + 4; 16 return 0; 17 } 18 } 42
  • 43. Accessing HW on Android Custom System Service IMPLEMENTATION APP EXAMPLE 1 public class BasicServiceApp extends Application { 2 private static final String REMOTE_SERVICE_NAME = IBasicService .class.getName(); 3 private IBasicServiceImpl serviceImpl; 4 5 public void onCreate() { 6 super.onCreate(); 7 this.serviceImpl = new IBasicServiceImpl(this); 8 ServiceManager.addService(REMOTE_SERVICE_NAME, this. serviceImpl); 9 } 10 11 public void onTerminate() { 12 super.onTerminate(); 13 } 14 } 43
  • 45. Accessing HW on Android Demonstrations HARDWARE SELECTION • i.MX6Q SabreLite • Android 4.3 Jelly Bean • 10" LVDS display • Could be any other device 45
  • 46. Accessing HW on Android Demonstrations DEMONSTRATIONS • Demonstration #1 Native app access • Demonstration #2 Direct JNI access • Demonstration #3 Using Sensor API • Demonstration #4 Custom System Service 46
  • 48. Accessing HW on Android Conclusion CONCLUSION • Direct access from application Permission issue • HAL modification Only few hardware targeted • Adding a System Service Most complex but elegant way • Solution depends on constraints 48
  • 49. Accessing HW on Android Conclusion QUESTIONS? 49
  • 50. Accessing HW on Android Conclusion REFERENCES • Karim Yaghmour: Embedded Android http://shop.oreilly.com/product/0636920021094.do • Karim Yaghmour: Extending Android HAL http://www.opersys.com/blog/extending-android-hal • Marko Gargenta: Remixing Android https://thenewcircle.com/s/post/1044/remixing_android • Lars Vogel: Android Sensors http://www.vogella.com/tutorials/AndroidSensor/article.html 50