Preparation of Papers in 2-Column Format

Total Page:16

File Type:pdf, Size:1020Kb

Preparation of Papers in 2-Column Format INTEGRATION OF LINUX COMMUNICATION STACKS INTO EMBEDDED OPERATING SYSTEMS Jer-Wei Chuangξ, Kim-Seng Sewξ, Mei-Ling Chiang+, and Ruei-Chuan Changξ Department of Information Management+ National Chi-Nan University, Puli, Taiwan, R.O.C. Email: [email protected] Department of Computer and Information Scienceξ National Chiao-Tung University, Hsinchu, Taiwan, R.O.C. Email: [email protected], [email protected] Thus, various operating systems design dedicated for embedded systems are thus created, such as PalmOS ABSTRACT [22], EPOC [12], Windows CE [25], GEOS [16], As the explosion of Internet, Internet connectivity is QNX [23], Pebble [2,17], MicroC/OS [21], eCos [11], required for versatile computing systems. TCP/IP LyraOS [3-7,18,19,26], etc. protocol is the core technology for this connectivity. As the explosion of Internet, adding Internet However, to implement TCP/IP protocol stacks for a connectivity is required for embedded systems. target operating system from the scratch is a TCP/IP protocol [8,9,24] is the core technology for time-consuming and error-prone task. Because of the this connectivity. However, to implement the TCP/IP spirit of GNU GPL and open source codes, Linux protocol stacks for a target operating system from the gains its popularity and has the advantages of stability, scratch is a time-consuming and error-prone task. reliability, high performance, and well documentation. Because of the spirit of GNU General Public License These advantages let making use of the existing open (GPL) [15] and open source codes, Linux [1] gains its source codes and integrating Linux TCP/IP protocol popularity and has the advantages of stability, reli- stacks into a target operating system become a ability, high performance, and well documentation. feasible and cost-effective way. These advantages let making use of the existing open In this paper, we describe how to integrate Linux source codes and integrating Linux TCP/IP protocol communication stacks into LyraOS, a compo- stacks into a target operating system become a feasi- nent-based operating system for embedded systems. ble and cost-effective way. Under the component design principle, the commu- This paper describes how to integrate Linux nication stack should also be implemented as a sepa- communication stacks into LyraOS [3-7,18,19,26]. rate and self-contained component. So the integration LyraOS is a component-based operating system de- work should deal with the difference of system design signed for embedded systems. Under the component principles and kernel architectures. This work in- design principle [2,14,17,20], the communication cludes modifying Linux communication stack codes stack should also be implemented as a separate com- and implementing LyraOS kernel support modules. ponent, such that the advantages of modularity, re- Performance evaluation shows that for TCP transmis- configurability, component replacement and reuse can sion, LyraOS performed better than Linux by 7.39%. be maintained. However, there are many difficulties The experience of this integration study can be of to deal with for this integration work. For example, practical value to serve as the reference for embed- being a monolithic kernel, Linux communication ding TCP/IP stacks into a target system. stack is not a separate component that has closely re- lationship and interaction with other kernel functions 1. INTRODUCTION such as file system, device driver, and kernel core. Embedded applications are versatile and the hardware Therefore, the integration work should solve the devices range from simple controllers to more difficulties from different system design principles complex systems. For the versatile hardware devices and different kernel architectures. Our work focuses and different application requirements, a on two parts. First, implementing the communication reconfigurable embedded operating system is needed. stacks as a self-contained component, which requires 1 modifying the Linux TCP/IP codes to separate them different socket address families [1], so the main task from other kernel functions. Second, implementing of socket layer is to call the service functions of the kernel support modules in LyraOS for integrating requested address family (e.g. INET sockets). The Linux TCP/IP protocols. INET layer will call the service functions of underly- ing TCP or UDP layers, which in turn will call the The rest of this paper is organized as follows. service functions of IP layer. The IP layer deals with Section 2 briefly describes the difference between the packets sent/received to/from network interfaces. LyraOS and Linux, which affects the integration work. The difficulties that should be dealt with for this inte- gration are also discussed and presented. Section 3 presents the integration work including modifying Linux communication codes and adding kernel sup- Network port modules. Section 4 shows primitive performance Applications User evaluation results, and Section 5 concludes this paper. Kernel BSD Socket Sockets Interface 2. INTEGRATION ISSUES UNIX, AX25, INET IPX, APPLETALK, In this section, we first briefly describe the Linux Sockets X25 ... communication stack architecture and the LyraOS Protocol TCP UDP architecture. Then the difficulties and problems Layers encountered in the integration work are discussed and IP presented. ARP Network Devices Ethernet 2.1 Linux Communication Stack Architecture The basic Linux I/O system architecture is illustrated Figure 2: The Layer Architecture of Linux Network in Figure 1, which includes network subsystem and Subsystem. file system. The network subsystem includes socket layer, network protocol layer, and network device layer, as shown in Figure 2. int socket(int domain, int type, int protocol); int bind(int sockfd, struct sockaddr *my_addr, int addrlen); System Call Interface int listen(int s, int backlog); int connect(int sockfd, struct sockaddr *serv_addr, int addrlen ); Socket int accept(int s, struct sockaddr *addr, int *addrlen); int send(int s, void *msg, int len, unsigned int flags); File Systems Network Protocol int sendto(int s,void *msg,int len,unsigned int flags, struct sockaddr *to, int tolen); int sendmsg(int s, struct msghdr *msg, unsigned int flags); Network Device Driver int recv(int s, void *buf, int len, unsigned int flags); int recvfrom(int s,void *buf,int len,unsigned int flags, Hardware struct sockaddr *from,int *fromlen); int recvmsg(int s, struct msghdr *msg, unsigned int flags); int getsockopt(int s, int level, int optname, void *optval, int *optlen); Figure 1: Linux I/O System Architecture. int setsockopt(int s, int level, int optname, void *optval, int optlen); Table 1: The Related C Library Functions. Programmers make use of the socket interfaces to access network services. The invocation is made through system call interface in C library to enter into kernel’s socket layer. The exported C library func- Linux network subsystem shares some data tions are listed in Table 1. Since Linux supports many structures and operations with file systems, which adds the difficulties in the integration work for im- 2 plementing the network system as a separate compo- ChaiVM Embedded Browser /Desktop nent. As shown in Figure 3, when BSD sockets are used, kernel will create inode (consists of socket) and Lyra Framework - POSIX 1003.4 subset API sock data structures and then make the corresponding Multimedia Supports links in the invoking process’s file descriptor table API and open file table [1]. File System TCP/UDP Kernel Core IP files_struct Components count close_on_exec open_fs BSD Socket Device Driver File Operations fd[0] file fd[1] f_mode lseek f_pos read Hardware Abstraction Layer write f_flags select f_count ioctl f_owner close Hardware (ARM / AMD Elan SC400 / PC) fd[255] inode fasync f_op File Description f_inode Table f_version socket Open File Table Figure 4: LyraOS System Architecture. type SOCK_STREAM ops Address Family data socket operations sock type SOCK_STREAM protocol 2.3 Integration Issues and Difficulties socket Since LyraOS and Linux are different in system architecture, Linux communication stacks must be modified for being integrated into LyraOS. LyraOS Figure 3: Linux BSD Socket Data Structures. should also provide some kernel support functions for this integration. Currently, LyraOS supports single address space [4,10] with static binding of applications and kernel. 2.2 LyraOS No system call invocation is needed for applications LyraOS [3-7,18,19,26] is a component-based to use the kernel’s exported services. To provide the operating system which aims at serving as a research compatible system call interface with Linux, LyraOS vehicle for operating system and providing a set of should provide the same socket interfaces for applica- well-designed and clear-interface system software tions’ use as Linux C library functions listed in Table components that are ready for Internet PC, hand-held 1. PC, embedded systems, etc. Aside from the different OS architecture, under It was implemented most in C++ and some as- the component design principle, each LyraOS system sembly codes. It is designed to abstract the hardware component is complete separate, self-contained, and resources of computer systems, so low-level machine highly modular. Each component has clean exported dependent layer is clear cut from higher-level system and imported interfaces for components to communi- semantics. Therefore, it can be easily ported to dif- cate with. So, the communication stack should also be ferent hardware architectures
Recommended publications
  • Mobile Platform Security Architectures: Software
    Lecture 3 MOBILE SOFTWARE PLATFORM SECURITY You will be learning: . General model for mobile platform security Key security techniques and general architecture . Comparison of four systems Android, iOS, MeeGo (MSSF), Symbian 2 Mobile platforms revisited . Android ~2007 . Java ME ~2001 “feature phones”: 3 billion devices! Not in smartphone platforms . Symbian ~2004 First “smartphone” OS 3 Mobile platforms revisited . iOS ~2007 iP* devices; BSD-based . MeeGo ~2010 Linux-based MSSF (security architecture) . Windows Phone ~2010 . ... 4 Symbian . First widely deployed smartphone OS EPOC OS for Psion devices (1990s) . Microkernel architecture: OS components as user space services Accessed via Inter-process communication (IPC) 5 Symbian Platform Security . Introduced in ~2004 . Apps distributed via Nokia Store Sideloading supported . Permissions are called ‘capabilities’, fixed set (21) 4 Groups: User, System, Restricted, Manufacturer 6 Symbian Platform Security . Applications identified by: UID from protected range, based on trusted code signature Or UID picked by developer from unprotected range Optionally, vendor ID (VID), based on trusted code signature 7 Apple iOS . Native application development in Objective C Web applications on Webkit . Based on Darwin + TrustedBSD kernel extension TrustedBSD implements Mandatory Access Control Darwin also used in Mac OS X 8 iOS Platform Security . Apps distributed via iTunes App Store . One centralized signature authority Apple software vs. third party software . Runtime protection All third-party software sandboxed with same profile Permissions: ”entitlements” (post iOS 6) Contextual permission prompts: e.g. location 9 MeeGo . Linux-based open source OS, Intel, Nokia, Linux Foundation Evolved from Maemo and Moblin . Application development in Qt/C++ . Partially buried, but lives on Linux Foundation shifted to HTML5- based Tizen MeeGo -> Mer -> Jolla’s Sailfish OS 10 MeeGo Platform Security .
    [Show full text]
  • Tracking of Mental Workload with a Mobile EEG Sensor
    sensors Article Tracking of Mental Workload with a Mobile EEG Sensor Ekaterina Kutafina 1,2,* , Anne Heiligers 3, Radomir Popovic 1 , Alexander Brenner 4, Bernd Hankammer 1, Stephan M. Jonas 5, Klaus Mathiak 3 and Jana Zweerings 3 1 Institute of Medical Informatics, Medical Faculty, RWTH Aachen University, 52074 Aachen, Germany; [email protected] (R.P.); [email protected] (B.H.) 2 Faculty of Applied Mathematics, AGH University of Science and Technology, 30-059 Krakow, Poland 3 Department of Psychiatry, Psychotherapy and Psychosomatics, School of Medicine, RWTH Aachen University, 52074 Aachen, Germany; [email protected] (A.H.); [email protected] (K.M.); [email protected] (J.Z.) 4 Institute of Medical Informatics, University of Münster, 48149 Münster, Germany; [email protected] 5 Department of Informatics, Technical University of Munich, 85748 Garching, Germany; [email protected] * Correspondence: ekutafi[email protected] Abstract: The aim of the present investigation was to assess if a mobile electroencephalography (EEG) setup can be used to track mental workload, which is an important aspect of learning performance and motivation and may thus represent a valuable source of information in the evaluation of cognitive training approaches. Twenty five healthy subjects performed a three-level N-back test using a fully mobile setup including tablet-based presentation of the task and EEG data collection with a self- mounted mobile EEG device at two assessment time points. A two-fold analysis approach was chosen including a standard analysis of variance and an artificial neural network to distinguish the levels of cognitive load.
    [Show full text]
  • A Comparative Analysis of Mobile Operating Systems Rina
    International Journal of Computer Sciences and Engineering Open Access Research Paper Vol.-6, Issue-12, Dec 2018 E-ISSN: 2347-2693 A Comparative Analysis of mobile Operating Systems Rina Dept of IT, GGDSD College, Chandigarh ,India *Corresponding Author: [email protected] Available online at: www.ijcseonline.org Accepted: 09/Dec/2018, Published: 31/Dec/2018 Abstract: The paper is based on the review of several research studies carried out on different mobile operating systems. A mobile operating system (or mobile OS) is an operating system for phones, tablets, smart watches, or other mobile devices which acts as an interface between users and mobiles. The use of mobile devices in our life is ever increasing. Nowadays everyone is using mobile phones from a lay man to businessmen to fulfill their basic requirements of life. We cannot even imagine our life without mobile phones. Therefore, it becomes very difficult for the mobile industries to provide best features and easy to use interface to its customer. Due to rapid advancement of the technology, the mobile industry is also continuously growing. The paper attempts to give a comparative study of operating systems used in mobile phones on the basis of their features, user interface and many more factors. Keywords: Mobile Operating system, iOS, Android, Smartphone, Windows. I. INTRUDUCTION concludes research work with future use of mobile technology. Mobile operating system is the interface between user and mobile phones to communicate and it provides many more II. HISTORY features which is essential to run mobile devices. It manages all the resources to be used in an efficient way and provides The term smart phone was first described by the company a user friendly interface to the users.
    [Show full text]
  • Mobile OS: Analysis of Customers’ Values
    Mobile OS: analysis of customers’ values Georgii Shamugiia Bachelor's Thesis Business Administration 2020 Mobile OS 01.11.2020 Author(s) Georgii Shamugiia Degree programme Bachelor of Business Administration SAMPO18 Report/thesis title Number of pages Mobile OS: analysis of customer's values and appendix pages 14 + 47 The rapid development of the mobile industry since the start of new millennium led to much more extensive usage of mobile devices than desktop computers. Fast-developing technol- ogies of wireless networking led to the excessive need of a device, which can search any info on the web conveniently, be a decent communicational tool and be able to adapt to dif- ferent needs of customers. The device which fully fulfils this need is a smartphone, which is being widely used today by the majority of the global population. In this thesis, the author digests the tools, which allows smartphones to work appropriately, give consumers a pleasuring experience while using them and run all the operations and data stored on them. These tools are mobile op- erating systems – platforms, which allow all those things and even more. In this research, the author investigates the historical development of mobile operating systems, which put a mark in the history of the industry. By digesting three cases of Nokia, Blackberry and Mi- crosoft, the author explains what were the selling points, that succeeded and managed to popularise each mobile operating system globally among consumers and gadget manufac- turers and what were the reasons that caused their global downfall. A separate chapter of this research is dedicated to a survey regarding customer values and customer opinions about mobile devices and mobile operating systems.
    [Show full text]
  • Symbian Phone Security
    Symbian phone Security Job de Haas ITSX Symbian phone Job de Haas BlackHat Security ITSX BV Amsterdam 2005 Overview • Symbian OS. • Security Risks and Features. • Taking it apart. • Conclusions. Symbian phone Job de Haas BlackHat Security ITSX BV Amsterdam 2005 Symbian History • Psion owner of EPOC OS, originally from 1989, released EPOC32 in 1996 • EPOC32 was designed with OO in C++ • 1998: Symbian Ltd. formed by Ericsson, Nokia, Motorola and Psion. • EPOC renamed to Symbian OS • Currently ~30 phones with Symbian and 15 licensees. Symbian phone Job de Haas BlackHat Security ITSX BV Amsterdam 2005 Symbian Organization • Symbian licenses the main OS • Two GUI’s on top of Symbian: – Series 60, led by Nokia – UIQ, subsidiary of Symbian • Ownership: – Nokia 47.5% Panasonic 10.5% – Ericsson 15.6% Siemens 8.4% – SonyEricsson 13.1% Samsung 4.5% Symbian phone Job de Haas BlackHat Security ITSX BV Amsterdam 2005 Symbian Versions • EPOC32 • EPOC R5 • Symbian v6.0 • Symbian v7.0 • Symbian v8.0 • Symbian v9.0 announced for Q3 ‘05 Symbian phone Job de Haas BlackHat Security ITSX BV Amsterdam 2005 Series60 versions • 1st edition • 2nd edition • 3rd edition, announced feb. 2005 Symbian phone Job de Haas BlackHat Security ITSX BV Amsterdam 2005 UIQ versions • UIQ 1.0 • UIQ 2.1 • UIQ 3.0 released feb 2005 Symbian phone Job de Haas BlackHat Security ITSX BV Amsterdam 2005 Symbian OS Symbian phone Job de Haas BlackHat Security ITSX BV Amsterdam 2005 Symbian OS • Multitasking, preemptive kernel. • MMU protection of kernel and process spaces. • Strong Client – Server architecture • Plug-in patterns • Filesystem in ROM, Flash, RAM and on SD-card Symbian phone Job de Haas BlackHat Security ITSX BV Amsterdam 2005 Symbian development • Symbian v6 and v7 are compiled with a modified GCC.
    [Show full text]
  • Introduction to Symbian OS
    Fundamentals of Symbian OS Introduction to Symbian OS Introduction Part 1a Copyright © 2001-2007 Symbian Software Ltd. Fundamentals of Symbian OS Introduction Introduction This lecture serves as general introduction to the course • The background of Symbian the company • Symbian OS C++ dialect • The architecture of Symbian OS • What is covered in the course • Resources 2 Copyright © 2001-2007 Symbian Software Ltd. Fundamentals of Symbian OS Introduction Background 3 Copyright © 2001-2007 Symbian Software Ltd. Fundamentals of Symbian OS Introduction Before Symbian - Psion Psion was established in 1980 • To develop games and software for the Z80-based Sinclair ZX81 and ZX Spectrum Products included • Flight simulator, “Horace Goes Skiing”, Psion Chess, Space Raiders and other games. • Psion Chess for the ZX81 took 1K memory • Office suite for the Sinclair QL (1983) 4 Copyright © 2001-2007 Symbian Software Ltd. Fundamentals of Symbian OS Introduction Before Symbian - Psion Mid ‘80s - Hardware • The 6301 based 8-bit Organiser (1984) - 14cm x 9cm, 2K RAM, 4K ROM, 8K datapak, 6 months battery life! • Organiser II (1986) - the world’s first proper PDA • Organiser II variants were created: up to 64K memory, 4 line screen resolution, add-on hardware • Half a million sold over a decade 5 Copyright © 2001-2007 Symbian Software Ltd. Fundamentals of Symbian OS Introduction Before Symbian - Psion 1989 - MC400 laptop • 16-bit “EPOC” Operating System - multi tasking, GUI, built-in apps • Exceptional power management, screen technology 1991 - Series 3, 1993 - Series 3a, 1996 Series 3c/Siena, Series 3mx • Clam shell organisers, built in apps, OPL, up to 2MB memory • Built on EPOC • Over 1.5 million units sold 1997 - Series 5 • 32 bit OS “EPOC32” (EPOC -> EPOC16 -> SIBO) • Slide out QWERTY keyboard, touch screen, 4MB/8MB • Implemented using C++ http://3lib.ukonline.co.uk/historyofpsion.htm 6 Copyright © 2001-2007 Symbian Software Ltd.
    [Show full text]
  • Personal Digital Assistants: Which One Is Right for Your Practice?
    Vol. 01, No. 12 / December 2002 Personal digital assistants: Which one is right for your practice? PDAs come in many models and offer a range of features and extras. Here’s help sorting through the options. John Luo, MD Assistant clinical professor and director of psychiatric informatics Department of psychiatry University of California-Davis, Sacramento Personal digital assistants (PDAs) are becoming more commonplace in practice because they immediately provide critical information at the point of care. If you’re in the market for a handheld computer, chances are you’re fazed by the multitude of available models, upgrades, and extras. Choosing a PDA is not that difficult, however, if you take the time to assess your needs and do a little homework. Start by answering these four questions: 1. Why do I need a PDA? Look at your work patterns and see how a PDA would fit in. Do you frequently look up DSM-IV criteria and other reference information? Are you constantly writing prescriptions, giving presentations, or assessing drug-drug interactions? Do you find yourself regularly checking your schedule? Also try to envision: z where you would carry the device z where, when, and how you would charge it when needed z what connections to computers for data exchange are available z with whom you would share data z and from whom you could get technical support. You may have trouble thinking that far ahead, but doing so will help you narrow your PDA choices. 2. Which operating system should I use? A PDA operates on one of four main operating systems: z Palm OS, the most popular world wide z EPOC OS, which is more popular in Europe z Pocket PC, which is rapidly gaining popularity z and Linux OS, which recently entered the PDA market.
    [Show full text]
  • Demystifying the Secure Enclave Processor
    Demystifying the Secure Enclave Processor Tarjei Mandt (@kernelpool) Mathew Solnik (@msolnik) David Wang (@planetbeing) About Us • Tarjei Mandt ▫ Senior Security Researcher, Azimuth Security ▫ [email protected] • Mathew Solnik ▫ Director, OffCell Research ▫ [email protected] • David Wang ▫ Senior Security Researcher, Azimuth Security ▫ [email protected] Introduction • iPhone 5S was a technological milestone ▫ First 64-bit phone • Introduced several technological advancements ▫ Touch ID ▫ M7 motion coprocessor ▫ Security coprocessor (SEP) • Enabled sensitive data to be stored securely ▫ Fingerprint data, cryptographic keys, etc. Secure Enclave Processor • Security circuit designed to perform secure services for the rest of the SOC ▫ Prevents main processor from gaining direct access to sensitive data • Used to support a number of different services ▫ Most notably Touch ID • Runs its own operating system (SEPOS) ▫ Includes its own kernel, drivers, services, and applications Secure (?) Enclave Processor • Very little public information exists on the SEP ▫ Only information provided by Apple • SEP patent only provides a high level overview ▫ Doesn’t describe actual implementation details • Several open questions remain ▫ What services are exposed by the SEP? ▫ How are these services accessed? ▫ What privileges are needed? ▫ How resilient is SEP against attacks? References • Patent US8832465 – Security enclave processor for a system on a chip ▫ http://www.google.com/patents/US8832465 • L4 Microkernels: The Lessons from 20 Years
    [Show full text]
  • Mobile Operating System in Today's
    IOSR Journal of Engineering (IOSR JEN) www.iosrjen.org ISSN (e): 2250-3021, ISSN (p): 2278-8719 PP 57-64 Mobile Operating System in Today’s Era 1Pranali Bhute, 2Mr. Dhiraj Rane 1Department of Computer Science, MCA-sem5, RTMNU, Nagpur, Maharashtra. 2Department of Computer Science, MCA, RTMNU, Nagpur, Maharashtra. Abstract: Earlier mobile communication technologies were dominated by vertically integrated service provision which are highly bounded mainly to voice and short message services that are organized in a monopolistic competition between few mobile virtual network operators, service providers and enhanced service providers. In the recent years, however, radical change driven by advancements in technology, witnessed the introduction and further development of smartphones where the user can get access to new applications and services by connecting to the device manufactures’ application stores and the like. These smartphones have added many features of a full-fledged computer: high speed processors, large storage space, multitasking, high- resolution screens and cameras, multipurpose communication hardware, and so on. However, these devices market is dominated by a number of different technological platforms, including different operating systems (OS) and application development platforms, resulting in a variety of different competing solutions on the market driven by different actors. This paper detailed a review and comparative analysis of the features of these technological platforms. Keywords: Mobile OS, Android, iOS, Windows Phone, Black-Berry OS, webOS and Symbian. I. Introduction Mobile communication devices have been the most adopted means of communication both in the developed and developing countries with its penetration more than all other electronic devices put together. Every mobile communication device needs some type of mobile operating system to run its services: voice calls, short message service, camera functionality, and so on.
    [Show full text]
  • June 5, 2020 Epocal Inc. Amy Goldberg Sr. Manager, Regulatory
    June 5, 2020 Epocal Inc. Amy Goldberg Sr. Manager, Regulatory Affairs 2060 Walkley Road Ottawa, K1G 3P5 Canada Re: K200107 Trade/Device Name: epoc® Blood Analysis System Regulation Number: 21 CFR 862.1120 Regulation Name: Blood Gases (PCO2, PO2) and Blood pH Test System Regulatory Class: Class II Product Code: CHL, JGS, CEM, JFP, JPI, CGA, KHP, CGL, CGZ, CDS, JFL Dated: May 1, 2020 Received: May 7, 2020 Dear Amy Goldberg: We have reviewed your Section 510(k) premarket notification of intent to market the device referenced above and have determined the device is substantially equivalent (for the indications for use stated in the enclosure) to legally marketed predicate devices marketed in interstate commerce prior to May 28, 1976, the enactment date of the Medical Device Amendments, or to devices that have been reclassified in accordance with the provisions of the Federal Food, Drug, and Cosmetic Act (Act) that do not require approval of a premarket approval application (PMA). You may, therefore, market the device, subject to the general controls provisions of the Act. Although this letter refers to your product as a device, please be aware that some cleared products may instead be combination products. The 510(k) Premarket Notification Database located at https://www.accessdata.fda.gov/scripts/cdrh/cfdocs/cfpmn/pmn.cfm identifies combination product submissions. The general controls provisions of the Act include requirements for annual registration, listing of devices, good manufacturing practice, labeling, and prohibitions against misbranding and adulteration. Please note: CDRH does not evaluate information related to contract liability warranties. We remind you, however, that device labeling must be truthful and not misleading.
    [Show full text]
  • A Comparative Study of Mobile Operating Systems with Special Emphasis on Android OS
    International Journal of Computer & Mathematical Sciences IJCMS ISSN 2347 – 8527 Volume 5, Issue 7 July 2016 A Comparative Study of Mobile Operating Systems with Special Emphasis on Android OS Aaditya Jain1 Samridha Raj2 Dr. Bala Buksh3 1M.Tech Scholar, Department of 2Department of Computer Science 3Professor, Department of Computer Science & Engg., & Engg., Computer Science & Engg., R. N. Modi Engineering College, R. N. Modi Engineering College, R. N. Modi Engineering College, Rajasthan Technical University, Rajasthan Technical University, Rajasthan Technical University, Kota, Rajasthan, India Kota, Rajasthan, India Kota, Rajasthan, India ABSTRACT In today’s world, everybody from a lay man to an industrialist is using a mobile phone. Therefore, it becomes a challenging factor for the mobile industries to provide best features and easy to use interface to its customer. Due to rapid advancement of the technology, the mobile industry is also continuously growing. There are many mobile phones operating systems available in the market but mobile phones with android OS have now become domestic product which was once extravagant product. The reason towards this change is attributed to its varied functionality, ease of use and utility. Increased usage of smart phone has led towards higher concerns about security of user- private data. Due to android as an open source mobile platform, user can easily install third party applications from markets and even from unreliable sources. Thus, Android devices are a soft target for privacy intrusion. Whenever the user wants to install any application, firstly it’s the description and the application screenshots which provides an insight into its utility. The user reviews the description as well as a list of permission requests before its installation.
    [Show full text]
  • Symbian OS from Wikipedia, the Free Encyclopedia
    Try Beta Log in / create account article discussion edit this page history Symbian OS From Wikipedia, the free encyclopedia This article is about the historical Symbian OS. For the current, open source Symbian platform descended from Symbian OS and S60, see Symbian platform. navigation Main page This article has multiple issues. Please help improve the article or discuss these issues on the Contents talk page. Featured content It may be too technical for a general audience. Please help make it more accessible. Tagged since Current events December 2009. Random article It may require general cleanup to meet Wikipedia's quality standards. Tagged since December 2009. search Symbian OS is an operating system (OS) designed for mobile devices and smartphones, with Symbian OS associated libraries, user interface, frameworks and reference implementations of common tools, Go Search originally developed by Symbian Ltd. It was a descendant of Psion's EPOC and runs exclusively on interaction ARM processors, although an unreleased x86 port existed. About Wikipedia In 2008, the former Symbian Software Limited was acquired by Nokia and a new independent non- Community portal profit organisation called the Symbian Foundation was established. Symbian OS and its associated Recent changes user interfaces S60, UIQ and MOAP(S) were contributed by their owners to the foundation with the Company / Nokia/(Symbian Ltd.) Contact Wikipedia objective of creating the Symbian platform as a royalty-free, open source software. The platform has developer Donate to Wikipedia been designated as the successor to Symbian OS, following the official launch of the Symbian [1] Help Programmed C++ Foundation in April 2009.
    [Show full text]