aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/bsdiff
Commit message (Collapse)AuthorAgeFilesLines
* MFC bspatch Capsicumization and improvementsEd Maste2016-09-221-75/+153
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | r304691: bspatch: apply style(9) Make style changes (and trivial refactoring of open calls) now in order to reduce noise in diffs for future capsicum changes. r304807 (allanjude): Capsicumize bspatch Move all of the fopen() and open() calls to the top of main() Restrict each FD to least privilege (read/seek only, write only, etc) cap_enter(), and make all except the output FD read/seek only. r304821: bspatch: remove output file in the case of error r305486: bspatch: add sanity checks on sizes to avoid integer overflow Note that this introduces an explicit 2GB limit, but this was already implicit in variable and function argument types. This is based on the "non-cryptanalytic attacks against freebsd update components" anonymous gist. Further refinement is planned. r305737: bspatch: remove superfluous newlines from errx strings r305822: bspatch: use #define for header size instead of magic number r306026: bspatch: Remove backwards-compatibility sys/capability.h support bspatch previously included sys/capability.h or sys/capsicum.h based on __FreeBSD_version, as FreeBSD is the upstream for bsdiff and we may see this file incorporated into other third-party software. The Capsicum header is now installed as sys/capsicum.h in stable/10 and FreeBSD 10.3, so we can just use sys/capsicum.h and simplify the logic. Notes: svn path=/stable/10/; revision=306215
* MFC r264823 (ed): Make usage printing more consistent with other tools.Ed Maste2016-09-222-4/+22
| | | | | | | | | | | | - Introduce a separate usage() function. - Don't use argv[0]. Directly name the application, as we do elsewhere. - Don't prepend the application name. - Don't print two newlines. Also apply the unnecessary semicolon cleanup from r298089 Notes: svn path=/stable/10/; revision=306214
* Fix bspatch heap overflow vulnerability.Xin LI2016-07-251-0/+4
| | | | | | | | | Obtained from: Chromium Reported by: Lu Tung-Pin Security: FreeBSD-SA-16:25.bspatch Notes: svn path=/stable/10/; revision=303301
* MFC: r290329,r290336Andrey A. Chernov2015-11-081-4/+24
| | | | | | | | | | | | | | | | PR: 204230 r290329: Use meaningful errno for ssize_t overflow in read(). Catch size_t overflow in malloc(). r290336: Check for (old|new)size + 1 overflows off_t. Notes: svn path=/stable/10/; revision=290546
* Remove trailing whitespace per mdoc lint warningEitan Adler2012-03-291-1/+1
| | | | | | | | | | Disussed with: gavin No objection from: doc Approved by: joel MFC after: 3 days Notes: svn path=/head/; revision=233648
* Silence bogus warning when compiling with gcc46:Eitan Adler2012-01-101-1/+1
| | | | | | | | | | | error: 'pos' may be used uninitialized in this function Reviewed by: cperciva Approved by: dim MFC after: 3 days Notes: svn path=/head/; revision=229910
* mdoc: move CAVEATS, BUGS and SECURITY CONSIDERATIONS sections to theUlrich Spörlein2010-05-132-4/+4
| | | | | | | | | | | | | | bottom of the manpages and order them consistently. GNU groff doesn't care about the ordering, and doesn't even mention CAVEATS and SECURITY CONSIDERATIONS as common sections and where to put them. Found by: mdocml lint run Reviewed by: ru Notes: svn path=/head/; revision=208027
* Build usr.bin/ with WARNS=6 by default.Ed Schouten2010-01-021-3/+0
| | | | | | | Also add some missing $FreeBSD$ to keep svn happy. Notes: svn path=/head/; revision=201386
* Add notes pointing out that bsdiff does not store file hashes andColin Percival2009-10-302-0/+40
| | | | | | | | | | | | bspatch thus does not verify file hashes, and that consequently it is recommended that users store hashes separately and verify files before and after running bspatch. Requested by: BugMagnet MFC after: 1 week Notes: svn path=/head/; revision=198671
* Portability fix for non-POSIX operating systems: Open files in binary mode.Colin Percival2006-12-052-9/+17
| | | | | | | | PR: bin/106358 Submitted by: techtonik at php dot net Notes: svn path=/head/; revision=164922
* Fix up markup.Ruslan Ermilov2005-11-182-26/+38
| | | | Notes: svn path=/head/; revision=152573
* Include ../Makefile.inc, since without it programs get installed in theColin Percival2005-08-061-0/+3
| | | | | | | | | wrong place. Pointy hat to: cperciva Notes: svn path=/head/; revision=148773
* Add bsdiff and bspatch to the base system. These are tools forColin Percival2005-08-068-0/+752
constructing and applying binary patches; in particular, they perform well (in the sense of constructing small patches) for executable code. Both portsnap (coming to the base system Real Soon Now) and FreeBSD Update (coming to the base system a bit later) use bspatch. This is the same code as the bsdiff-4.2 which has been in the ports tree (misc/bsdiff) for the past year, with the following exceptions: 1. The license is now the traditional 2-clause BSD; 2. Instead of forking and execing bzip2, the code now uses libbz2; and 3. Some minor changes have been made to fit this code into the base system (adding $FreeBSD$ tags, putting bsdiff and bspatch into separate directories, etc.) This code is rather ugly and has lots of style bugs (mostly because I wrote it before I had ever heard of style(9)). Some day I'll come back and clean it up. Discussed on: freebsd-arch MFC before: 5.5-RELEASE Tested by: Several million users (earlier version). Notes: svn path=/head/; revision=148771