]> Kevux Git Server - fll/log
fll
5 years agoBugfix: level-specifc compile settings should compile against level-specific
Kevin Day [Sun, 28 Jul 2019 21:26:20 +0000 (16:26 -0500)]
Bugfix: level-specifc compile settings should compile against level-specific

5 years agoSecurity: set default policy to DROP after deleting chains
Kevin Day [Sat, 27 Jul 2019 21:31:09 +0000 (16:31 -0500)]
Security: set default policy to DROP after deleting chains

Performing numerous syscalls can by slow.
During this time, if the default behavior is open, then unwanted packets may make it through.
By dropping by default, these packets will not go through.

5 years agoCleanup: update to newer style practices and fix existing style problems found
Kevin Day [Sat, 27 Jul 2019 04:10:01 +0000 (23:10 -0500)]
Cleanup: update to newer style practices and fix existing style problems found

Use alphabetic whenever possible (structure context overrides this often).
Perform the initial prepatory work for new comment practices.

else end else if blocks are now to be on separate lines instead of inline with '}'.

5 years agoBugfix: type sizes autodetection is not reporting proper sizes
Kevin Day [Sat, 27 Jul 2019 00:28:45 +0000 (19:28 -0500)]
Bugfix: type sizes autodetection is not reporting proper sizes

Expected sizes are not being returned.
Rewrite the logic to get casting to the highest value to work as desired.

5 years agoCleanup: remove empty source file
Kevin Day [Fri, 26 Jul 2019 03:16:25 +0000 (22:16 -0500)]
Cleanup: remove empty source file

5 years agoCleanup: Use new comment structure at the tops of files
Kevin Day [Fri, 26 Jul 2019 03:00:43 +0000 (22:00 -0500)]
Cleanup: Use new comment structure at the tops of files

Just put the comments in the header files.
Simplify the comment stucture.
The git repository provides the authors/credits, no need to explicitly do so in the files anymore.
Do not provide the micro version, instead provide the major and minor versions in the files (which effectively represent the API version).

5 years agoRevert: remove custom type defines, including use of f_autochar
Kevin Day [Fri, 26 Jul 2019 02:31:55 +0000 (21:31 -0500)]
Revert: remove custom type defines, including use of f_autochar

The intent of these custom types is to allow for easily replacing what the type represents.
I have decided that this extent of doing such is overkill.
Revert the custom types to instead rely on the C/C++ defined types, where appropriate.

After having gained more experience with utf-8 an other unicode standards, I have come to conclude that the wchar type should not be used.
This project will support the char type instead of the wchar type.
All uses have been replaced with char.

5 years agoBugfix: bash/linux does not support setting high bits on return codes
Kevin Day [Fri, 26 Jul 2019 01:49:29 +0000 (20:49 -0500)]
Bugfix: bash/linux does not support setting high bits on return codes

These bits are generally reserved for process-specific behavior.
Explicitly return 0 for success and 1 for failure.
The firewall program already does this.

The return codes from the main functions of each project will continue to utilize all of the bits as designed.
This will allow for projects that link to the library to get the actual return codes while simultaneously being compatible with Linux and Bash.

Later versions may provide alternative ways to get the error code from within the shell.
For example, if a specific return code environment variable is set, then the program could populate that environment variable on exit (clearing it on start).

5 years agoUpdate: add basic featureless settings specifications documentation
Kevin Day [Thu, 25 Jul 2019 04:51:37 +0000 (23:51 -0500)]
Update: add basic featureless settings specifications documentation

This was originally defined online, but I had lost the data at some point.
The internet archive didn't cache the page and the data lost happened during the time I was changing the website.

The specifications were simple enough to be rewritten, but I have done so in haste.
Some of the specifications will be documented at a later date.

I do not remember what advanced reverse mapping was intended to be, so I replaced it with the custom json-like specification.
The goal of the json-like specification is to write it such that it is still valid json (minus any comments).
It is currently added to preserve the idea but there are no immediate plans to implement this specification.

