]> Kevux Git Server - fll/log
fll
5 years agoFeature: add package generation helper scrript
Kevin Day [Fri, 19 Jul 2019 01:14:38 +0000 (20:14 -0500)]
Feature: add package generation helper scrript

There are four intended package design modes:
1) individual - each package is separated into their own individual directory and version.
2) level - Each of the three levels (level 0, level 1, and level 2) are put into their own directory and version.
3) monolothic - All three levels (level 0, level 1, and level 2) are put into a single directory and version.

Monolithic is not currently implemented due to design limitations in the generate.sh script and build settings files.

Compression is not performed.

5 years agoCleanup: re-organize object file generation into separate directory
Kevin Day [Thu, 18 Jul 2019 03:32:29 +0000 (22:32 -0500)]
Cleanup: re-organize object file generation into separate directory

The object files should be added in an 'objects/' directory instead of in 'libraray/static/' directory.

5 years agoSecurity: use signed integers for string lengths and array lenghts by default
Kevin Day [Thu, 18 Jul 2019 01:11:17 +0000 (20:11 -0500)]
Security: use signed integers for string lengths and array lenghts by default

Standard functions, such as strnlen(), appear to operate on signed integers instead of unsigned.
Not being able to handle unsigned integers provides unknown behavior that could lead to potential security vulnerabilities.
Future versions of this project will likely need to abandon these methods for more flexible alternatives.

Example problem:
  sources/c/console.c:36:23: warning: 'strnlen' specified bound 18446744073709551615 exceeds maximum object size 9223372036854775807 [-Wstringop-overflow=]
     36 |       string_length = strnlen(argv[location], f_console_max_size);

That is 2^63 instead of the expected 2^64.

The array lengths were converted to signed as well.

5 years agoBugfix: add missing includes
Kevin Day [Wed, 17 Jul 2019 03:58:56 +0000 (22:58 -0500)]
Bugfix: add missing includes

5 years agoCleanup: add missing build_static default setting and remove duplicates
Kevin Day [Wed, 17 Jul 2019 03:23:25 +0000 (22:23 -0500)]
Cleanup: add missing build_static default setting and remove duplicates

5 years agoUpdate: version to 0.4.3
Kevin Day [Wed, 17 Jul 2019 03:14:12 +0000 (22:14 -0500)]
Update: version to 0.4.3

5 years agoBugfix: variables not being stored in array
Kevin Day [Wed, 17 Jul 2019 03:07:13 +0000 (22:07 -0500)]
Bugfix: variables not being stored in array

Do not directly use string in bash array arguments.
More recent versions of bash do not handle this as expected.
Move explicit string to a variable and then use that variable to access the array.

9 years agoUpdate: add support for separate build_static setting 0.4.2
Kevin Day [Wed, 6 May 2015 02:10:01 +0000 (21:10 -0500)]
Update: add support for separate build_static setting

This allows for building both shared and static libraries and programs.

9 years agoUpdate: use firewall_default_allocation_step, +1 was being used and should have been...
Kevin Day [Tue, 17 Mar 2015 02:41:03 +0000 (21:41 -0500)]
Update: use firewall_default_allocation_step, +1 was being used and should have been +firewall_default_allocation_step

9 years agoUpdate: change default rules for icmp traffic and cleanup some comments
Kevin Day [Tue, 17 Mar 2015 02:26:32 +0000 (21:26 -0500)]
Update: change default rules for icmp traffic and cleanup some comments

I learned a little bit more about icmp and what is and is not deprecated.
Block certain icmp ports by default.

Shorten the file by removing unnecessary comments.

9 years agoUpdate: do not resize strings when length = 0, instead just updated used
Kevin Day [Tue, 17 Mar 2015 02:24:45 +0000 (21:24 -0500)]
Update: do not resize strings when length = 0, instead just updated used

I was working on this before I moved.
I am not sure if there is more too this that needs to be done, but for now I will push this.

9 years agoBugfix: direction option was confusing because it was mixed with chains
Kevin Day [Wed, 14 Jan 2015 10:19:01 +0000 (04:19 -0600)]
Bugfix: direction option was confusing because it was mixed with chains

- Separate direction command into two separate commands: direction, and chain.
- The chain command mimics iptables chains and is automatically populated by the custom lists (aka: custom chains).
- When direction is set to something other than none, then the active ethernet device is used.
- Code cleanup and changes were performed while working on this.
- Added basic support for debugging, define _en_firewall_debug_ to enable custom debugging parameter.

