Little-Endian Format • Microprocessors Differ in the Position of the Least Significant Byte

Total Page:16

File Type:pdf, Size:1020Kb

Little-Endian Format • Microprocessors Differ in the Position of the Least Significant Byte WinHex WinHex Editor • A hex editor is capable of completely displaying the contents of each file type. • A hex editor even displays control codes (e.g. linefeed and carriage-return characters) and executable code, using a two-digit number based on the hexadecimal system. • One byte is a sequence of 8 bits. • Each bit is either 0 or 1 (two possible states). • Therefore one byte can have one of 2•2•2•2•2•2•2•2 = 28 = 256 different values. • Since 256 is the square of 16, a byte value can be defined by a two-digit number based on the hexadecimal system, where each digit represents 4 bits. • The sixteen digits used in the hexadecimal system are 0-9, A-F. 0000 = 0 1000 = 8 0001 = 1 1001 = 9 0010 = 2 1010 = A 0011 = 3 1011 = B 0100 = 4 1100 = C 0101 = 5 1101 = D 0110 = 6 1110 = E 0111 = 7 1111 = F • Example: A byte whose decimal value is 65 is displayed as 41 in hexadecimal notation (4•16+1=65) and as the letter A in text mode. The ASCII character set defines the capital letter A to have the decimal value of 65. * When editing files of a certain type (for instance executable files), it is essential not to change the file size. * Moving the addresses of executable code and included data results in severely damaging such files * Please note that changing the contents of a file generally may be the reason for the corresponding application to behave anomalously. * It is quite safe to edit text passages in a file. * At any rate, it is recommendable to create backup files before editing. Endian-ness: little-endian format • Microprocessors differ in the position of the least significant byte. • Intel®, MIPS®, National Semiconductor, and VAX processors have the least significant byte first. • A multi-byte value is stored in memory from the lowest byte (the “little end”) to the highest byte. • For example, the hexadecimal number 12345678 is stored as 78 56 34 12. Endian-ness: big-endian format • Motorola and Sparc processors have the least significant byte last. • A multi-byte value is stored in memory from the highest byte (the “big end”) to the lowest byte. • For example, the hexadecimal number 12345678 is stored as 12 34 56 78. • Unless stated otherwise, multi-byte numbers are stored in little-endian format, meaning that the first byte of a number is the least significant and the last byte is the most significant. • This is the common format for computers running Microsoft Windows. • Following the little-endian paradigm, the hexadecimal values 10 27 can be interpreted as the hexadecimal number 2710 (decimal: 10,000). Integer Data Types Attribute Legend A: to be archived R: read-only H: hidden S: system X: not indexed P: NTFS reparse point O: offline T: temporary Attribute Legend I: has object ID C: compressed at filesystem level c: compressed in archive E: encrypted at filesystem level e: encrypted in archive e!: file type specific encryption/DRM e?: high entropy, possibly fully encrypted Attribute Legend (Res): HFS+ resouce ($EFS): NTFS encryption metadata (INDX): NTFS non-directory index attribute (ADS): NTFS alternate data stream (SC): found in a volume shadow copy (SUID): Set User ID (SGID): Set Group ID Master Boot Record Operating system indicators Detailed Explanation of FAT Boot Sector The Boot Process The boot process of 80x86-based personal computers (as opposed to RISC- based systems) makes direct use of a file system boot sector for executing instructions. The initial boot process can be summarized as follows: • Power On Self Test (or POST) initiated by system BIOS and CPU. • BIOS determines which device to use as the "boot device." • BIOS loads the first physical sector from the boot device into memory and transfers CPU execution to the start of that memory address. If the boot device is a hard drive, the sector loaded in step 3 is the MBR, and the boot process proceeds as follows: • MBR code loads the boot sector referenced by the partition table for the "active primary partition" into memory and transfers CPU execution to the start of that memory address. Inside the FAT Boot Sector • Because the MBR transfers CPU execution to the boot sector, the first few bytes of the FAT boot sector must be valid executable instructions for an 80x86 CPU. In practice these first instructions constitute a "jump" instruction and occupy the first 3 bytes of the boot sector. This jump serves to skip over the next several bytes which are not "executable." • Following the jump instruction is an 8 byte "OEM ID". This is typically a string of characters that identifies the operating system that formatted the volume. • Following the OEM ID is a structure known as the BIOS Parameter Block, or "BPB." Taken as a whole, the BPB provides enough information for the executable portion of the boot sector to be able to locate the NTLDR file. Because the BPB always starts at the same offset, standard parameters are always in a known location. • Because the first instruction in the boot sector is a jump, the BPB can be extended in the future, provided new information is appended to the end. In such a case, the jump instruction would only need a minor adjustment. Also, the actual executable code can be fairly generic. All the variability associated with running on disks of different sizes and geometries is encapsulated in the BPB. • The BPB is stored in a packed (that is, unaligned) format. The following table lists the byte offset of each field in the BPB. A description of each field follows the table. • Bytes Per Sector: This is the size of a hardware sector and for most disks in use in the United States, the value of this field will be 512. • Sectors Per Cluster: Because FAT is limited in the number of clusters (or "allocation units") that it can track, large volumes are supported by increasing the number of sectors per cluster. The cluster factor for a FAT volume is entirely dependent on the size of the volume. Valid values for this field are 1, 2, 4, 8, 16, 32, 64, and 128. Query in the Microsoft Knowledge Base for the term "Default Cluster Size" for more information on this subject. • Reserved Sectors: This represents the number of sectors preceding the start of the first FAT, including the boot sector itself. It should always have a value of at least 1. • FATs: This is the number of copies of the FAT table stored on the disk. Typically, the value of this field is 2. • Root Entries: This is the total number of file name entries that can be stored in the root directory of the volume. On a typical hard drive, the value of this field is 512. Note, however, that one entry is always used as a Volume Label, and that files with long file names will use up multiple entries per file. This means the largest number of files in the root directory is typically 511, but that you will run out of entries before that if long file names are used. • Small Sectors: This field is used to store the number of sectors on the disk if the size of the volume is small enough. For larger volumes, this field has a value of 0, and we refer instead to the "Large Sectors" value which comes later. • Media Descriptor: This byte provides information about the media being used. The following table lists some of the recognized media descriptor values and their associated media. Note that the media descriptor byte may be associated with more than one disk capacity. • Sectors Per FAT: This is the number of sectors occupied by each of the FATs on the volume. Given this information, together with the number of FATs and reserved sectors listed above, we can compute where the root directory begins. Given the number of entries in the root directory, we can also compute where the user data area of the disk begins. • Sectors Per Track and Heads: These values are a part of the apparent disk geometry in use when the disk was formatted. • Hidden Sectors: This is the number of sectors on the physical disk preceding the start of the volume. (that is, before the boot sector itself) It is used during the boot sequence in order to calculate the absolute offset to the root directory and data areas. • Large Sectors: If the Small Sectors field is zero, this field contains the total number of sectors used by the FAT volume. • Some additional fields follow the standard BIOS Parameter Block and constitute an "extended BIOS Parameter Block." The next fields are: • Physical Drive Number: This is related to the BIOS physical drive number. Floppy drives are numbered starting with 0x00 for the A: drive, while physical hard disks are numbered starting with 0x80. Typically, you would set this value prior to issuing an INT 13 BIOS call in order to specify the device to access. The on-disk value stored in this field is typically 0x00 for floppies and 0x80 for hard disks, regardless of how many physical disk drives exist, because the value is only relevant if the device is a boot device. • Current Head: This is another field typically used when doing INT13 BIOS calls. The value would originally have been used to store the track on which the boot record was located, but the value stored on disk is not currently used as such. Therefore, Windows NT uses this field to store two flags: • The low order bit is a "dirty" flag, used to indicate that autochk should run chkdsk against the volume at boot time.
Recommended publications
  • Helenos Installer
    Charles University in Prague Faculty of Mathematics and Physics BACHELOR THESIS Dominik T´aborsk´y HelenOS Installer Department of Distributed and Dependable Systems Supervisor of the bachelor thesis: Mgr. Martin Dˇeck´y Study programme: Computer Science Specialization: General Computer Science Prague 2013 I wish to thank to my supervisor, my family and anyone who supported me. Special thanks belongs to my father, who has left us just too soon. In memory of Daniel T´aborsk´y. I declare that I carried out this bachelor thesis independently, and only with the cited sources, literature and other professional sources. I understand that my work relates to the rights and obligations under the Act No. 121/2000 Coll., the Copyright Act, as amended, in particular the fact that the Charles University in Prague has the right to conclude a license agreement on the use of this work as a school work pursuant to Section 60 paragraph 1 of the Copyright Act. In ........ date ............ signature of the author N´azev pr´ace: HelenOS instal´ator Autor: Dominik T´aborsk´y Katedra: Katedra distribuovan´ych a spolehliv´ych syst´em˚u Vedouc´ıbakal´aˇrsk´epr´ace: Mgr. Martin Dˇeck´y, Katedra distribuovan´ych a spo- lehliv´ych syst´em˚u Abstrakt: Schopnost sebe sama nainstalovat na trval´e´uloˇziˇstˇeje jedna z vˇec´ı definuj´ıc´ıch pouˇzitelnost syst´emu. V t´eto pr´aci se pod´ıv´ame na naˇse moˇznosti jak toho dos´ahnout v pˇr´ıpadˇeoperaˇcn´ıho syst´emu HelenOS. Budeme se zab´yvat t´ım, jak´em´ame volby, jak´ejsou jejich v´yhody a nev´yhody a koneˇcnˇejak´ejsou jejich implementaˇcn´ı detaily.
    [Show full text]
  • Wikipedia: Design of the FAT File System
    Design of the FAT file system A FAT file system is a specific type of computer file system architecture and FAT a family of industry-standard file systems utilizing it. Developer(s) Microsoft, SCP, IBM, [3] The FAT file system is a legacy file system which is simple and robust. It Compaq, Digital offers good performance even in very light-weight implementations, but Research, Novell, cannot deliver the same performance, reliability and scalability as some Caldera modern file systems. It is, however, supported for compatibility reasons by Full name File Allocation Table: nearly all currently developed operating systems for personal computers and FAT12 (12- many home computers, mobile devices and embedded systems, and thus is a bit version), well suited format for data exchange between computers and devices of almost FAT16 (16- any type and age from 1981 through the present. bit versions), Originally designed in 1977 for use on floppy disks, FAT was soon adapted and FAT32 (32-bit version used almost universally on hard disks throughout the DOS and Windows 9x with 28 bits used), eras for two decades. Today, FAT file systems are still commonly found on exFAT (64- floppy disks, USB sticks, flash and other solid-state memory cards and bit versions) modules, and many portable and embedded devices. DCF implements FAT as Introduced 1977 (Standalone the standard file system for digital cameras since 1998.[4] FAT is also utilized Disk BASIC-80) for the EFI system partition (partition type 0xEF) in the boot stage of EFI- FAT12: August 1980 compliant computers. (SCP QDOS) FAT16: August 1984 For floppy disks, FAT has been standardized as ECMA-107[5] and (IBM PC DOS 3.0) ISO/IEC 9293:1994[6] (superseding ISO 9293:1987[7]).
    [Show full text]
  • Booting and Installing the Operating System Grado En Inform´Atica2017/2018 Departamento De Computaci´On Facultad De Inform´Atica Universidad De Coru˜Na
    Booting and Installing the Operating System Grado en Inform´atica2017/2018 Departamento de Computaci´on Facultad de Inform´atica Universidad de Coru~na Antonio Y´a~nezIzquierdo Antonio Y´a~nezIzquierdo Booting and Installing the Operating System 1 / 85 ContentsI 1 Selecting and preparing installation media installing an O.S. installation media preparing the media 2 The boot process booting booting steps 3 Preparing the disks. Basic disk partitioning disks partitions 4 Sharing disks among O.S.s sharing disks among O.S.s 5 Boot loaders lilo grub Antonio Y´a~nezIzquierdo Booting and Installing the Operating System 2 / 85 ContentsII elilo syslinux using removable media Antonio Y´a~nezIzquierdo Booting and Installing the Operating System 3 / 85 Selecting and preparing installation media Selecting and preparing installation media Antonio Y´a~nezIzquierdo Booting and Installing the Operating System 4 / 85 Selecting and preparing installation media installing an O.S. Selecting and preparing installation media !installing an O.S. Antonio Y´a~nezIzquierdo Booting and Installing the Operating System 5 / 85 Selecting and preparing installation media installing an O.S. Installing an O.S. the most common use of O.S.s is having them \installed" onto computers, and being run from the computer's storage devices there are also some \live" O.S.s that don't require installation but usually have limitations concerning what users can do and what software can be added installing is the process by which we put the O.S. files in one (or more) of the storage units of the system, thus allowing the system to execute the OS directly Antonio Y´a~nezIzquierdo Booting and Installing the Operating System 6 / 85 Selecting and preparing installation media installing an O.S.
    [Show full text]
  • NTFS from Wikipedia, the Free Encyclopedia Jump To: Navigation, Search NTFS Developer Microsoft Introduced July 1993 (Windows
    NTFS From Wikipedia, the free encyclopedia Jump to: navigation, search NTFS Developer Microsoft Introduced July 1993 (Windows NT 3.1) Partition identifier 0x07 (MBR) EBD0A0A2-B9E5-4433-87C0-68B6B72699C7 (GPT) Structures Directory contents B+ tree[1] File allocation Bitmap/Extents Bad blocks $badclus Limits Max file size 264 bytes (16 EiB) minus 1 KiB [2] Max number of files 4,294,967,295 (232-1)[2] Max filename length 255 UTF-16 code units[3] Max volume size 264 ? 1 clusters [2] Allowed characters in filenames In Posix namespace, any UTF-16 code unit (case sensitive) except U+0000 (NUL) and / (slash). In Win32 namespace, any UTF-16 code unit (case insensitive) except U+0000 (NUL) / (slash) \ (backslash) : (colon) * (asterisk) ? (Question mark) " (quote) < (less than) > (greater than) and | (pipe) [3] Features Dates recorded Creation, modification, POSIX change, access Date range 1 January 1601 ʹ 28 May 60056 (File times are 64-bit numbers counting 100- nanosecond intervals (ten million per second) since 1601, which is 58,000+ years) Date resolution 100ns Forks Yes (see Alternate data streams below) Attributes Read-only, hidden, system, archive, not content indexed, off-line, temporary File system permissions ACLs Transparent compression Per-file, LZ77 (Windows NT 3.51 onward) Transparent encryption Per-file, DESX (Windows 2000 onward), Triple DES (Windows XP onward), AES (Windows XP Service Pack 1, Windows Server 2003 onward) Single Instance Storage Yes Supported operating systems Windows NT family (Windows NT 3.1 to Windows NT 4.0, Windows 2000, Windows XP, Windows Server 2003, Windows Vista, Windows Server 2008) NTFS is the standard file system of Windows NT, including its later versions Windows 2000, Windows XP, Windows Server 2003, Windows Server 2008, and Windows Vista.[4] NTFS supersedes the FAT file system as the preferred file system for Microsoft͛s ͞Windows͟-branded operating systems.
    [Show full text]
  • MBR Partition Table
    Otvoreni operativni sistemi Marko Dimitrijević Fajl sistem • Particije • Tabele particija • MBR i GPT • Fajl sistemi • Montiranje fajl sistema • Informacije o fajl sistemu Particije • Kreiranje jednog ili više regiona (particija) na disku ili drugom medijumu spoljne memorije je particionisanje diska. • OS može pristupati i manipulisati podacima na svakoj particiji nezavisno od drugih. • Kreiranje particija je prvi i neophodan korak prilikom instalacije novog diska. • Podaci o veličini i lokaciji particija se čuvaju u delu diska koji se naziva tabela particija (partition table). 3 Particije - prednosti Kreiranje particija omogućuje: 1. Instaliranje više operativnih sistema na jednom fizičkom disku 2. Razdvajanje sistemskih fajlova (OS) od korisničkih fajlova 3. Odvajanje virtuelne memorije od korisničkih fajlova, što povećava brzinu sistema 4. Lakšu implementaciju kvota za korisnike 5. Lakši bekap podataka 6. Manje particije su efikasnije, lakše se sa njima manipuliše, generalno povećavaju performanse sistema 4 Particije - nedostaci Nedostaci ovog sistema: 1. Složenija administracija 2. Ukoliko su sistemski fajlovi kojima OS često pristupa nalaze na različitim particijama, doći će do pada performansi 3. Povećana fragmentacija zbog manjeg prostora 4. Kopiranje i premeštanje fajlova sa jedne particije na drugu zahteva kopiranje podataka, kopiranje/premeštanje iz jednog direktorijuma u drugi na istoj particiji zahteva samo izmenu metapodataka 5 Tabela particija • Tabela particija je deo hard diska koja sadrži informacije o particijama. Nalazi
    [Show full text]
  • PC DOS 7 Technical Update
    PC DOS 7 Technical Update Document Number GG24-4459-00 February 1995 International Technical Support Organization Boca Raton Center Take Note! Before using this information and the product it supports, be sure to read the general information under “Special Notices” on page xiii. First Edition (February 1995) This edition applies to PC DOS Version 7. Order publications through your IBM representative or the IBM branch office serving your locality. Publications are not stocked at the address given below. An ITSO Technical Bulletin Evaluation Form for reader′s feedback appears facing Chapter 1. If the form has been removed, comments may be addressed to: IBM Corporation, International Technical Support Organization Dept. 91J Building 235-2 Internal Zip 4423 901 NW 51st Street Boca Raton, Florida 33431-1328 When you send information to IBM, you grant IBM a non-exclusive right to use or distribute the information in any way it believes appropriate without incurring any obligation to you. Copyright International Business Machines Corporation 1995. All rights reserved. Note to U.S. Government Users — Documentation related to restricted rights — Use, duplication or disclosure is subject to restrictions set forth in GSA ADP Schedule Contract with IBM Corp. Abstract IBM PC DOS 7 has been designed for all types of users who need an efficient single tasking personal computer operating system. It incorporates many new utilities such as anti-virus software, comprehensive backup programs, PCMCIA support and DOS Pen extensions. Also incorporated are new features to enhance the available memory and disk space. This book is a technical reference, upgraded from IBM DOS 5.02 and written for DOS programmers, who develop applications for IBM Personal Computers or compatible systems.
    [Show full text]
  • File Allocation Table - Wikipedia, the Free Encyclopedia Page 1 of 22
    File Allocation Table - Wikipedia, the free encyclopedia Page 1 of 22 File Allocation Table From Wikipedia, the free encyclopedia File Allocation Table (FAT) is a file system developed by Microsoft for MS-DOS and is the primary file system for consumer versions of Microsoft Windows up to and including Windows Me. FAT as it applies to flexible/floppy and optical disc cartridges (FAT12 and FAT16 without long filename support) has been standardized as ECMA-107 and ISO/IEC 9293. The file system is partially patented. The FAT file system is relatively uncomplicated, and is supported by virtually all existing operating systems for personal computers. This ubiquity makes it an ideal format for floppy disks and solid-state memory cards, and a convenient way of sharing data between disparate operating systems installed on the same computer (a dual boot environment). The most common implementations have a serious drawback in that when files are deleted and new files written to the media, directory fragments tend to become scattered over the entire disk, making reading and writing a slow process. Defragmentation is one solution to this, but is often a lengthy process in itself and has to be performed regularly to keep the FAT file system clean. Defragmentation should not be performed on solid-state memory cards since they wear down eventually. Contents 1 History 1.1 FAT12 1.2 Directories 1.3 Initial FAT16 1.4 Extended partition and logical drives 1.5 Final FAT16 1.6 Long File Names (VFAT, LFNs) 1.7 FAT32 1.8 Fragmentation 1.9 Third party
    [Show full text]
  • Sup27 New 90Mm and 130Mm MOD Formats Parts 12
    Digital Imaging and Communications in Medicine (DICOM) Supplement 27 Media Formats and Physical Media for Data Interchange New and Revised Magneto-Optical Disk Formats Status: Final Text - Sep 29th, 1997 CONTENTS Page Part 12: Media Formats and Physical Media for Media Interchange .........................................................2 2 NORMATIVE REFERENCES........................................................................................................2 Annex A (Normative) PC File System ......................................................................................................3 A.2 LOGICAL FORMAT ...................................................................................................................3 Annex C (Normative) 90mm 128MB Magneto-Optical Disk ......................................................................5 C.2.2 LOGICAL FORMAT ................................................................................................................5 Annex D (Normative) 130mm 650MB Magneto-Optical Disk ....................................................................6 D.2.2 LOGICAL FORMAT ................................................................................................................6 Annex E (Normative) 130mm 1.2GB Magneto-Optical Disk......................................................................7 E.2.2 LOGICAL FORMAT ................................................................................................................7 Annex X (Normative) 90 mm 230MB Magneto-Optical
    [Show full text]
  • File Allocation and Recovery in FAT16 and FAT32
    International Journal of Scientific & Engineering Research, Volume 7, Issue 12, December-2016 343 ISSN 2229-5518 File Allocation and Recovery in FAT16 and FAT32 Riya Madaan Department of Computer Science & Applications ,Kurukshetra University, Kurukshetra-136119 [email protected] Rakesh Kumar Department of Computer Science & Applications, Kurukshetra University, Kurukshetra-136119 [email protected] Girdhar Gopal Department of Computer Science & Applications, Kurukshetra University, Kurukshetra-136119 [email protected] --------------------------------------------------Abstract----------------------------------------------------- The data recovery is the fastest emerging dynamic technology with a huge market in the area of computer security and maintenance. In order to carry out the recoveryone is to be acquainted with the file management systems i.e. FAT, NTFS. FAT is the oldest file system which was used in MSDOS and early versions of Windows. In this paper, an exhaustive study has been performed for the two variants of FAT file systems like FAT16 and FAT32 with respect to data recovery. In addition the main differencesbetween FAT16 and FAT32 are discussed. Recovery issues are also addressed. Some techniques to recover the data that have been deleted accidently or maliciously have also been reviewed. Keywords- Digital Forensics, File Recovery, FAT, File System, Storage Principle I. Introduction The data is very vital in this current world because Over the years computers have been gradually but the data may be vanished either by users own wish to unavoidably became record keepers of human delete it due to some storage issues or by activity. This trend enhanced with the advent of PCs, accidentally. In future, if the user needs the same handheld devices such as mobiles, Internet, data, it will not be possible at that time to fetch it multimedia and telecommunications.
    [Show full text]
  • DOS 3.30 Package?
    Disk Operating System Version 3.30 Technical Reference Programming Family - ------....-- - --- ---- -. --- ----------,.-- - --- - First Edition (April 1987) The following paragraph does not apply to the United Kingdom or any country where such provisions are inconsistent with local law: INTERNATIONAL BUSINESS MACHINES CORPORATION PROVIDES THIS PUBLICATION "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Some states do not allow disclaimer of express or implied warranties in certain transactions, therefore, this statement may not apply to you. This publication could include technical inaccuracies or typographical errors. Changes are periodically made to the information herein; these changes will be incorporated in new editions of the publication. IBM may make improvements and/or changes in the product(s) and/or the program(s) described in this publication at any time. It is possible that this publication may contain reference to, or information about, IBM products (machines and programs), programming, or services that are not announced in your country. Such references or information must not be construed to mean that IBM intends to announce such IBM products, programming, or services in your country. Requests for copies of this publication and for technical information about IBM products should be made to your authorized IBM Dealer or your IBM Marketing Representative. © Copyright International Business Machines Corporation 1985, 1987 About This Book Information in this book applies to DOS versions 2.10 to 3.30 unless specified in each chapter under the heading "Version Specific Information." 111 How This Book is Organized This Technical Reference has two sections.
    [Show full text]
  • (12) United States Patent (10) Patent No.: US 6,711,591 B1 Rafanell0 Et Al
    USOO6711591B1 (12) United States Patent (10) Patent No.: US 6,711,591 B1 Rafanell0 et al. (45) Date of Patent: Mar. 23, 2004 (54) TOP-DOWN CONTROL OF MULTIPLE 5,897,661 A 4/1999 Baranovsky et al......... 711/170 LAYERAGGREGATION LOGICAL VOLUME 6,192,471 B1 2/2001 Pearce et al. .................. 713/2 MANAGEMENT DATA AND BOOT RECORD 6,366,986 B1 * 4/2002 St. Pierre et al. ........... 711/162 6,401,183 B1 6/2002 Rafizadeh ................... 711/173 (75) Inventors: Benedict Michael Rafanello, Round * cited b Rock, TX (US); Mark A. Peloquin, cited by examiner Austin, TX (US); Cuong Huu Tran, Austin, TX (US); Cristi Nesbitt Primary Examiner Jeffrey Gaffin Ullmann, Austin, TX (US) Assistant Examiner Mike Nguyen (74) Attorney, Agent, or Firm-Robert H. Frantz; David A. (73) Assignee: International Business Machines Mims, Jr. Corporation, Armonk, NY (US) (57) ABSTRACT (*) Notice: Subject to any disclaimer, the term of this A System and method for control of data and boot records patent is extended or adjusted under 35 asSociated with multi-layer logical volumes allows the logi U.S.C. 154(b) by 470 days. cal volume data area containing the fake EBR to be deter ministically and efficiently accessed by using a "top down” (21) Appl. No.: 09/616,146 control methodology. Control of the logical volume manager (“LVM') data area is distributed. An LVM data area is (22) Filed Jul. 13, 2000 placed on each aggregate as well as on each partition, and (51) Int. Cl." ................................................ G06F 1200 the fake EBR is placed in the LVM data area of the topmost (52) U.S.
    [Show full text]
  • Jahnen-Thesis.Pdf
    FAKULTAT¨ FUR¨ INFORMATIK DER TECHNISCHEN UNIVERSITAT¨ MUNCHEN¨ Bachelorarbeit in Informatik Implementation of an Android Framework for USB storage access without root rights Magnus Jahnen FAKULTAT¨ FUR¨ INFORMATIK DER TECHNISCHEN UNIVERSITAT¨ MUNCHEN¨ Bachelorarbeit in Informatik Implementation of an Android Framework for USB storage access without root rights Implementierung eines Android Frameworks fur¨ den Zugriff auf USB Speicher ohne Rootrechte Author: Magnus Jahnen Supervisor: Prof. Dr. Uwe Baumgarten Advisor: Nils Kannengießer, M.Sc. Date: April 15, 2014 I assure the single handed composition of this bachelor thesis only supported by declared resources. Munich, 15th of April, 2014 Magnus Jahnen Acknowledgments Many acknowledgment goes to the operating system chair of the TUM, especially to Prof. Dr. Uwe Baumgarten and Nils Kannengießer for the ability to write this thesis and especially to Nils for guiding me. The operating system chair also borrowed me a lot of Android devices to test my work! I also want to thank Jan Axelson for his book USB Mass Storage[2]. Without this book the thesis would have been a lot more cumbersome. It was an important resource throughout the whole work. All people who read, corrected and gave me hints for improvement on this thesis in advance also deserve credit. I want to thank all of them at this place! vii Abstract This bachelor thesis describes the implementation of an Android framework to access mass storage devices over the USB interface of a smartphone. First the basics of USB (i.e. interfaces, endpoints and USB On the go) and accessing USB devices via the official Android API are discussed.
    [Show full text]