Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 1 | /* |
Dees Troy | 3be70a8 | 2013-10-22 14:25:12 +0000 | [diff] [blame] | 2 | Copyright 2012 bigbiff/Dees_Troy TeamWin |
| 3 | This file is part of TWRP/TeamWin Recovery Project. |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 4 | |
Dees Troy | 3be70a8 | 2013-10-22 14:25:12 +0000 | [diff] [blame] | 5 | TWRP is free software: you can redistribute it and/or modify |
| 6 | it under the terms of the GNU General Public License as published by |
| 7 | the Free Software Foundation, either version 3 of the License, or |
| 8 | (at your option) any later version. |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 9 | |
Dees Troy | 3be70a8 | 2013-10-22 14:25:12 +0000 | [diff] [blame] | 10 | TWRP is distributed in the hope that it will be useful, |
| 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | GNU General Public License for more details. |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 14 | |
Dees Troy | 3be70a8 | 2013-10-22 14:25:12 +0000 | [diff] [blame] | 15 | You should have received a copy of the GNU General Public License |
| 16 | along with TWRP. If not, see <http://www.gnu.org/licenses/>. |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 17 | */ |
| 18 | |
| 19 | #include <fcntl.h> |
| 20 | #include "libtar/libtar.h" |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 21 | #include "twcommon.h" |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 22 | |
| 23 | int flush = 0, eot_count = -1; |
| 24 | unsigned char *write_buffer; |
| 25 | unsigned buffer_size = 4096; |
| 26 | unsigned buffer_loc = 0; |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 27 | int buffer_status = 0; |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 28 | |
| 29 | void reinit_libtar_buffer(void) { |
| 30 | flush = 0; |
| 31 | eot_count = -1; |
| 32 | buffer_loc = 0; |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 33 | buffer_status = 1; |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 34 | } |
| 35 | |
| 36 | void init_libtar_buffer(unsigned new_buff_size) { |
| 37 | if (new_buff_size != 0) |
| 38 | buffer_size = new_buff_size; |
| 39 | |
| 40 | reinit_libtar_buffer(); |
| 41 | write_buffer = (unsigned char*) malloc(sizeof(char *) * buffer_size); |
| 42 | } |
| 43 | |
| 44 | void free_libtar_buffer(void) { |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 45 | if (buffer_status > 0) |
| 46 | free(write_buffer); |
| 47 | buffer_status = 0; |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | ssize_t write_libtar_buffer(int fd, const void *buffer, size_t size) { |
| 51 | void* ptr; |
| 52 | |
| 53 | if (flush == 0) { |
| 54 | ptr = write_buffer + buffer_loc; |
| 55 | memcpy(ptr, buffer, size); |
| 56 | buffer_loc += size; |
| 57 | if (eot_count >= 0 && eot_count < 2) |
| 58 | eot_count++; |
| 59 | /* At the end of the tar file, libtar will add 2 blank blocks. |
| 60 | Once we have received both EOT blocks, we will immediately |
| 61 | write anything in the buffer to the file. |
| 62 | */ |
| 63 | |
| 64 | if (buffer_loc >= buffer_size || eot_count >= 2) { |
| 65 | flush = 1; |
| 66 | } |
| 67 | } |
| 68 | if (flush == 1) { |
| 69 | flush = 0; |
| 70 | if (buffer_loc == 0) { |
| 71 | // nothing to write |
| 72 | return 0; |
| 73 | } |
| 74 | if (write(fd, write_buffer, buffer_loc) != buffer_loc) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 75 | LOGERR("Error writing tar file!\n"); |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 76 | buffer_loc = 0; |
| 77 | return -1; |
| 78 | } else { |
| 79 | buffer_loc = 0; |
| 80 | return size; |
| 81 | } |
| 82 | } else { |
| 83 | return size; |
| 84 | } |
| 85 | // Shouldn't ever get here |
| 86 | return -1; |
| 87 | } |
| 88 | |
| 89 | void flush_libtar_buffer(int fd) { |
| 90 | eot_count = 0; |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 91 | buffer_status = 2; |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 92 | } |