9 years agoUpdate: add debug as a standard console parameter
Kevin Day [Wed, 14 Jan 2015 10:11:21 +0000 (04:11 -0600)]
Update: add debug as a standard console parameter

9 years agoUpdate: oops! don't block unicasts by default
Kevin Day [Wed, 14 Jan 2015 04:57:48 +0000 (22:57 -0600)]
Update: oops! don't block unicasts by default

Whoops, I overlooked that unicast was the name for the normal, expected, behavior of standard point to point network connections.

9 years agoUpdate: improve the contents firewall settings files
Kevin Day [Wed, 14 Jan 2015 04:21:34 +0000 (22:21 -0600)]
Update: improve the contents firewall settings files

- Add more information to the example firewall settings.
- Improve/fix dhcp client/server rules
- Block/Blackhole unicasts, multicasts, and broadcasts.
- Add some examples rules on conntrack and some security rules.

9 years agoBugfix: reverse order of library links
Kevin Day [Fri, 9 Jan 2015 03:17:48 +0000 (21:17 -0600)]
Bugfix: reverse order of library links

It seems I got the order backwards.
I was using -lc and all the lowest level libraries on the left of the libraries that depend on it.
This caused unobvious linkage errors down the road.
Reversing the order prevented the problem and allowed for static libraries to link.

It is possible the order issue is with ar and not with gcc.

9 years agoBugfix: remove more cases where build_alt variables where still being used
Kevin Day [Fri, 9 Jan 2015 02:57:44 +0000 (20:57 -0600)]
Bugfix: remove more cases where build_alt variables where still being used

9 years agoBugfix: fix order of library linkage for firewall build settings
Kevin Day [Fri, 9 Jan 2015 00:55:55 +0000 (18:55 -0600)]
Bugfix: fix order of library linkage for firewall build settings

The ar command is sensitive to the order in which libraries are added.
Prior to this change, building a static library could have dependencies used before they are defined due to the order in which libraries were added.
Change the order so that libraries are to the right of their dependencies in the command line argument order

9 years agoBugfix: fix order of library linkage
Kevin Day [Fri, 9 Jan 2015 00:51:57 +0000 (18:51 -0600)]
Bugfix: fix order of library linkage

The ar command is sensitive to the order in which libraries are added.
Prior to this change, building a static library could have dependencies used before they are defined due to the order in which libraries were added.
Change the order so that libraries are to the right of their dependencies in the command line argument order.

9 years agoBugfix: revert compiler workaround 5bdaa0b, place arguments after source
Kevin Day [Fri, 9 Jan 2015 00:34:06 +0000 (18:34 -0600)]
Bugfix: revert compiler workaround 5bdaa0b, place arguments after source

The problem turns out to be that, for gcc at the very least, linker options such as -lc are not properly passed to the linker when it is before the source files.
Using the examples:
  1) gcc -lc main.c
  2) gcc main.c -lc

In case of #1, the -lc is not passed to the linker.
In case of #2, the -lc is passed to the linker.

All arguments are now being moved after the source parts.

see: 5bdaa0b Workaround: compilers on some systems seem to be sensitive to the order of arguments
see: http://gcc.gnu.org/onlinedocs/gcc/Link-Options.html

9 years agoUpdate: f_error changes and more signals
Kevin Day [Thu, 8 Jan 2015 03:14:41 +0000 (21:14 -0600)]
Update: f_error changes and more signals

- Added more signal commands.
- Added more signal codes for up to 64 signals.
- Replaced f_error_unmask with f_error_set_fine to be more consistent with the other f_error_set_* names.
- The signal bit is intended to be both the error and warning bit set so it is mathematically the same as the mask bit.
- Change f_none starting point to 197 to handle all possible 64 signals.

9 years agoCleanup: explicitly initialize f_false enumerator to 0.
Kevin Day [Wed, 31 Dec 2014 02:42:23 +0000 (20:42 -0600)]
Cleanup: explicitly initialize f_false enumerator to 0.

9 years agoUpdate: add signal code support to f_errors and move error code starting point to 166
Kevin Day [Wed, 31 Dec 2014 02:37:46 +0000 (20:37 -0600)]
Update: add signal code support to f_errors and move error code starting point to 166

Signals are used as the high order bits in a process that exits, which is where I provide error and similar return codes.
For this reason I am adding wrappers to the x86 signal codes in f_errors instead of a separate custom project such as the non-existant f_signals.

It looks like bash mixes the exit codes and signals into the numbers 129 to 165, so start with 166 as well.

