summaryrefslogtreecommitdiff
path: root/tbdiff
Commit message (Collapse)AuthorAgeFilesLines
* Remove tbd_stat_print since it's unused and unimplementedBen Brewer2014-06-042-7/+0
|
* Use POSIX file operations internally in tbdiff-applyBen Brewer2014-06-041-29/+28
| | | | | | For consistency reasons and because the POSIX functions are more consistent and simple, this also allows us to set the mode on file creation and detect if a file already exists.
* Use POSIX file operations for tbdiff-applyBen Brewer2014-06-044-106/+121
| | | | For the consistency reasons listed in earlier commits.
* Remove tbd_stat_fopen since it's no longer usedBen Brewer2014-06-042-13/+0
| | | | | Since we now use POSIX file functions only in tbdiff-create, we no longer need tbd_stat_fopen, so it's been removed.
* Use POSIX file operations internally in tbdiff-createBen Brewer2014-06-041-41/+35
| | | | | | | | This keeps the code consistent by using the same file functions internally as are used when reading from or writing to the stream. The code is also simplified somewhat since POSIX file operations are cleaner and more consistent than stdio.
* Use POSIX file functions for tbdiff-create streamBen Brewer2014-06-044-73/+78
| | | | | | | POSIX file functions are more consistent and simple, originally stdio was used to make the code as portable as possible, however since it now relies on POSIX functionality anyway there's no need for the inconsistency.
* Use quoted includes for local headers in tbdiff source filesBen Brewer2014-06-025-12/+12
| | | | | | | | | Quoted includes should be used when including headers which represent declarations in local source files. The source files have been modified to reflect this. This makes it more clear which headers are system headers and which are part of the tbdiff codebase.
* Remove use of typedef to avoid naming conflicts with POSIXBen Brewer2014-06-027-136/+140
| | | | | | | | | | | | POSIX reserves the use of the underscore T postfix for types, since most of the time we don't actually need to typedef the types and since it's more clear to prefix structs and enums with the struct and enum keywords, I've removed all uses of typedef and gone with the more simple approach used in the kernel. One typedef remains which is tbd_cmd_type, since this should be a native type of a fixed size. The postfix changed to type to show that it's a type and to ensure it doesn't collide with POSIX.
* Remove extern keyword since it's not neededBen Brewer2014-06-024-32/+32
| | | | | | The extern keyword is not needed since it's the default property for a function, it also takes up extra space on the line which leads to more wrapping.
* Print warning using TBD_WARN when chown failsbaserock/benbrewer/overhaul-v2Ben Brewer2014-06-021-8/+17
| | | | | | The compiler currently warns that the result of chown is ignored, for now we'll print a warning when the chown operation fails, but it'll need to be handled as an error eventually.
* Use TBD_DEBUG macro to print the value of an invalid commandBen Brewer2014-06-021-1/+1
| | | | | Use the TBD_DEBUG macro since it will be disabled when debug is disabled, otherwise we'd always print the error message.
* Use TBD_DEBUG macro instead of fprint for debug messagesBen Brewer2014-06-022-21/+21
| | | | | We now use the TBD_DEBUG macro rather than fprintf, this means that debug messages aren't printed when debugging is disabled.
* Added warning and debug mechanism to tbdiff-common.hBen Brewer2014-06-021-2/+29
| | | | | | | Added TBD_WARN and TBD_DEBUG macros to allow for warnings and debug messages to be printed. This will make current debugging messages cleaner and allow us to warn when the chown operation fails.
* Cleanup writing of xattr pairs in tbdiff-create.cBen Brewer2014-06-021-11/+14
|
* style: Rename fread/fwrite in function names to read and writeBen Brewer2014-06-022-86/+86
| | | | | | | | The implementation currently uses fread and fwrite which are specific functions in stdlib, however this is an implementation detail and in the future these functions may not be used, so it doesn't make sense to name the higher level functions based on the function they use underneath.
* Remove read/write_size from tbdiff-io since they're unusedBen Brewer2014-06-022-14/+0
| | | | | Also removed because size_t can vary in size across platforms, which makes it unsuitable for storing in our diff stream.
* style: Cleanup the names of the tbd read/write wrappersBen Brewer2014-06-024-90/+90
|
* Add externs to functions in tbdiff-io.h and cleanupBen Brewer2014-06-021-32/+18
| | | | | The externs are not required but it's inkeeping with the other headers which all currently have them.
* Simplify endian swapping in tbdiff-io.cBen Brewer2014-06-021-65/+51
| | | | | | | | Simplify the endian swapping by always calling the endian macro and only implementing it when the platform is big-endain. The endian swapping function has also been made a little more obvious and now uses a byteswap inline function to swap the bytes.
* Make TB_DIFF_PROTOCOL_ID a static const char for type safetyBen Brewer2014-06-021-2/+2
|
* Use correct pointer type for parent member in tbd_stat_tBen Brewer2014-06-021-3/+5
| | | | | | | The parent pointer in tbd_stat_t was void since it pointed to itself, to make the code more clear I've typedef'd the struct above so that the pointer can now point to itself as an incomplete type.
* Create tbd_cmd_t type to for commands and use sizeof in writeBen Brewer2014-06-023-7/+9
| | | | | | Previously commands were just treated as a uint8_t and given the value of and enum. This is now made more clear in the code by defining tbd_cmd_t as a uint8_t below the enum in tbdiff-common.h.
* style: Fix whitespace in tbdiff-common.hBen Brewer2014-06-021-27/+27
|
* style: Fix alignment and func defs in tbdiff-apply.cBen Brewer2014-06-021-29/+34
|
* style: Fix alignment and whitespace issues in tbdiff-createBen Brewer2014-06-021-59/+61
|
* style: Fix indentation and whitespace in tbdiff-io.cBen Brewer2014-06-021-80/+80
|
* style: Fix alignment of tbd_stat_t struct membersBen Brewer2014-06-021-3/+3
|
* style: Convert all cpp style comments to c style commentsBen Brewer2014-06-024-22/+22
|
* Fix fp resource leaks in tbdiff-applyBen Brewer2014-06-021-21/+48
| | | | | There were a lot of instances where on error the code would fail to close the opened file pointer.
* Fix memory leak of name in tbdiff-stat.cBen Brewer2014-06-021-2/+4
| | | | On error the duplicated string in 'name' would have leaked.
* Use ENODATA instead of ENOATTRBen Brewer2014-06-021-1/+1
| | | | | | The man page for lsetxattr says that ENOATTR is a synonym of ENODATA, since ENOATTR is not always available in sys/xattr.h we'll use ENODATA instead.
* Use sys/xattr from libc if attr/xattr is unavailableBen Brewer2014-06-022-2/+15
| | | | | | | | | | | | On my system tbdiff failed to build because attr/xattr doesn't exist, also the attr package was not easy to find. On searching I discovered that the functionality we use in attr.h is provided by modern versions of libc, as shown here: https://bugzilla.kernel.org/show_bug.cgi?id=70141 This patch falls back to using libc sys/xattr.h when attr/xattr.h is unavailable.
* Switch to a shared tbdiff library and make this an autotools project.Jannis Pohlmann2012-03-2213-0/+2618
This commit converts tbdiff to being an autotools-based project. This means that we now support the usual autoreconf -i && ./configure && make && make install process, plus we provide 'make check' for the tbdiff test suite. The tbdiff library is now build as a shared library and is also installed into the system for others to use. The library is libtool-versioned and ships a pkg-config file (tbdiff-1.pc). The headers were adjusted so that only tbdiff/tbdiff.h may be included directly; all others are considered internal. The tbdiff-create and tbdiff-deploy tools were changed to include this header file. The tbdiff library is still GPL, not LGPL. We might want to change this in the future. Thanks to switching to autotools we now have a way to make releases by means of 'make dist' and 'make distcheck'. Unfortunately, the latter currently fails, probably due to something being missing in tbdiff/Makefile.am.