Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
... | |||||
* | main: Add help output and check for operand | Patrick McDermott | 2023-04-20 | 1 | -4/+78 |
| | |||||
* | main: Add version output | Patrick McDermott | 2023-04-20 | 1 | -2/+19 |
| | |||||
* | main: Handle options | Patrick McDermott | 2023-04-20 | 1 | -14/+99 |
| | | | | Missing: -h, -V, and -? | ||||
* | ustar: Add a couple small comments | Patrick McDermott | 2023-04-19 | 1 | -0/+4 |
| | |||||
* | opk: Automatically initialize inner gzip and ustar | Patrick McDermott | 2023-04-19 | 3 | -57/+36 |
| | | | | Simplifies interface to main(). | ||||
* | opk: Fix a leak on error | Patrick McDermott | 2023-04-19 | 1 | -9/+11 |
| | |||||
* | ustar: Make seek names struct opaque | Patrick McDermott | 2023-04-19 | 4 | -52/+80 |
| | | | | Simplify main() a little and fix memory leak on success. | ||||
* | opk: Initialize seek_name.found | Patrick McDermott | 2023-04-19 | 1 | -2/+3 |
| | |||||
* | main: Fix list free loop | Patrick McDermott | 2023-04-19 | 1 | -4/+4 |
| | |||||
* | opk: Document functions | Patrick McDermott | 2023-04-19 | 1 | -0/+55 |
| | |||||
* | opk: Return error if unable to write to stdout | Patrick McDermott | 2023-04-19 | 1 | -6/+17 |
| | |||||
* | ustar: Shorten macro name | Patrick McDermott | 2023-04-18 | 2 | -5/+5 |
| | |||||
* | opk: Print multiple control files | Patrick McDermott | 2023-04-18 | 2 | -15/+26 |
| | |||||
* | ustar: Use linked list instead of varargs in seek | Patrick McDermott | 2023-04-18 | 5 | -31/+131 |
| | | | | Also indicate when all sought member files are found. | ||||
* | opk: Separate output with newline, so main needn't | Patrick McDermott | 2023-04-18 | 2 | -3/+15 |
| | |||||
* | ustar: Document arguments that may be NULL | Patrick McDermott | 2023-04-18 | 1 | -2/+3 |
| | |||||
* | opk: Split from main | Patrick McDermott | 2023-04-18 | 4 | -251/+338 |
| | |||||
* | main: Drop a macro | Patrick McDermott | 2023-04-18 | 1 | -4/+2 |
| | |||||
* | main: Split outer and inner archive initialization | Patrick McDermott | 2023-04-18 | 1 | -67/+103 |
| | | | | | | Thus, we can both read the control file and list data files in one pass through the outer archive. Unlike dpkg-deb, opkg-opk will allow both -I and -c options (commands in dpkg-deb syntax) to be used together. | ||||
* | gzip, ustar: Document functions | Patrick McDermott | 2023-04-18 | 2 | -0/+79 |
| | |||||
* | main, ustar: Add comments | Patrick McDermott | 2023-04-18 | 2 | -0/+28 |
| | |||||
* | main: Check debian-version | Patrick McDermott | 2023-04-18 | 1 | -0/+18 |
| | |||||
* | gzip: Cast to avoid warnings | Patrick McDermott | 2023-04-18 | 1 | -2/+3 |
| | |||||
* | ustar: Use char type | Patrick McDermott | 2023-04-18 | 1 | -32/+32 |
| | | | | | | POSIX requires header characters to be encoded in ISO/IEC 646, a 7-bit code, so the extra bit in (unsigned char) is unnecessary. So fix a bunch of warnings and get rid of casts. | ||||
* | ustar: Fix a couple warnings | Patrick McDermott | 2023-04-18 | 1 | -2/+2 |
| | |||||
* | ustar: Make size unsigned | Patrick McDermott | 2023-04-18 | 2 | -2/+2 |
| | |||||
* | main: Set max column widths and free members | Patrick McDermott | 2023-04-18 | 1 | -5/+46 |
| | |||||
* | ustar, main: Dynamically allocate member structs | Patrick McDermott | 2023-04-18 | 3 | -42/+53 |
| | | | | | TODO: Save max strlen()s in first loop and printf() and free() in second loop. | ||||
* | ustar, main: Show mode and mtime | Patrick McDermott | 2023-04-17 | 3 | -10/+40 |
| | |||||
* | ustar, main: Show type, uname, and gname | Patrick McDermott | 2023-04-17 | 3 | -1/+36 |
| | |||||
* | ustar: Verify typeflag | Patrick McDermott | 2023-04-17 | 1 | -4/+20 |
| | |||||
* | Revert "ustar: Verify full magic field" | Patrick McDermott | 2023-04-17 | 1 | -1/+1 |
| | | | | | | | This reverts commit 1203f44aa85a88cfdc3008e7f14818c85bfe46c3. POSIX requires "ustar\0" but BusyBox tar creates "ustar ". Again, standard? What standard? | ||||
* | ustar: Verify full magic field | Patrick McDermott | 2023-04-17 | 1 | -1/+1 |
| | |||||
* | Revert "ustar: Verify version" | Patrick McDermott | 2023-04-17 | 1 | -4/+0 |
| | | | | | | | This reverts commit 8858721eceff2d22099ed42bee049b35a0fc712c. POSIX requires "00" but BusyBox tar creates " \0". Apparently standards are irrelevant. | ||||
* | ustar: Verify version | Patrick McDermott | 2023-04-17 | 1 | -0/+4 |
| | |||||
* | ustar: Verify header checksums | Patrick McDermott | 2023-04-17 | 1 | -3/+25 |
| | |||||
* | ustar, main: Show size of member files | Patrick McDermott | 2023-04-17 | 3 | -3/+7 |
| | | | | Also fix integer type (maximum file size is 8^12-1 = 68719476735). | ||||
* | ustar: Search for multiple member names | Patrick McDermott | 2023-04-17 | 3 | -6/+16 |
| | |||||
* | main: Fix control file name | Patrick McDermott | 2023-04-17 | 1 | -1/+1 |
| | |||||
* | main: Improve error messages about inner archive | Patrick McDermott | 2023-04-17 | 1 | -3/+6 |
| | |||||
* | gzip: Make more robust | Patrick McDermott | 2023-04-17 | 1 | -4/+17 |
| | |||||
* | ustar: Don't read sought file | Patrick McDermott | 2023-04-17 | 1 | -4/+4 |
| | |||||
* | main: Uncomment control file reading | Patrick McDermott | 2023-04-15 | 1 | -5/+5 |
| | |||||
* | ustar: Fix seeking | Patrick McDermott | 2023-04-15 | 1 | -10/+6 |
| | |||||
* | main: Print error messages | Patrick McDermott | 2023-04-15 | 1 | -0/+10 |
| | |||||
* | main: Cast function type | Patrick McDermott | 2023-04-15 | 3 | -3/+7 |
| | |||||
* | main: Simplify/improve error handling | Patrick McDermott | 2023-04-15 | 1 | -18/+25 |
| | |||||
* | ustar: Fix read buffer | Patrick McDermott | 2023-04-15 | 3 | -21/+24 |
| | |||||
* | [WIP] main: Print control file and list data files | Patrick McDermott | 2023-04-14 | 1 | -18/+92 |
| | |||||
* | Eliminate magic numbers | Patrick McDermott | 2023-04-14 | 4 | -17/+29 |
| |