9 years agoUpdate: uncomment pipe detection code in return_code and fss_return_code
Kevin Day [Wed, 31 Dec 2014 01:57:34 +0000 (19:57 -0600)]
Update: uncomment pipe detection code in return_code and fss_return_code

Not sure why this was disabled, perhaps it was not implemented?
At least, enable the variable.

10 years agoFeature: add support for -p, --project in generate.sh
Kevin Day [Thu, 16 Oct 2014 04:23:11 +0000 (23:23 -0500)]
Feature: add support for -p, --project in generate.sh

This adds support for defining a custom name for the use of preparing and building a project.
The files will be called .built-$project and .prepare-$project.
This allows for building multiple projects in the same directory path back to back.

10 years agoCleanup: remove unused parameter 'settings_path'
Kevin Day [Wed, 15 Oct 2014 23:26:30 +0000 (18:26 -0500)]
Cleanup: remove unused parameter 'settings_path'

10 years agoUpdate: add level's 0, 1, and 2 settings file to build a single library per level
Kevin Day [Wed, 15 Oct 2014 05:16:31 +0000 (00:16 -0500)]
Update: add level's 0, 1, and 2 settings file to build a single library per level

10 years agoUpdate: define f_extern as extern
Kevin Day [Wed, 15 Oct 2014 05:13:51 +0000 (00:13 -0500)]
Update: define f_extern as extern

This should allow for mass changing or mass removing f_extern via a simple custom #define or a command line parameter such as -Df_extern= .

10 years agoFeature: add support for defining the linker program via build_linker= setting
Kevin Day [Thu, 9 Oct 2014 03:15:01 +0000 (22:15 -0500)]
Feature: add support for defining the linker program via build_linker= setting

10 years agoBugfix: fix missing dependencies
Kevin Day [Fri, 8 Aug 2014 03:51:55 +0000 (22:51 -0500)]
Bugfix: fix missing dependencies

10 years agoCleanup: correct the documentation on the file's level
Kevin Day [Fri, 8 Aug 2014 01:21:33 +0000 (20:21 -0500)]
Cleanup: correct the documentation on the file's level

10 years agoBugfix: add missing required library link dependencies
Kevin Day [Fri, 8 Aug 2014 00:55:00 +0000 (19:55 -0500)]
Bugfix: add missing required library link dependencies

It seems I got away with forgetting some important libraries that were required by some libraries.
This makes me wonder if this is the cause of the bug that forced me to create the build_alt option.

10 years agoBugfix: programs incorrectly reporting version
Kevin Day [Sun, 3 Aug 2014 22:40:35 +0000 (17:40 -0500)]
Bugfix: programs incorrectly reporting version

I noticed, unfortunately after the release and not before, that the proper version number was not being reported.
This seems to have been an oversight.

To reduce the chances of this happening, I decided to make the next version number be the default.
I will make a release after a month or two fixing this.

10 years agoWorkaround: compilers on some systems seem to be sensitive to the order of arguments 0.4.1
Kevin Day [Thu, 26 Jun 2014 03:29:51 +0000 (22:29 -0500)]
Workaround: compilers on some systems seem to be sensitive to the order of arguments

As far as I can tell, some systems (in my case, it was on linuxmint, either debian or ubuntu) the compiler interprets the following differently:
  1) gcc -lc main.c
  2) gcc main.c -lc

The should be the same, but they are not for some compilers.

This is also not as obvious, some programs or libraries compile while others do not.

In my case, I ran the entire compilation of the f_* fl_* and fll_* libraries using the approach from (1).
Everything compiled and worked, up until I tried to compile my firewall program.
It complained that firewall_main was not found, despite all of the libraries in the path being valid.

I had to recompile the entire f_* fl_* and fll_* libraries using (2) for the firewall program to compile.
No functional changes were made, simply the order of compile arguments.

Therefore, I have implemented an alternative version of the build command, called build_alt.
This should be used if you are using a system where (2) is required over (1).

10 years agoBugfix: fix mistake in variable usage within generate.sh
Kevin Day [Thu, 26 Jun 2014 03:23:19 +0000 (22:23 -0500)]
Bugfix: fix mistake in variable usage within generate.sh

The $sources variable has invalid bash syntax.

11 years agoRelease: FLL 0.4.0
Kevin Day [Tue, 27 Aug 2013 00:27:33 +0000 (19:27 -0500)]
Release: FLL 0.4.0

On second thought, 0.3.1 does not need to be released because there is no further development going on in the 0.3.x branch.
Instead, make a stable release (0.4.0).

