aboutsummaryrefslogtreecommitdiff
path: root/bin/pax
Commit message (Collapse)AuthorAgeFilesLines
* pax: prevent possible buffer overflowPedro F. Giffuni2015-12-291-1/+1
| | | | | | | | | | | Or at least quiet down some static analyzers about it. CID: 978835 MFC after: 1 week Obtained from: OpenBSD Notes: svn path=/head/; revision=292877
* Refactor the test/ Makefiles after recent changes to bsd.test.mk (r289158) andEnji Cooper2015-10-121-2/+0
| | | | | | | | | | | | | | | netbsd-tests.test.mk (r289151) - Eliminate explicit OBJTOP/SRCTOP setting - Convert all ad hoc NetBSD test integration over to netbsd-tests.test.mk - Remove unnecessary TESTSDIR setting - Use SRCTOP where possible for clarity MFC after: 2 weeks Sponsored by: EMC / Isilon Storage Divison Notes: svn path=/head/; revision=289172
* Add META_MODE support.Simon J. Gerraty2015-06-131-0/+18
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | Off by default, build behaves normally. WITH_META_MODE we get auto objdir creation, the ability to start build from anywhere in the tree. Still need to add real targets under targets/ to build packages. Differential Revision: D2796 Reviewed by: brooks imp Notes: svn path=/head/; revision=284345
| * dirdeps.mk now sets DEP_RELDIRSimon J. Gerraty2015-06-081-2/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=284172
| * Merge sync of headSimon J. Gerraty2015-05-2716-33/+33
| |\ | |/ |/| | | Notes: svn path=/projects/bmake/; revision=283595
| * Updated dependenciesSimon J. Gerraty2014-05-161-1/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=266219
| * Updated dependenciesSimon J. Gerraty2014-05-101-0/+2
| | | | | | | | Notes: svn path=/projects/bmake/; revision=265802
| * Merge from headSimon J. Gerraty2014-05-081-1/+1
| |\ | | | | | | | | | Notes: svn path=/projects/bmake/; revision=265720
| * \ Merge headSimon J. Gerraty2014-04-285-1/+125
| |\ \ | | | | | | | | | | | | Notes: svn path=/projects/bmake/; revision=265044
| * | | Updated dependenciesSimon J. Gerraty2013-03-111-0/+1
| | | | | | | | | | | | | | | | Notes: svn path=/projects/bmake/; revision=248169
| * | | Updated dependenciesSimon J. Gerraty2013-02-161-2/+0
| | | | | | | | | | | | | | | | Notes: svn path=/projects/bmake/; revision=246868
| * | | Sync from headSimon J. Gerraty2012-11-044-3/+3
| |\ \ \ | | | | | | | | | | | | | | | Notes: svn path=/projects/bmake/; revision=242545
| * | | | Sync FreeBSD's bmake branch with Juniper's internal bmake branch.Marcel Moolenaar2012-08-221-0/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Requested by: Simon Gerraty <sjg@juniper.net> Notes: svn path=/projects/bmake/; revision=239572
* | | | | Eliminate unneeded includes.Xin LI2015-05-2112-17/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | MFC after: 2 weeks Notes: svn path=/head/; revision=283257
* | | | | Implement pax -O option to permit limiting a PAX archive to a single volume.Eitan Adler2015-03-185-16/+32
| |_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -O Force the archive to be one volume. If a volume ends prematurely, pax will not prompt for a new volume. PR: 198481 Submitted by: Sevan Janiyan Reviewed by: allanjude (doc) Notes: svn path=/head/; revision=280206
* | | | Use src.opts.mk in preference to bsd.own.mk except where we need stuffWarner Losh2014-05-061-1/+1
| |_|/ |/| | | | | | | | | | | | | | | | | from the latter. Notes: svn path=/head/; revision=265420
* | | Make bsd.test.mk the only public mk fragment for the building of tests.Julio Merino2014-03-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change {atf,plain,tap}.test.mk to be internal implementation details of bsd.test.mk. Makefiles that build tests should now only include bsd.test.mk and declaratively specify what they want to build, without worrying about the internal implementation of the mk files. The reason for this change is to permit building test programs of different interfaces from a single directory, which is something I had a need for while porting tests over from src/tools/regression/. Additionally, this change makes it possible to perform some other requested changes to bsd.test.mk in an easier manner. Coming soon. Notes: svn path=/head/; revision=263161
* | | Stop the options string leak if it is not attached into the optionsKevin Lo2014-01-261-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | linked list. Obtained from: OpenBSD Notes: svn path=/head/; revision=261181
* | | Use TAP_TESTS_PERL to register the legacy_test in bin/pax.Julio Merino2014-01-143-11/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Redo r260586 by using the new functionality in tap.test.mk to transparently support perl-based test programs. As a side-effect, we get rid of an explicit path to /usr/bin/perl by replacing it with /usr/local/bin/perl (or as defined in tap.test.mk). This also fixes the name of the legacy_test source file because this should have always been legacy_test.pl and not legacy_test.sh. My mistake when originally moving the code around without realizing that this was a perl script. MFC after: 5 days Notes: svn path=/head/; revision=260634
* | | Mark the bin/pax tests as requiring perl.Julio Merino2014-01-132-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The effect of this is that the test program is marked as skipped when perl is missing, instead of marking it as broken due to an execution failure. MFC after: 3 days Notes: svn path=/head/; revision=260586
* | | Document the lack of chflags support in pax(1)Chris Rees2013-12-211-1/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | PR: docs/135516 Submitted by: arundel (based on) Approved by: gjb (mentor) Notes: svn path=/head/; revision=259695
* | | Migrate tools/regression/bin/ tests to the new layout.Julio Merino2013-12-113-0/+106
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change is a proof of concept on how to easily integrate existing tests from the tools/regression/ hierarchy into the /usr/tests/ test suite and on how to adapt them to the new layout for src. To achieve these goals, this change: - Moves tests from tools/regression/bin/<tool>/ to bin/<tool>/tests/. - Renames the previous regress.sh files to legacy_test.sh. - Adds Makefiles to build and install the tests and all their supporting data files into /usr/tests/bin/. - Plugs the legacy_test test programs into the test suite using the new TAP backend for Kyua (appearing in 0.8) so that the code of the test programs does not have to change. - Registers the new directories in the BSD.test.dist mtree file. Reviewed by: freebsd-testing Approved by: rpaulo (mentor) Notes: svn path=/head/; revision=259210
* | Fix warnings found by -Wmising-variable-declarations.Ed Schouten2012-10-194-3/+3
|/ | | | | | | | | | | | | | This self-written compiler warning, which is hopefully going to be committed into LLVM sources soon, warns about potentially missing `static' keywords, similar to -Wmissing-prototypes. - bin/pax: Move external declaration of chdname and s_mask into extern.h. - bin/setfacl: Move setfacl.c-specific stuff out of setfacl.h. - sbin/mount_fusefs: Remove char *progname; use getprogname(). - others: add `static' where possible. Notes: svn path=/head/; revision=241720
* Fix a bunch of typos and a couple of whitespace nits.Ulrich Spörlein2011-05-2212-47/+47
| | | | | | | Helped by: codespell and vim's spellchecker Notes: svn path=/head/; revision=222177
* Touch the man page date after updating the ustar limitations.Brian Somers2010-08-291-1/+1
| | | | | | | MFC after: 3 weeks Notes: svn path=/head/; revision=211965
* Correct an out-by-one error when earlying out ustar filenames thatBrian Somers2010-08-292-2/+4
| | | | | | | | | | | | | | | | are too long. Filenames escaping this test are caught later on, so the bug doesn't cause any breakage. Document the correct ustar limitations in pax. As I have no access to the IEEE 1003.2 spec, I can only assume that the limitations imposed are in fact correct. Add regression tests for the filename limitations imposed by pax. MFC after: 3 weeks Notes: svn path=/head/; revision=211963
* Fix an off-by-one error where we try to split a path name that'sBrian Somers2010-08-271-1/+1
| | | | | | | | | | more than 100 characters long and the 101th last character is a '/'. MFC after: 3 weeks Notes: svn path=/head/; revision=211864
* Fix back references in substitute command for pax(1)Ulrich Spörlein2010-05-241-4/+4
| | | | | | | | | | | | | pax(1) was trying to copy the back-referenced data from the match pattern, not the matched data. PR: bin/118132 Obtained from: Debian bug #451361 Reviewed by: jilles MFC after: 3 weeks Notes: svn path=/head/; revision=208484
* Merge OpenBSD revisions 1.4 through 1.9, mostly style cleanups.Xin LI2010-03-301-8/+9
| | | | | | | | Obtained from: OpenBSD MFC after: 3 month Notes: svn path=/head/; revision=205942
* Remove unused files.Xin LI2010-03-303-617/+0
| | | | Notes: svn path=/head/; revision=205940
* Tell the compiler these structures are aligned to a byte boundary.Warner Losh2010-02-073-7/+5
| | | | | | | | | | | | | All the elements of these structs are char anyway, so it won't hurt performance. Bump warns back up to the default. # we likely should have CTASSERTS to make sure they are the right size. # but with libarchive based tar maybe we shouldn't bother. Notes: svn path=/head/; revision=203613
* Arm doesn't seem to need such kit gloves. Bump the warnings to 3 hereWarner Losh2010-02-041-2/+0
| | | | | | | as well. Notes: svn path=/head/; revision=203480
* Port everything in bin/ from utmp to utmpx.Ed Schouten2010-01-131-8/+2
| | | | | | | | date: use libc utmpx routines instead of the ones provided by libulog. pax: don't depend on <utmp.h> Notes: svn path=/head/; revision=202193
* Add missing `void' for function without arguments.Ed Schouten2009-12-291-1/+1
| | | | Notes: svn path=/head/; revision=201179
* Plug a memory leak.Xin LI2009-12-211-0/+1
| | | | | | | | | PR: bin/141835 Submitted by: Henning Petersen <henning.petersen t-online.de> MFC after: 2 weeks Notes: svn path=/head/; revision=200794
* Before this fix, pax would stop the restore sequence forTim Kientzle2009-02-011-36/+4
| | | | | | | | | | | | | | | | symlinks after setting the owner. As a result, mode and timestamp were not restored. This patch corrects the problem by simply removing the short-circuit for symlinks and using lchown()/lchmod()/lutimes() always for restoring metadata. PR: bin/91316 Submitted by: Jaakko Heinonen Reviewed by: Joerg Sonnenberger MFC after: 14 days Notes: svn path=/head/; revision=187976
* Remove unnecessary free argument casts.Brian Somers2007-05-254-32/+29
| | | | | | | Don't abuse arcname's constness. Notes: svn path=/head/; revision=169993
* Cleanup pax(1) sources a little bit while I poked around in them:Ralf S. Engelschall2007-05-245-25/+25
| | | | | | | | - remove a superfluous doubled trailing semicolon. - remove the extra void casts on calls to void-function free(3). Notes: svn path=/head/; revision=169926
* Fix some of the alignment warnings on ARM.Ruslan Ermilov2006-11-272-17/+17
| | | | Notes: svn path=/head/; revision=164699
* Markup fixes.Ruslan Ermilov2006-09-171-1/+2
| | | | Notes: svn path=/head/; revision=162379
* Fix the wording about the blocksize (-b) parameter. The existingColeman Kane2006-05-101-2/+3
| | | | | | | | | | | | wording makes it look like pax archives > 32256 bytes are not POSIX-compliant! Correct this to state that pax archives with block sizes > 32256 are not POSIX compliant...and settle our fears. PR: docs/97059 Reviewed by: Giorgos Keramidas <keramida> Notes: svn path=/head/; revision=158414
* Fix bin/pax doesn't wait for compress/gzip before exiting.David E. O'Brien2005-03-121-4/+6
| | | | | | | | Submitted by: Joerg Sonnenberger <joerg@britannica.bec.de> Obtained from: OpenBSD (commited fix to PR 3455) Notes: svn path=/head/; revision=143447
* Expand *n't contractions.Ruslan Ermilov2005-02-131-1/+1
| | | | Notes: svn path=/head/; revision=141846
* Fixed the misplaced $FreeBSD$.Ruslan Ermilov2005-02-092-2/+2
| | | | Notes: svn path=/head/; revision=141580
* Add the new standard EXIT STATUS section where appropriate.Ruslan Ermilov2005-01-163-51/+51
| | | | | | | Sort standard sections in the (documented) preferred order. Notes: svn path=/head/; revision=140353
* Don't decend into directories when -d is set and the directory itself doesn'tBrian Somers2005-01-123-2/+19
| | | | | | | | | | | match. PR: 28095 Submitted by: bill at twwells dot com MFC after: 7 days Notes: svn path=/head/; revision=140097
* /*- or .\"- or #- to begin license clauses.Warner Losh2005-01-104-3/+4
| | | | Notes: svn path=/head/; revision=139969
* Fix off-by-one errors and potential buffer overrunsYaroslav Tykhiy2004-11-131-18/+30
| | | | | | | | | | | | | WRT handling file and link names that reach the allowed maximum for old tar and ustar archive formats. PR: bin/40466 Submitted by: Cyrille Lefevre <email in the PR> (portions) Reviewed by: freebsd-arch (silence) MFC after: 1 month Notes: svn path=/head/; revision=137645
* Document missing multibyte character handling in utilities specifiedTim J. Robbins2004-07-031-1/+5
| | | | | | | by POSIX. Notes: svn path=/head/; revision=131513
* Deal with double whitespace.Ruslan Ermilov2004-07-031-2/+2
| | | | Notes: svn path=/head/; revision=131505