5 years agoUpdate: replace advanced reverse mapping with simple json
Kevin Day [Thu, 25 Jul 2019 04:51:29 +0000 (23:51 -0500)]
Update: replace advanced reverse mapping with simple json

5 years agoCleanup: fix comments and remove commented out memset
Kevin Day [Thu, 25 Jul 2019 04:43:28 +0000 (23:43 -0500)]
Cleanup: fix comments and remove commented out memset

According to the standards that I have read, calloc() guarantees zero'd memory, so memset is not needed.
It so happens that the memset was commented out already, so just remove it.

There are some memset related comments that incorrectly use the word 'bool' when the word 'char' should be used.

5 years agoUpdate: add the firewall settings files to the 'build_sources_settings' part of the...
Kevin Day [Tue, 23 Jul 2019 04:05:18 +0000 (23:05 -0500)]
Update: add the firewall settings files to the 'build_sources_settings' part of the build settings file

5 years agoUpdate: Add additional options, fix minor problems, and other miscellaneous fixes...
Kevin Day [Tue, 23 Jul 2019 03:58:01 +0000 (22:58 -0500)]
Update: Add additional options, fix minor problems, and other  miscellaneous fixes in regards to generate.sh and package.sh scripts

Add functionality provided in install.sh, such as configure based system compatible options: --enable-statuc, --disable-static, --enable-shared, and --disable-shared.

Fix some typos (such as failire which should instead be failure).
Tweak highlight colors used.

Use a separate "operation_failure" variable instead of recycling "operation" for parameter operation problems.

Add -S/--path_s parameter option for specifying a custom settings path.

If paths have a leading slash (/), remove duplicate slashes (such as "///bin/" -> "/bin/").

Make sure the new install.sh script gets added by the package.sh script.

The variable "sources_settings" is using the wrong source path (which was "path_c").
Instead, use the newly added "path_s".

5 years agoFeature: add install.sh helper script
Kevin Day [Tue, 23 Jul 2019 03:55:51 +0000 (22:55 -0500)]
Feature: add install.sh helper script

Provide a very basic install helper script for systems (or users) that do not have or do not want to use their package system to install the compiled files.

This is only intended to help someone install.
It is still recommended that a distribution or packager should povide their own tools to perform the installation.

5 years agoCleanup: use 'FILTER' instead of 'PORTS'
Kevin Day [Tue, 23 Jul 2019 01:49:33 +0000 (20:49 -0500)]
Cleanup: use 'FILTER' instead of 'PORTS'

5 years agoCleanup: make sure 'iptables' appears in error message 'Failed to perform requested...
Kevin Day [Tue, 23 Jul 2019 01:44:26 +0000 (20:44 -0500)]
Cleanup: make sure 'iptables' appears in error message 'Failed to perform requested iptables operation'

5 years agoUpdate: f_null no longer exists
Kevin Day [Sun, 21 Jul 2019 21:32:57 +0000 (16:32 -0500)]
Update: f_null no longer exists

5 years agoUpdate: fix firewall utility and utilize recently added functionality
Kevin Day [Sun, 21 Jul 2019 21:06:13 +0000 (16:06 -0500)]
Update: fix firewall utility and utilize recently added functionality

There were a few logic flaws in regards to the processing and memory management.
Switch to new logic where f_new_* and f_clear_* is utilized.
Update accodingly to the fll_execute changes.

Update the default configuration files.

Update the debugging code to work as expected.

Replace string cuntions with memory functions, such as replacing strncat with memcpy.

Add some new helper macros.

Delete all custom chains when rewriting rules to prevent problems.
Iptables unfortunately does not provide a way to check and see if a chain already exists.

5 years agoUpdate: disable BUG_strnlen by default
Kevin Day [Sun, 21 Jul 2019 21:04:35 +0000 (16:04 -0500)]
Update: disable BUG_strnlen by default

This bug might actually be a bug related to uClibc.
Just disable it by default for now.
Future versions may remove this workaound entirely.

5 years agoCleanup: add space
Kevin Day [Sun, 21 Jul 2019 21:04:21 +0000 (16:04 -0500)]
Cleanup: add space