11 years agoRelease: FLL 0.3.1 0.4.0
Kevin Day [Tue, 27 Aug 2013 00:13:58 +0000 (19:13 -0500)]
Release: FLL 0.3.1

11 years agoUpdate: remove unavailable script function references
Kevin Day [Tue, 27 Aug 2013 00:13:06 +0000 (19:13 -0500)]
Update: remove unavailable script function references

The install and uninstall functions were referenced but are no longer defined.
Just remove their references.

12 years agoBugfix: free allocated memory when exiting on fork error
Kevin Day [Wed, 11 Jul 2012 03:32:53 +0000 (22:32 -0500)]
Bugfix: free allocated memory when exiting on fork error

12 years agoBugfix: properly initialize name_size string_length
Kevin Day [Wed, 11 Jul 2012 03:30:16 +0000 (22:30 -0500)]
Bugfix: properly initialize name_size string_length

12 years agoUpdate: add readme file for generate.sh
Kevin Day [Tue, 10 Jul 2012 03:38:30 +0000 (22:38 -0500)]
Update: add readme file for generate.sh

12 years agoUpdate: add dependencies files 0.3.0
Kevin Day [Tue, 10 Jul 2012 03:11:59 +0000 (22:11 -0500)]
Update: add dependencies files

12 years agoUpdate: Report total number of content parts when doing a total
Kevin Day [Sat, 7 Jul 2012 23:40:04 +0000 (18:40 -0500)]
Update: Report total number of content parts when doing a total

This is uneeded for basic and basic list, but extended supports multiple content parts.
When -t is passed while doing a selection using -c, report the total number of content parts instead of the total number found.

12 years agoBugfix: correct mistakes in firewall settings files
Kevin Day [Wed, 20 Jun 2012 03:53:07 +0000 (22:53 -0500)]
Bugfix: correct mistakes in firewall settings files

The files were not entirely synced with my local copies and contained invalid configurations.

12 years agoBugfix: fl_execute is now fll_execute
Kevin Day [Sun, 17 Jun 2012 23:40:05 +0000 (18:40 -0500)]
Bugfix: fl_execute is now fll_execute

At some point fl_execute and level_1/execute.h where moved to level 2: fll_execute and level_2/execute.h.
This corrects files that did not get updated to reflect this change.

12 years agoUpdate: use +v and ++version instead of -v and --version
Kevin Day [Sun, 17 Jun 2012 23:12:11 +0000 (18:12 -0500)]
Update: use +v and ++version instead of -v and --version

Use of -v and --version is less common than -h and --help.
Instead, use +v and ++version to free up -v for other purposes like --verbose.

12 years agoBugfix: ipv6 icmp is different than ipv4 icmp, adjust rules accordingly
Kevin Day [Sun, 10 Jun 2012 19:41:20 +0000 (14:41 -0500)]
Bugfix: ipv6 icmp is different than ipv4 icmp, adjust rules accordingly

The ipv6 in iptables uses a separate command called icmpv6, with the parameter called icmpv6-type.
Adjust the default settings files to use ipv4 icmp only with iptables and ipv6 icmp only with ip6tables.

This also updates the icmp types for ipv6, adding comments on what each type is.

12 years agoBugfix: Fix usage of rule_contents for protocol none option
Kevin Day [Sun, 10 Jun 2012 18:31:20 +0000 (13:31 -0500)]
Bugfix: Fix usage of rule_contents for protocol none option

The if condition that is checking for the existing of the protocol option 'none' was improperly setup.
It was using the rule_objects instead of the rule_contents and therefore would never validate.

12 years agoFeature: add support for ipv6 firewall via new 'tool' option
Kevin Day [Sun, 10 Jun 2012 18:24:18 +0000 (13:24 -0500)]
Feature: add support for ipv6 firewall via new 'tool' option

This adds the 'tool' option that can assign one of the following values:
- iptables
- ip6tables
- ip46tables

This adds support for ipv6 firewalling.
The default firewall rules enables iptables and ip6tables via the option called ip46tables.

Also, future versions will include support for the tool 'ipset'.

12 years agoBugfix: fix build and install data settings file
Kevin Day [Sun, 10 Jun 2012 16:45:11 +0000 (11:45 -0500)]
Bugfix: fix build and install data settings file

The settings should be for fll_colors and not fll_print.

12 years agoCleanup: move color context structure from level 2 to level 1
Kevin Day [Sat, 9 Jun 2012 19:48:41 +0000 (14:48 -0500)]
Cleanup: move color context structure from level 2 to level 1

