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> |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 20 | #include <stdlib.h> |
| 21 | #include <string.h> |
| 22 | #include <unistd.h> |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 23 | #include "libtar/libtar.h" |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 24 | #include "twcommon.h" |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 25 | |
| 26 | int flush = 0, eot_count = -1; |
| 27 | unsigned char *write_buffer; |
| 28 | unsigned buffer_size = 4096; |
| 29 | unsigned buffer_loc = 0; |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 30 | int buffer_status = 0; |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 31 | int prog_pipe = -1; |
| 32 | const unsigned long long progress_size = (unsigned long long)(T_BLOCKSIZE); |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 33 | |
| 34 | void reinit_libtar_buffer(void) { |
| 35 | flush = 0; |
| 36 | eot_count = -1; |
| 37 | buffer_loc = 0; |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 38 | buffer_status = 1; |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 39 | } |
| 40 | |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 41 | void init_libtar_buffer(unsigned new_buff_size, int pipe_fd) { |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 42 | if (new_buff_size != 0) |
| 43 | buffer_size = new_buff_size; |
| 44 | |
| 45 | reinit_libtar_buffer(); |
| 46 | write_buffer = (unsigned char*) malloc(sizeof(char *) * buffer_size); |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 47 | prog_pipe = pipe_fd; |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | void free_libtar_buffer(void) { |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 51 | if (buffer_status > 0) |
| 52 | free(write_buffer); |
| 53 | buffer_status = 0; |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 54 | prog_pipe = -1; |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | ssize_t write_libtar_buffer(int fd, const void *buffer, size_t size) { |
| 58 | void* ptr; |
| 59 | |
| 60 | if (flush == 0) { |
| 61 | ptr = write_buffer + buffer_loc; |
| 62 | memcpy(ptr, buffer, size); |
| 63 | buffer_loc += size; |
| 64 | if (eot_count >= 0 && eot_count < 2) |
| 65 | eot_count++; |
| 66 | /* At the end of the tar file, libtar will add 2 blank blocks. |
| 67 | Once we have received both EOT blocks, we will immediately |
| 68 | write anything in the buffer to the file. |
| 69 | */ |
| 70 | |
| 71 | if (buffer_loc >= buffer_size || eot_count >= 2) { |
| 72 | flush = 1; |
| 73 | } |
| 74 | } |
| 75 | if (flush == 1) { |
| 76 | flush = 0; |
| 77 | if (buffer_loc == 0) { |
| 78 | // nothing to write |
| 79 | return 0; |
| 80 | } |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 81 | if (write(fd, write_buffer, buffer_loc) != (int)buffer_loc) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 82 | LOGERR("Error writing tar file!\n"); |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 83 | buffer_loc = 0; |
| 84 | return -1; |
| 85 | } else { |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 86 | unsigned long long fs = (unsigned long long)(buffer_loc); |
| 87 | write(prog_pipe, &fs, sizeof(fs)); |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 88 | buffer_loc = 0; |
| 89 | return size; |
| 90 | } |
| 91 | } else { |
| 92 | return size; |
| 93 | } |
| 94 | // Shouldn't ever get here |
| 95 | return -1; |
| 96 | } |
| 97 | |
| 98 | void flush_libtar_buffer(int fd) { |
| 99 | eot_count = 0; |
Ethan Yonker | 74db84e | 2015-06-01 09:55:00 -0500 | [diff] [blame] | 100 | if (buffer_status) |
| 101 | buffer_status = 2; |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 102 | } |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 103 | |
| 104 | void init_libtar_no_buffer(int pipe_fd) { |
| 105 | buffer_size = T_BLOCKSIZE; |
| 106 | prog_pipe = pipe_fd; |
| 107 | buffer_status = 0; |
| 108 | } |
| 109 | |
| 110 | ssize_t write_libtar_no_buffer(int fd, const void *buffer, size_t size) { |
| 111 | write(prog_pipe, &progress_size, sizeof(progress_size)); |
| 112 | return write(fd, buffer, size); |
| 113 | } |