| Colin Cross | 28fa5bc | 2012-05-20 13:28:05 -0700 | [diff] [blame] | 1 | /* | 
| Colin Cross | 0c4c47f | 2012-04-25 19:02:58 -0700 | [diff] [blame] | 2 | * Copyright (C) 2012 The Android Open Source Project | 
| Colin Cross | 28fa5bc | 2012-05-20 13:28:05 -0700 | [diff] [blame] | 3 | * | 
|  | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 5 | * you may not use this file except in compliance with the License. | 
|  | 6 | * You may obtain a copy of the License at | 
|  | 7 | * | 
|  | 8 | *      http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 9 | * | 
|  | 10 | * Unless required by applicable law or agreed to in writing, software | 
|  | 11 | * distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 13 | * See the License for the specific language governing permissions and | 
|  | 14 | * limitations under the License. | 
|  | 15 | */ | 
|  | 16 |  | 
| Colin Cross | 0c4c47f | 2012-04-25 19:02:58 -0700 | [diff] [blame] | 17 | #define _FILE_OFFSET_BITS 64 | 
|  | 18 | #define _LARGEFILE64_SOURCE 1 | 
| Colin Cross | 28fa5bc | 2012-05-20 13:28:05 -0700 | [diff] [blame] | 19 |  | 
| Colin Cross | 28fa5bc | 2012-05-20 13:28:05 -0700 | [diff] [blame] | 20 | #include <fcntl.h> | 
| Colin Cross | 0c4c47f | 2012-04-25 19:02:58 -0700 | [diff] [blame] | 21 | #include <stdbool.h> | 
| Colin Cross | 28fa5bc | 2012-05-20 13:28:05 -0700 | [diff] [blame] | 22 | #include <stdio.h> | 
|  | 23 | #include <stdlib.h> | 
|  | 24 | #include <string.h> | 
| Colin Cross | 0c4c47f | 2012-04-25 19:02:58 -0700 | [diff] [blame] | 25 | #include <sys/types.h> | 
| Colin Cross | 28fa5bc | 2012-05-20 13:28:05 -0700 | [diff] [blame] | 26 | #include <sys/stat.h> | 
|  | 27 | #include <sys/types.h> | 
| Colin Cross | 0c4c47f | 2012-04-25 19:02:58 -0700 | [diff] [blame] | 28 | #include <unistd.h> | 
| Colin Cross | 28fa5bc | 2012-05-20 13:28:05 -0700 | [diff] [blame] | 29 |  | 
| Colin Cross | 0c4c47f | 2012-04-25 19:02:58 -0700 | [diff] [blame] | 30 | #include <sparse/sparse.h> | 
| Colin Cross | 28fa5bc | 2012-05-20 13:28:05 -0700 | [diff] [blame] | 31 |  | 
| Colin Cross | 0c4c47f | 2012-04-25 19:02:58 -0700 | [diff] [blame] | 32 | #ifndef O_BINARY | 
|  | 33 | #define O_BINARY 0 | 
|  | 34 | #endif | 
|  | 35 |  | 
|  | 36 | #if defined(__APPLE__) && defined(__MACH__) | 
|  | 37 | #define lseek64 lseek | 
|  | 38 | #define off64_t off_t | 
|  | 39 | #endif | 
|  | 40 |  | 
|  | 41 | void usage() | 
| Colin Cross | 28fa5bc | 2012-05-20 13:28:05 -0700 | [diff] [blame] | 42 | { | 
| Colin Cross | 0c4c47f | 2012-04-25 19:02:58 -0700 | [diff] [blame] | 43 | fprintf(stderr, "Usage: img2simg <raw_image_file> <sparse_image_file> [<block_size>]\n"); | 
| Colin Cross | 28fa5bc | 2012-05-20 13:28:05 -0700 | [diff] [blame] | 44 | } | 
|  | 45 |  | 
|  | 46 | int main(int argc, char *argv[]) | 
|  | 47 | { | 
| Colin Cross | 0c4c47f | 2012-04-25 19:02:58 -0700 | [diff] [blame] | 48 | int in; | 
|  | 49 | int out; | 
| Colin Cross | 0c4c47f | 2012-04-25 19:02:58 -0700 | [diff] [blame] | 50 | int ret; | 
|  | 51 | struct sparse_file *s; | 
|  | 52 | unsigned int block_size = 4096; | 
|  | 53 | off64_t len; | 
| Colin Cross | 28fa5bc | 2012-05-20 13:28:05 -0700 | [diff] [blame] | 54 |  | 
| Colin Cross | 0c4c47f | 2012-04-25 19:02:58 -0700 | [diff] [blame] | 55 | if (argc < 3 || argc > 4) { | 
|  | 56 | usage(); | 
|  | 57 | exit(-1); | 
| Colin Cross | 28fa5bc | 2012-05-20 13:28:05 -0700 | [diff] [blame] | 58 | } | 
|  | 59 |  | 
| Colin Cross | 0c4c47f | 2012-04-25 19:02:58 -0700 | [diff] [blame] | 60 | if (argc == 4) { | 
|  | 61 | block_size = atoi(argv[3]); | 
|  | 62 | } | 
| Colin Cross | 28fa5bc | 2012-05-20 13:28:05 -0700 | [diff] [blame] | 63 |  | 
| Colin Cross | 0c4c47f | 2012-04-25 19:02:58 -0700 | [diff] [blame] | 64 | if (block_size < 1024 || block_size % 4 != 0) { | 
|  | 65 | usage(); | 
|  | 66 | exit(-1); | 
|  | 67 | } | 
| Colin Cross | 28fa5bc | 2012-05-20 13:28:05 -0700 | [diff] [blame] | 68 |  | 
| Colin Cross | 0c4c47f | 2012-04-25 19:02:58 -0700 | [diff] [blame] | 69 | if (strcmp(argv[1], "-") == 0) { | 
|  | 70 | in = STDIN_FILENO; | 
|  | 71 | } else { | 
|  | 72 | in = open(argv[1], O_RDONLY | O_BINARY); | 
|  | 73 | if (in < 0) { | 
|  | 74 | fprintf(stderr, "Cannot open input file %s\n", argv[1]); | 
|  | 75 | exit(-1); | 
|  | 76 | } | 
|  | 77 | } | 
| Colin Cross | 28fa5bc | 2012-05-20 13:28:05 -0700 | [diff] [blame] | 78 |  | 
| Colin Cross | 0c4c47f | 2012-04-25 19:02:58 -0700 | [diff] [blame] | 79 | if (strcmp(argv[2], "-") == 0) { | 
|  | 80 | out = STDOUT_FILENO; | 
|  | 81 | } else { | 
|  | 82 | out = open(argv[2], O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0664); | 
|  | 83 | if (out < 0) { | 
|  | 84 | fprintf(stderr, "Cannot open output file %s\n", argv[2]); | 
|  | 85 | exit(-1); | 
|  | 86 | } | 
|  | 87 | } | 
| Colin Cross | 28fa5bc | 2012-05-20 13:28:05 -0700 | [diff] [blame] | 88 |  | 
| Colin Cross | 0c4c47f | 2012-04-25 19:02:58 -0700 | [diff] [blame] | 89 | len = lseek64(in, 0, SEEK_END); | 
|  | 90 | lseek64(in, 0, SEEK_SET); | 
| Colin Cross | 28fa5bc | 2012-05-20 13:28:05 -0700 | [diff] [blame] | 91 |  | 
| Colin Cross | 0c4c47f | 2012-04-25 19:02:58 -0700 | [diff] [blame] | 92 | s = sparse_file_new(block_size, len); | 
|  | 93 | if (!s) { | 
|  | 94 | fprintf(stderr, "Failed to create sparse file\n"); | 
|  | 95 | exit(-1); | 
|  | 96 | } | 
|  | 97 |  | 
|  | 98 | sparse_file_verbose(s); | 
|  | 99 | ret = sparse_file_read(s, in, false, false); | 
|  | 100 | if (ret) { | 
|  | 101 | fprintf(stderr, "Failed to read file\n"); | 
|  | 102 | exit(-1); | 
|  | 103 | } | 
|  | 104 |  | 
|  | 105 | ret = sparse_file_write(s, out, false, true, false); | 
|  | 106 | if (ret) { | 
|  | 107 | fprintf(stderr, "Failed to write sparse file\n"); | 
|  | 108 | exit(-1); | 
|  | 109 | } | 
|  | 110 |  | 
|  | 111 | close(in); | 
|  | 112 | close(out); | 
|  | 113 |  | 
|  | 114 | exit(0); | 
| Colin Cross | 28fa5bc | 2012-05-20 13:28:05 -0700 | [diff] [blame] | 115 | } |