Nothing in it depends on level 2.
Move it to level 1, making it available to all level 2 projects.
This renames the structure from fll_color_context to fl_color_context.
Appropriate initializers and memory related macros are renamed accordingly.

12 years agoBugfix: fix f_error_is_not_error logic
Kevin Day [Sat, 9 Jun 2012 16:36:02 +0000 (11:36 -0500)]
Bugfix: fix f_error_is_not_error logic

The logic is wrong.
Just use the error bit instead.
Remove f_error_bit_not_error as it is not needed.

12 years agoCleanup: rename/move f_output to f_print
Kevin Day [Sat, 9 Jun 2012 16:21:09 +0000 (11:21 -0500)]
Cleanup: rename/move f_output to f_print

Be consinstent with the project+names wherever possible.
In this case, it is very much possible.
The functions area already called f_print*, so change the name of the project to f_print.

12 years agoUpdate: remove *_initialize for specific types
Kevin Day [Sat, 9 Jun 2012 04:49:36 +0000 (23:49 -0500)]
Update: remove *_initialize for specific types

Data types that are numeric, non-pointer, and non-structure should not need an *_initializer macros.
It has been decided for simplicity purposes that these will be left alone.

All other data types that are either non-numeric, pointers, or structures will continue to require *_initialize macros.

12 years agoCleanup: remove stale todo notes
Kevin Day [Sat, 9 Jun 2012 04:26:49 +0000 (23:26 -0500)]
Cleanup: remove stale todo notes

These notes were never meant to be committed.
What they represented is already implemented.

12 years agoUpdate: return f_unknown at end of f_is_digit
Kevin Day [Sat, 9 Jun 2012 04:25:40 +0000 (23:25 -0500)]
Update: return f_unknown at end of f_is_digit

If for some reason the end of the function is reached, f_unknown is returned.
This should be impossible and if compilers give an error, then that line can be removed.

12 years agoUpdate: redesign error codes
Kevin Day [Sat, 9 Jun 2012 04:19:00 +0000 (23:19 -0500)]
Update: redesign error codes

This is a major rewrite of the error code system.

Previously, the error system did the following:
- used an unsigned short data type
- allowed for all 16 bits to be used
- because it was unsigned short, different architectures might have different size.
- it is rather inefficient and ugly to check for errors when there may be as many as 30 different error codes to compare against.

The new error system does the following:
- enforce exactly 16-bit unsigned integer by using uint16_t.
- reserves the first two high order bits in the following manner:
  - bit 1 = error bit (1000 0000 0000 0000)
  - bit 2 = warning bit (0100 0000 0000 0000)
  - (note setting both bit 1 and bit 2 is unsupported)
- provide a series of macros to quickly detect and manage the new bits
- limits the total available number of error codes to 14-bits instead of 16-bits

The advantage of the new system is that what the status code is can be detected in one or two conditionals (using bitwise operations).
This should speed up performance and make the code easier to read.

12 years agoUpdate: add the new default/example firewall setting files
Kevin Day [Fri, 8 Jun 2012 00:39:11 +0000 (19:39 -0500)]
Update: add the new default/example firewall setting files

I forgot to add this with one of the previous commits.
This is the rewrite of the setting rules using custom chains.
This also utilizes the newly added protocol support.

12 years agoFeature: add support for 'protocol' option
Kevin Day [Fri, 8 Jun 2012 00:36:34 +0000 (19:36 -0500)]
Feature: add support for 'protocol' option

The protocol option adds support for mass adding things like '-p tcp' in front of every rule.
This reduces repetition of the -p * commands.

The 'protocol' option accepts any single parameter or the reserved parameter 'none'.
Using 'none' will turn off the protocol option.
Other than 'none', this poses no restrictions on what the protocol may be.
Instead, that is left to iptables.

12 years agoUpdate: rewrite firewall, adding support for custom chains
Kevin Day [Thu, 7 Jun 2012 23:06:57 +0000 (18:06 -0500)]
Update: rewrite firewall, adding support for custom chains

This is a major redesign of the firewall program.
Iptables chains are now supported automatically.
Each new basic list is itself a chain.
Reserved words not allowed for custom chains are:
- main
- stop
- lock

The 'main' chain signifies use of the default iptables chain.

The layout and structure of the files have been rewritten to utilize chains.
The default-firewall file has been removed and replaced with the following files:
- firewall-first
- firewall-last
- firewall-other

The newly written rules defines default firewall rules and chains such that there the following self-explanatory chains:
- input-tcp
- input-udp
- input-icmp
- output-tcp
- output-udp
- output-firewall