5 years agoUpdate: use memcpy instead of strncat
Kevin Day [Sun, 21 Jul 2019 21:03:28 +0000 (16:03 -0500)]
Update: use memcpy instead of strncat

5 years agoUpdate: add an f_standard_debug output similar to f_standard_warning
Kevin Day [Sun, 21 Jul 2019 21:03:05 +0000 (16:03 -0500)]
Update: add an f_standard_debug output similar to f_standard_warning

5 years agoUpdate: rewrite fll_execute, ensuring f_eol are properly added (and auto-add progam...
Kevin Day [Sun, 21 Jul 2019 20:59:30 +0000 (15:59 -0500)]
Update: rewrite fll_execute, ensuring f_eol are properly added (and auto-add progam name where possible)

Previously, the f_eol was added but it assumed that there was actual room at the end of the allocated buffer to do so.
This now explicilty allocates a new buffer with room for the terminating f_eol.

The progam name is already provided, so do not require it to be added to the arguments (auto-add it).

5 years agoUpdate: make sure f_new_* calls exist and add f_clear_* calls
Kevin Day [Sun, 21 Jul 2019 20:58:23 +0000 (15:58 -0500)]
Update: make sure f_new_* calls exist and add f_clear_* calls

5 years agoBugfix: string lengths now use signed integers
Kevin Day [Fri, 19 Jul 2019 04:52:03 +0000 (23:52 -0500)]
Bugfix: string lengths now use signed integers

5 years agoUpdate: relocate the shared and static build paths to before the library arguments
Kevin Day [Fri, 19 Jul 2019 04:08:30 +0000 (23:08 -0500)]
Update: relocate the shared and static build paths to before the library arguments

5 years agoBugfix: firewall show command operating as lock
Kevin Day [Fri, 19 Jul 2019 03:38:41 +0000 (22:38 -0500)]
Bugfix: firewall show command operating as lock

The debug parameters is conditionally enabled/disabled but the enum is not.
Make the enum conditionally enable/disable the debug option to prevent the wrong id from being used when debug is disabled.

Fix the alignment of the debug message.

Conditionally enable/disable displaying the debug in the help.

5 years agoBugfix: add missing closing parenthesis
Kevin Day [Fri, 19 Jul 2019 03:27:50 +0000 (22:27 -0500)]
Bugfix: add missing closing parenthesis

5 years agoBugfix: project compiled libraries are not being found
Kevin Day [Fri, 19 Jul 2019 03:12:16 +0000 (22:12 -0500)]
Bugfix: project compiled libraries are not being found

This is the result of an oversight when I converted the libraries directory to have static and shared into subdirectories.
The explicit link path was not updated accordingly.

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 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.

8 years agoProgress: add the current (draft) of the custom init program
Kevin Day [Sun, 17 Jan 2016 20:29:41 +0000 (14:29 -0600)]
Progress: add the current (draft) of the custom init program

This is effectively a draft of my ideas and is entirely experimental and incomplete.
I am adding it now because of numerous hard-drive failures and data loss of late.

8 years agoUpdate: add new rules to firewall (while fixing accident in previous commit)
Kevin Day [Sun, 17 Jan 2016 20:20:56 +0000 (14:20 -0600)]
Update: add new rules to firewall (while fixing accident in previous commit)

The earlier commit that applied stale changes apparently had deleted all the rules in the firewall file.
This data has been added back in addition to the new rules and structure.

8 years agoProgress: add socket libraries
Kevin Day [Sun, 17 Jan 2016 20:20:05 +0000 (14:20 -0600)]
Progress: add socket libraries

There is likely more work to do with these libraries.
I will follow this up after reviewing with any changes, if needed.

8 years agoProgress: miscellaneous changes
Kevin Day [Sun, 17 Jan 2016 20:19:36 +0000 (14:19 -0600)]
Progress: miscellaneous changes

I was working on stuff a while back and was taken away from the project for quite a while.
These are some uncommitted changes that I would rather commit immediately and then move forward.

There are some other changes I will follow up in separate commits, such as the socket work and the init work.

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.