In addition to the above changes, the base functionality has been broken up into smaller functions to improve code quality.

12 years agoUpdate: add support for array_length arrays
Kevin Day [Thu, 7 Jun 2012 05:33:03 +0000 (00:33 -0500)]
Update: add support for array_length arrays

Because this uses memory operations it was moved to a separate file called types_arrays.h
This adds a dependency on f_memory.
While the dependency is circular, f_types will never provide source files.
Therefore chicken and the egg issues should not be a problem (f_types is always installed before f_memory).

12 years agoBugfix: fix invalid f_string_lengths initializer
Kevin Day [Thu, 7 Jun 2012 04:49:12 +0000 (23:49 -0500)]
Bugfix: fix invalid f_string_lengths initializer

This should initialize to 0 and not the f_string_length_initializer because it is a pointer.

12 years agoUpdate: add file position reset macro
Kevin Day [Thu, 7 Jun 2012 03:43:33 +0000 (22:43 -0500)]
Update: add file position reset macro

Define a macro because creating a function is just overkill for this.
This macro should save a few lines of code when reseting the file position.

12 years agoBugfix: reset position on back to back lists
Kevin Day [Thu, 7 Jun 2012 00:45:00 +0000 (19:45 -0500)]
Bugfix: reset position on back to back lists

If two lists are back to back such that one does not have content, then make sure that the position resets to the start.
If this does not happen, then the next object will be skipped.

12 years agoUpdate: remove used vs size parameter checking
Kevin Day [Wed, 6 Jun 2012 23:11:55 +0000 (18:11 -0500)]
Update: remove used vs size parameter checking

Remove this so that non-dynamic strings can be placed in a dynamic string data type.
In such cases, the dynamic string has a used but not a size.
This means allocations should not be performed on the string.

12 years agoCleanup: Move private functions into its own source and header files
Kevin Day [Tue, 3 Apr 2012 23:16:40 +0000 (18:16 -0500)]
Cleanup: Move private functions into its own source and header files

It has become painfully apparent that much of the firewall main function needs to be broken down into smaller functions for managability and readability purposes.
The first step in doing such is to create a privte header and source files and move all internal functions there.
Everything in the private-* files are intended to never be exposed in the library.
Its only purpose is to make programming large projects more managable and readable.
As such, none of the functions should ever be considered part of the libraries/programs api.

12 years agoBugfix: use proper if then logic in firewall
Kevin Day [Tue, 3 Apr 2012 03:03:17 +0000 (22:03 -0500)]
Bugfix: use proper if then logic in firewall

Some of the if then else statements where not properly nested.
As a result, valid list objects got skipped.

12 years agoCleanup: remove stale TODO comment in firewall
Kevin Day [Tue, 3 Apr 2012 03:00:35 +0000 (22:00 -0500)]
Cleanup: remove stale TODO comment in firewall

The TODO is already done.

12 years agoBugfix: remove invalid counter code from firewall
Kevin Day [Tue, 3 Apr 2012 02:58:17 +0000 (21:58 -0500)]
Bugfix: remove invalid counter code from firewall

The counter2 was being used when it should not have been.

12 years agoUpdate: add support for custom user chains
Kevin Day [Sun, 1 Apr 2012 20:54:28 +0000 (15:54 -0500)]
Update: add support for custom user chains

Users should now be able to add their own custom chains.
Chains can be created by creating a new fss object that is not one of the following: first, last, stop, lock, or main.

12 years agoBugfix: fix problems with #defines
Kevin Day [Sun, 1 Apr 2012 16:24:46 +0000 (11:24 -0500)]
Bugfix: fix problems with #defines

Remove an unusued/redundant define.
Use correct size length for some string length defines.

12 years agoUpdate: redesign parameters for fss write functions to be more consistent with fss...
Kevin Day [Sat, 31 Mar 2012 23:38:04 +0000 (18:38 -0500)]
Update: redesign parameters for fss write functions  to be more consistent with fss read functions

The fss read functions all take -o or --object to signify that an object is being processed.
Do the same with the write functions.

12 years agoBugfix: set stop point to before a valid close quote, not after
Kevin Day [Sat, 31 Mar 2012 23:14:54 +0000 (18:14 -0500)]
Bugfix: set stop point to before a valid close quote, not after

The following reproduces the error:
- fss_basic_write -t object -s 'Hell o\' | fss_basic_read -o
Should produce the original string, but instead included the double quote used to signify object close.

12 years agoUpdate: rework delimit management to ensure delimits are only applied when valid.
Kevin Day [Sat, 31 Mar 2012 23:04:56 +0000 (18:04 -0500)]
Update: rework delimit management to ensure delimits are only applied when valid.

This unfortunately increases the complexity slightly as deallocation must occur before functions exist.
On the other hand doing so avoids overly complicated loops that would probably make the code less readable.

12 years agoBugfix: be sure to delimit trailing \ if it is an the end of a quoted content
Kevin Day [Sat, 31 Mar 2012 20:19:34 +0000 (15:19 -0500)]
Bugfix: be sure to delimit trailing \ if it is an the end of a quoted content

What happens is that if the content is (ignore single quotes): 'hell o\'.
The fss extended content conversion should be (include double quotes): "hell o\\".
The code must realize that the last \ is a would end up before a quote, or one would get: "hell o\".
That content string would then be classified as an unterminated group.

12 years agoUpdate: add level 3 fss * write projects
Kevin Day [Sat, 31 Mar 2012 19:51:55 +0000 (14:51 -0500)]
Update: add level 3 fss * write projects

12 years agoBugfix: Do not de-allocate the additional array
Kevin Day [Sat, 31 Mar 2012 18:54:00 +0000 (13:54 -0500)]
Bugfix: Do not de-allocate the additional array

Do not de-allocate this array when some allocation error happens.
The data is defined outside of this function, so leave it to the caller to handle deallocation.
This allows for giving the caller more choices when trying to decided what to do on allocation problem.
For example, some program may want to try to continue anyway even if there is an allocation problem.
It will be tricky, but in such a case one would just have to make do with what is already allocated.

12 years agoUpdate: add support for repeated parameters
Kevin Day [Sat, 31 Mar 2012 16:45:35 +0000 (11:45 -0500)]
Update: add support for repeated parameters

Thus, something like my_function -s 0 -s 1 would be able to process both -s 0 and -s 1.
Previously, only the last -s option would have been processed.

12 years agoBugfix: checking for == on fwrite size results is not an error
Kevin Day [Sat, 31 Mar 2012 02:34:23 +0000 (21:34 -0500)]
Bugfix: checking for == on fwrite size results is not an error

The code was checking the total number of bytes written and the total number expected to be written.
If both numbers are the same, then this cannot be an error.

12 years agoUpdate: add write append macro
Kevin Day [Sat, 31 Mar 2012 02:34:04 +0000 (21:34 -0500)]
Update: add write append macro

This was missing.

12 years agoUpdate: add file write support
Kevin Day [Sat, 31 Mar 2012 02:20:48 +0000 (21:20 -0500)]
Update: add file write support

The write functions are little more than wrappers to fwrite().

12 years agoBugfix: fix positioning output of help system
Kevin Day [Fri, 30 Mar 2012 23:19:25 +0000 (18:19 -0500)]
Bugfix: fix positioning output of help system

12 years agoUpdate: add fll fss object and content write support
Kevin Day [Fri, 30 Mar 2012 16:24:20 +0000 (11:24 -0500)]
Update: add fll fss object and content write support

This adds the functions that allow for writing fss objects and contents.

12 years agoBugfix: test for eol during object write
Kevin Day [Fri, 30 Mar 2012 15:40:25 +0000 (10:40 -0500)]
Bugfix: test for eol during object write

If this is not done, then close quotes could end up being placed after a newline character.

12 years agoUpdate: add additional error testing macro groups
Kevin Day [Fri, 30 Mar 2012 06:08:40 +0000 (01:08 -0500)]
Update: add additional error testing macro groups

This adds additional error testing macro groups that are common.

12 years agoUpdate: implement fl basic list object and content write support
Kevin Day [Fri, 30 Mar 2012 05:38:41 +0000 (00:38 -0500)]
Update: implement fl basic list object and content write support

This adds the fss basic list object and content write functions.

12 years agoCleanup: only define location variable when needed
Kevin Day [Fri, 30 Mar 2012 02:23:50 +0000 (21:23 -0500)]
Cleanup: only define location variable when needed

Instead of defining it outside the loop, define it inside the loop and then only in the areas where it is needed.

12 years agoUpdate: rewrite basic list object and content read functions
Kevin Day [Fri, 30 Mar 2012 00:47:03 +0000 (19:47 -0500)]
Update: rewrite basic list object and content read functions

Follow the new approach.
Also, it occured to me that there is no reason to support quoted object names for a basic list.

The reasoning behind this is that the basic list object always terminates on a newline and there cannot be any content on that newline.
If there is no content, then there is no reason to protect the object by wrapping it in quotes as done in basic an extended.
Quote support has been removed and as a result the implementation of the object and content reads are much simpler.

12 years agoUpdate: return stop points even when no object/content is found
Kevin Day [Mon, 26 Mar 2012 00:20:48 +0000 (19:20 -0500)]
Update: return stop points even when no object/content is found

This makes a things a little more consistent.
If an object was not found, then the code would seek to the end of line or a stop point.
Prior to this patch, after doing the sleep, the appropriate object/content not found is returned when a stop point was reached.
Now, the appropriate no_data or none stop point return value is used in such a case.

12 years agoBugfix: fix return state codes for stop point
Kevin Day [Sun, 25 Mar 2012 20:44:44 +0000 (15:44 -0500)]
Bugfix: fix return state codes for stop point

For objects, if an object was not found and a stop point was reached, return approproate f_no_data codes.
For objects and content, if a stop state was reached during a quoted group, return appropriate f_unterminated_group codes.
For objects and content, if a stop state was reached during a valid pass, return appropriate f_none codes.

12 years agoBugfix: don't write comment lines (wrap the # in quotes)
Kevin Day [Sat, 24 Mar 2012 22:20:03 +0000 (17:20 -0500)]
Bugfix: don't write comment lines (wrap the # in quotes)

The object write functions should not write comments.
The comments are not valid objects, so if passed a leading #, then be sure to wrap it in quotes.

12 years agoUpdate: rewrite fss extended content read function
Kevin Day [Sat, 24 Mar 2012 21:46:56 +0000 (16:46 -0500)]
Update: rewrite fss extended content read function

This was rewritten to follow the same style that the object read uses.
Because content can have multiple "groups", an outer loop had to be added.
For some reason I feel like I am forgetting something or doing something wrong here, but I cannot tell what that is and so I note my concern here.

12 years agoUpdate: use f_array_length for an array of locations instead of f_string_length
Kevin Day [Fri, 23 Mar 2012 00:39:16 +0000 (19:39 -0500)]
Update: use f_array_length for an array of locations instead of f_string_length

12 years agoCleanup: Use the parameter names for the fl fss write functions
Kevin Day [Thu, 22 Mar 2012 01:46:36 +0000 (20:46 -0500)]
Cleanup: Use the parameter names for the fl fss write functions

After review, I think this naming scheme makes more sense.

12 years agoBugfix: initial slash + quote only needs one additional slash on match at start when...
Kevin Day [Thu, 22 Mar 2012 00:43:44 +0000 (19:43 -0500)]
Bugfix: initial slash + quote only needs one additional slash on match at start when writing

If the object or content group begins with any number of slashes followed by a single or double quite, only a single slash is needed to delimit the quote.
This is done because no valid object or content group can start with a slash and expected to be treated as if it were quoted.
That means the quote is meaningless.
The initial slash delimit is necessary in case the object name starts with a single or double quote but it should not be treated as such.
This for an object name of " would be written as \".

12 years agoUpdate: add fl fss extended content write support
Kevin Day [Wed, 21 Mar 2012 03:40:02 +0000 (22:40 -0500)]
Update: add fl fss extended content write support

12 years agoCleanup: rename delimit_slash_count to slash_count
Kevin Day [Wed, 21 Mar 2012 03:23:03 +0000 (22:23 -0500)]
Cleanup: rename delimit_slash_count to slash_count

I see no reason to prepend delimit_ to the slash count.
Shrinking it makes things a little easier to read.

12 years agoBugfix: delimit whitespaces on write
Kevin Day [Wed, 21 Mar 2012 03:01:23 +0000 (22:01 -0500)]
Bugfix: delimit whitespaces on write

I believe I had a mental lapse on this one.
The previous code was acting like a read operation in certain cases when dealing with whitespace.
When doing a write if a white space exists treat don't ignore it; instead, wrap it in quotes so that object names can contain spaces.
For example " " is a valid object name which is a object whose name is a single space.

12 years agoCleanup: update error code header documentation
Kevin Day [Wed, 21 Mar 2012 02:47:50 +0000 (21:47 -0500)]
Cleanup: update error code header documentation

12 years agoBugfix: don't forget to return f_none_on_eos and f_none_on_stop where applicable
Kevin Day [Wed, 21 Mar 2012 02:23:03 +0000 (21:23 -0500)]
Bugfix: don't forget to return f_none_on_eos and f_none_on_stop where applicable