]> Kevux Git Server - fll/log
fll
5 years agoUpdate: documentation for f_pipe and add additional pipe functions
Kevin Day [Thu, 12 Sep 2019 03:38:30 +0000 (22:38 -0500)]
Update: documentation for f_pipe and add additional pipe functions

Provide f_pipe_warning_exists(), f_pipe_error_exists(), and f_pipe_debug_exists().
In theory, the program should be able to grab data piped from any of these sources, if both the source exists and a way to pipe the source exists.

5 years agoCleanup: documentation for f_path
Kevin Day [Thu, 12 Sep 2019 03:37:45 +0000 (22:37 -0500)]
Cleanup: documentation for f_path

5 years agoCleanup: documentation for f_memory
Kevin Day [Thu, 12 Sep 2019 03:36:57 +0000 (22:36 -0500)]
Cleanup: documentation for f_memory

5 years agoUpdate: documentation and increase f_fss_max_header_length to accomodate UTF-8 BOM
Kevin Day [Thu, 12 Sep 2019 03:35:46 +0000 (22:35 -0500)]
Update: documentation and increase f_fss_max_header_length to accomodate UTF-8 BOM

5 years agoUpdate: start enum's at 1 where possible
Kevin Day [Thu, 12 Sep 2019 02:03:08 +0000 (21:03 -0500)]
Update: start enum's at 1 where possible

By always setting enums as 1, the 0 value can be reserved as not-set.
There are still a few situations where enums must not start at 1.
Some are:
1) Type defenitions, so as in f_types where the status codes need to start at 0 for f_false.
2) Any enums that map 1to1 to an array, such as with parameter options.

5 years agoUpdate: document f_file functions and add missing functions
Kevin Day [Wed, 11 Sep 2019 03:57:09 +0000 (22:57 -0500)]
Update: document f_file functions and add missing functions

After reviewing and writing some documentation, it occurred to me that a few more functions should be written.

5 years agoUpdate: f_convesion, add comments and fix problems
Kevin Day [Tue, 10 Sep 2019 02:31:18 +0000 (21:31 -0500)]
Update: f_convesion, add comments and fix problems

Add comments (including correcting some existing ones).

Rename another case where digit should now be decimal.

Make sure the *decimal parameter only gets updated on success.
Be consistent about returning f_no_data.

5 years agoUpdate: Add 3 presentation modes to byte_dump: normal, simple, and classic
Kevin Day [Tue, 10 Sep 2019 00:44:12 +0000 (19:44 -0500)]
Update: Add 3 presentation modes to byte_dump: normal, simple, and classic

Normal presentation will replace ASCII control or whitespace character with the UTF-8 characters that represent this with a picture character.
Simple presentation will use a single space to represent any given ASCII control or whitespace character.
Classic presentation will do what the "hexdump" tool traditionally does and use a single period to represent an ASCII control or whitespace character.

5 years agoUpdate: add missing help options and fix miscellaneous minor issues
Kevin Day [Tue, 10 Sep 2019 00:24:51 +0000 (19:24 -0500)]
Update: add missing help options and fix miscellaneous minor issues

5 years agoBugfix: put '} // extern C' into correct location
Kevin Day [Tue, 10 Sep 2019 00:17:20 +0000 (19:17 -0500)]
Bugfix: put '} // extern C' into correct location

5 years agoUpdate: remove common type wrappers and use typedef instead of '#define'
Kevin Day [Mon, 9 Sep 2019 04:19:10 +0000 (23:19 -0500)]
Update: remove common type wrappers and use typedef instead of '#define'

I intend to begin transitioning from the core types like 'int', 'char', etc...
As part of this, I need to remove a number of the type #define wrappers.
This is also done, in part, because I learned that there are some equivalents to f_min_s_int.

Using explicit types is safer and better designed than something like 'char'.
The goal will be to replace 'char' with uint8_t (or int8_t as needed).

Furthermore, specifying int32_t and int64_t (and similar) should improve the code quality.
The use of types like "wchar", is dangerous because some systems use different sizes.
Instead, for something like "wchar", an uint32_t, might be used.
(although this project is to be designed around UTF-8 so the use of wchar is wrong anyway but it does make good example.)

5 years agoUpdate: add a space after "combining" characters and catch a few more invalid UTF...
Kevin Day [Mon, 9 Sep 2019 03:57:47 +0000 (22:57 -0500)]
Update: add a space after "combining" characters and catch a few more invalid UTF-8 sequences

Previously, I just printed a space instead of printing the "combining" characters.
It occurred to me that I could print a space following a known "combining" character to cause it to combine into a space.
This makes things easier to view and still displays the combining character instead of hiding it behind a blank space.
The downside is that this might cause problems if someone tried to copy and paste these combined characters.

Catch a few more invalid UTF-8 sequences that I came across while making these changes.
Fix an existing invalid UTF-8 sequence detection that seems to have been incomplete and incorrect.

5 years agoBugfix: last short parameter argument is not being processed correctly
Kevin Day [Mon, 9 Sep 2019 02:21:26 +0000 (21:21 -0500)]
Bugfix: last short parameter argument is not being processed correctly

For short parameters, only compare against a single character, not two.

5 years agoUpdate: use unsigned long for argc
Kevin Day [Mon, 9 Sep 2019 02:15:07 +0000 (21:15 -0500)]
Update: use unsigned long for argc

5 years agoUpdate: Simplifiy digit/decimal and hexidecimal functions
Kevin Day [Mon, 9 Sep 2019 00:46:41 +0000 (19:46 -0500)]
Update: Simplifiy digit/decimal and hexidecimal functions

Use simpler logic for determining if character is a decimal or a hexidecimal.
Rename digit to decimal.

5 years agoCleanup: move private functions into separate files
Kevin Day [Sun, 8 Sep 2019 23:44:14 +0000 (18:44 -0500)]
Cleanup: move private functions into separate files

5 years agoRefactor: ename bit_dump to byte_dump
Kevin Day [Sun, 8 Sep 2019 23:25:31 +0000 (18:25 -0500)]
Refactor: ename bit_dump to byte_dump

This program is operating on a per byte basis.
The name 'byte_dump' makes more sense than 'bit_dump'.

5 years agoFeature: implement --decimal display in bit_dump
Kevin Day [Sun, 8 Sep 2019 23:19:39 +0000 (18:19 -0500)]
Feature: implement --decimal display in bit_dump

5 years agoCleanup: Utilize f_console_parameter_ids to simplify parameters for fll_program_proce...
Kevin Day [Sun, 8 Sep 2019 22:44:10 +0000 (17:44 -0500)]
Cleanup: Utilize f_console_parameter_ids to simplify parameters for fll_program_process_parameters()

Althought not ideal, the ids must be in an explicit order of no_color, light, and dark.
This has been added to the functional documentation.

5 years agoCleanup: provide helper structure f_console_parameters
Kevin Day [Sun, 8 Sep 2019 22:25:22 +0000 (17:25 -0500)]
Cleanup: provide helper structure f_console_parameters

This is provided to help shorten the number of parameters passed to functions.

5 years agoCleanup: make main() programs design more consistent across level 3 projects
Kevin Day [Sun, 8 Sep 2019 21:58:44 +0000 (16:58 -0500)]
Cleanup: make main() programs design more consistent across level 3 projects

5 years agoCleanup: replace argc and argv usage with a single structure of argc and argv (f_cons...
Kevin Day [Sun, 8 Sep 2019 21:46:27 +0000 (16:46 -0500)]
Cleanup: replace argc and argv usage with a single structure of argc and argv (f_console_arguments)

Simplify the parameters being passed to functions by providing a helper structure called f_console_arguments to handle the argc and argv standard arguments.
Due to being standard arguments, I am leaving the names as 'argc' and 'argv' despite it being a violation of the naming policy of this project.
('argc' should be something like 'used', and 'argv' should be 'arguments'.)

The firewall had a naming conflict, so rename the usage of "arguments" in firewall into "parameters".

5 years agoRegression: display "+" and "++" and not "-" and "--" for special parameter options
Kevin Day [Sun, 8 Sep 2019 20:39:29 +0000 (15:39 -0500)]
Regression: display "+" and "++" and not "-" and "--" for special parameter options

When I wrote fll_program_print_help_option() I completely forgot to provide a way to set eithe "-" or "+" and "--" or "++".
This resulted in the "--help" display of the options to incorrectly print using "-" and "--".

Add additional function parameters to allow setting the symbols when calling fll_program_print_help_option().

5 years agoUpdate: Simplify console priority checking by providing fl_console_parameter_prioriti...
Kevin Day [Sun, 8 Sep 2019 20:22:41 +0000 (15:22 -0500)]
Update: Simplify console priority checking by providing fl_console_parameter_prioritize() and fix name of fl_console functions

Simplify the code for determining which console parameter of some set of console parameters has priority.
Abstract this functionality into its own function so that other projects can leverage this.

The functions in fl_console should be prefixed with fl_console.

5 years agoFeature: bit_dump level 3 program
Kevin Day [Sun, 8 Sep 2019 04:25:50 +0000 (23:25 -0500)]
Feature: bit_dump level 3 program

Provide a program to help analyze files, supporting UTF-8.

This should work similar to "hexdump" but is not intended to match it feature for feature.

Provides three byte printing modes (with plans for a fourth):
1) hexidecimal (default)
2) octal
3) binary
4) digit (planned)

Provides first and last byte selection support.

A width option is available for specifying the number of bytes to be printed on screen such that each byte is essentially a data column.
With a width of 16, then there would be 16 data columns, each displaying one byte.

Although similar to "hexdump", the first column in bit_dump represents the specific row number.

A text option is provided to display the bytes as a character (similar to how "hexdump" uses "-C").

A placeholder option is available for showing a placeholder where placeholder spaces would otherwise be printed.
A placeholder is printed to ensure alignment.
For example, a printable UTF-8 character that is 3-bytes wide would only visibly take up 1 character of space.
To keep the alignment with text to bytes accurate and consistent, two additional placeholder spaces are appended following the UTF-8 characte.

If the bytes terminate before an entire column set of bytes are printed, then spaces or placeholders are printed until the full column may be printed when in "text" mode.

This will detect and report invalid UTF-8 codes.

Handling printing the characters (via the text option) can be tricky.
There is more work needed to catch all cases.
Some cases cannot be handled if the character is wider than the expected width (causing alignment printing issues).

I am still a bit inexperienced with the intricacies of UTF-8 and I expect there to be issues in this first pass.

5 years agoUpdate: restructure f_file, add f_file_exists(), add f_file_exists_at(), and other...
Kevin Day [Sat, 7 Sep 2019 21:29:09 +0000 (16:29 -0500)]
Update: restructure f_file, add f_file_exists(), add f_file_exists_at(), and other f_file related changes

Use "address" instead of "file" in f_file to help make things less confusing.
Shorten use of "file_information" with "file".

Implement f_file_exists().
Implement f_file_exists_at().

Try to avoid returning f_invalid_parameter to represent invalid parameters for standard C/POSIX functions.
Implement new exceptions, like f_invalid_name and f_invalid_desciptor, to accommodate this.

Use f_string_eol instead of "\n".

5 years agoUpdate: console code and some macros
Kevin Day [Tue, 3 Sep 2019 04:21:08 +0000 (23:21 -0500)]
Update: console code and some macros

Add explicit dark mode console option.
Add support for order of operations priority on parameters  ("+n +l +d" would result in colors for dark background because +d overrides both +n and +l due to being the right-most parameter).
Rewrite level_3 programs to utilize the new fll_program_process_parameters() helper function.
Fix some screwed up macro definitions and uses.

5 years agoUpdate: rename fl_program as fll_program, rename f_colors and fl_colors, move functio...
Kevin Day [Mon, 2 Sep 2019 05:50:51 +0000 (00:50 -0500)]
Update: rename fl_program as fll_program, rename f_colors and fl_colors, move functions from fll_colors into fl_colors, and provide addition fll_programs functions

Cleanup the parameter processing code.
In the process:
- The fl_program was moved into fll_program.
- fll_colors_load_context() is at too high of a level, move it to fl_colors_load_context() (and deleting the now empty fll_colors project).
- Update programs to use the update fll_program helpers.
- The f_colors and fl_colors should now be f_color and fl_color.

Regenerate the package dependencies.

5 years agoBugfix: reduce total parameters for status_code and fss_status_code
Kevin Day [Mon, 2 Sep 2019 02:03:04 +0000 (21:03 -0500)]
Bugfix: reduce total parameters for status_code and fss_status_code

When the "context" parameter was removed, I forgot to reduce the total parameter count.

5 years agoUpdate: enable debug by default via "-g" CFLAG
Kevin Day [Mon, 2 Sep 2019 01:42:23 +0000 (20:42 -0500)]
Update: enable debug by default via "-g" CFLAG

This can always be removed manually or the binaries/libraries can be stipped later.

5 years agoFeature: add 'dependency' generation to package.sh and update all dependencies
Kevin Day [Mon, 2 Sep 2019 00:21:40 +0000 (19:21 -0500)]
Feature: add 'dependency' generation to package.sh and update all dependencies

This will help ensure that dependencies will be accurate and less error prone (so long as the script is run after making changes to any projects).

Dependencies are processed from the projects individual data/build/dependencies file.
The order of the dependencies does matter and is processed from top to bottom.
The 4 core dependencies must be first if they are depended on (and in this order: f_type, f_status, f_memory, and f_string).

The dependency generation for individual projects will generate the libraries to link against if a given project has any library source files.
Linking is done in highest level to lowest level to help ensure no linking errors happen.

The dependency generation for level projects and monolithic project are done based on the library and header sources.
All files specified in the build_sources_library and build_sources_headers are generated.

This script has been run and the dependency updates generated by this script are included in this commit.

5 years agoCleanup: f_types dependency is now called f_type and dependency f_errors is now calle...
Kevin Day [Sun, 1 Sep 2019 22:20:59 +0000 (17:20 -0500)]
Cleanup: f_types dependency is now called f_type and dependency f_errors is now called f_status

5 years agoCleanup: make sure memory functions are prefixed with f_memory
Kevin Day [Sun, 1 Sep 2019 20:20:09 +0000 (15:20 -0500)]
Cleanup: make sure memory functions are prefixed with f_memory

5 years agoCleanup: rename f_types to f_type
Kevin Day [Sun, 1 Sep 2019 20:12:11 +0000 (15:12 -0500)]
Cleanup: rename f_types to f_type

5 years agoCleanup: rename f_paths to f_path
Kevin Day [Sun, 1 Sep 2019 19:54:15 +0000 (14:54 -0500)]
Cleanup: rename f_paths to f_path

5 years agoCleanup: rename f_strings to f_string and fl_strings to fl_string
Kevin Day [Sun, 1 Sep 2019 19:49:11 +0000 (14:49 -0500)]
Cleanup: rename f_strings to f_string and fl_strings to fl_string

Update functions and macros accordingly.

5 years agoCleanup: rename allocation macros to have f_macro_ in their name
Kevin Day [Sun, 1 Sep 2019 19:10:11 +0000 (14:10 -0500)]
Cleanup: rename allocation macros to have f_macro_ in their name

5 years agoUpdate: implement utf strings, ensure endianess, and add isgraph()/isspace() methods...
Kevin Day [Sun, 1 Sep 2019 07:13:01 +0000 (02:13 -0500)]
Update: implement utf strings, ensure endianess, and add isgraph()/isspace() methods to UTF-8 equivalents

Expand the UTF-8 character type (a 4-byte wide character represented as a big-endian 32-bit integer) into working like f_string and f_dynamic_string.
Provide all similar functionality.

I have decided that the isgraph(), isspace(), etc.. functions fo UTF-8 should also call the ASCII equivalents.
Update all relating code.

Use memcmp() and memcpy() for comparing UTF-8 characters class (4-byte integer) to the UTF-8 char strings (multiple 1-byte char).
When doing this, make sure to do so with the proper endianess.

Add missing f_utf_character_to_char() function.

Wrap some of the macros parameters in parenthesis for safety reasons.

Add f_utf_is_big_endian() and document its use.

Provide custom EOL, EOS, and placeholder defines for UTF characters (4-byte integers).

5 years agoUpdate: improve status code handling, remove unnecessary code, and update status...
Kevin Day [Sat, 31 Aug 2019 23:07:16 +0000 (18:07 -0500)]
Update: improve status code handling, remove unnecessary code, and update status programs

The fl_status_is_fine(), fl_status_is_warning(), and fl_status_is_error() functions are no longer needed or valid with the current design around using error and warning bits.

The status conversion code should be more aware of digits.

Get rid of the "context" parameter in the status programs.
Redesign logic in the status programs to work with changes and function correctly (and consistently).
The status programs will eventually need to perform more extensive tests on parameters when digits or non-digits are required.
The current design only provides a very basic test on the first character of a given parameter.

5 years agoBugfix: do not include private headers
Kevin Day [Sat, 31 Aug 2019 21:19:10 +0000 (16:19 -0500)]
Bugfix: do not include private headers

Manually including private headers from within public headers will result in compilation errors.
The private headers will still get included via the private source file.

5 years agoUpdate: provide f_utf_is() and f_utf_is_character() functions
Kevin Day [Sat, 31 Aug 2019 21:18:42 +0000 (16:18 -0500)]
Update: provide f_utf_is() and f_utf_is_character() functions

5 years agoUpdate: handle invalid UTF-8 fragments
Kevin Day [Sat, 31 Aug 2019 20:59:55 +0000 (15:59 -0500)]
Update: handle invalid UTF-8 fragments

A 1-width UTF-8 character (that is not a valid ASCII character) is used to designate part of a complete UTF-8 character block (aka: 1-width UTF-8 characters are fragments).
Because this fragment cannot exist in isolation, it must be handled as either an invalid or an incomplete UTF-8 fragment.

Provide new status codes for handling incomplete UTF-8 fragments.
Update appropriate functions to detect and handle these invalid or incomplete fragments.

5 years agoUpdate: redesign console processing code
Kevin Day [Fri, 30 Aug 2019 17:48:54 +0000 (12:48 -0500)]
Update: redesign console processing code

Simplify the console structure and reduce the size of codes and parameters.

The "extra" parameter seems a bit overkill, remove it and help keep this project more along the lines of the idea of "Featureless".

Rewrite and document fl_process_parameters().

Implementing functions were only functionally updated.
Additional changes are likely necessary for the logic, such as supporting multiple calls like "program -h +n +l", which by order of operation the final "+l" should override the "+n".

5 years agoSecurity: safely print f_dynamic_string
Kevin Day [Fri, 30 Aug 2019 01:48:25 +0000 (20:48 -0500)]
Security: safely print f_dynamic_string

The f_dynamic_string is not NULL terminated and should never be directly passed to a function that assumes strings are NULL terminated.

5 years agoCleanup: f_color, fl_color, and related
Kevin Day [Fri, 30 Aug 2019 01:10:01 +0000 (20:10 -0500)]
Cleanup: f_color, fl_color, and related

In particular, some of the color print functions are not following the naming convention.
The function fl_print_color() should instead be fl_color_print().

Make sure appropriate #define statements have macro in their name.

Add some @fixme comments because f_dynamic_string is designed with the intentions of not being NULL terminated.
Directly using it with standard functions like fprint is dangerous.

5 years agoCleanup: rename f_errors to f_status, fl_errors to fl_status, and fll_errors to fll_s...
Kevin Day [Thu, 29 Aug 2019 21:57:34 +0000 (16:57 -0500)]
Cleanup: rename f_errors to f_status, fl_errors to fl_status, and fll_errors to fll_status

Originally f_errors was meant only for error handling but it quickly turned into status code handling (which includes errors).
The naming system of f_errors is now confusing and misleading so change it to f_status.

This makes far more sense, for example:
- f_error_is_error vs f_status_is_error.
- f_error_set_error vs f_status_set_error

5 years agoCleanup: remove error test macros
Kevin Day [Thu, 29 Aug 2019 20:40:03 +0000 (15:40 -0500)]
Cleanup: remove error test macros

This is legacy behavior that is no longer needed.
Update any existing uses of these deleted macros.

5 years agoCleanup: rename return_code to status_code and fss_return_code to fss_status_code
Kevin Day [Thu, 29 Aug 2019 19:40:25 +0000 (14:40 -0500)]
Cleanup: rename return_code to status_code and fss_return_code to fss_status_code

The "return codes" were originally intended to be literal return codes.
When the error codes were converted to have error bits, warning bits, and signal bits, this no longer became the case.
Refactor return_code into status_code to be more accurate.

5 years agoUpdate: improve return code error conversion and support converting strings to numbers
Kevin Day [Thu, 29 Aug 2019 19:26:54 +0000 (14:26 -0500)]
Update: improve return code error conversion and support converting strings to numbers

5 years agoUpdate: readme file and add additional notes on the FLL dependency structure
Kevin Day [Thu, 29 Aug 2019 02:56:31 +0000 (21:56 -0500)]
Update: readme file and add additional notes on the FLL dependency structure

5 years agoCleanup: only use f_macro_ for defines that structurally mimic functions
Kevin Day [Thu, 29 Aug 2019 00:57:28 +0000 (19:57 -0500)]
Cleanup: only use f_macro_ for defines that structurally mimic functions

5 years agoCleanup: define fl_directory_name_max as 255 to match PATH_NAME
Kevin Day [Thu, 29 Aug 2019 00:53:24 +0000 (19:53 -0500)]
Cleanup: define fl_directory_name_max as 255 to match PATH_NAME

5 years agoUpdate: add UTF-8 support to fl_console
Kevin Day [Thu, 29 Aug 2019 00:48:28 +0000 (19:48 -0500)]
Update: add UTF-8 support to fl_console

Also remove unnecessary looping.

5 years agoUpdate: add more support for UTF-8 and improve effected functions
Kevin Day [Wed, 28 Aug 2019 04:59:00 +0000 (23:59 -0500)]
Update: add more support for UTF-8 and improve effected functions

Use a 32-bit unsigned integer instead of a structure of 4 characters.

Add -lf_utf to dependencies on updated level projects.

Be more thorough when implementing simple fl_seek_* functions.
Support both processing char as well as f_utf_character in string processing.

Continue updating code documentation.

5 years agoUpdate: add missing error code to string conversions
Kevin Day [Tue, 27 Aug 2019 03:15:27 +0000 (22:15 -0500)]
Update: add missing error code to string conversions

5 years agoUpdate: implement UTF-8 support in fss processing code and add additional functionality
Kevin Day [Fri, 23 Aug 2019 03:50:50 +0000 (22:50 -0500)]
Update: implement UTF-8 support in fss processing code and add additional functionality

Additional functionality includes implementing f_utf_character in f_utf.

Includes numerous other small UTF-8 updates.

Some macros have been wrapped in parenthesis to avoid unobvious issues such as when adding an exclamation before a macro call (and the possible order of operation issues).

5 years agoUpdate: use max_width instead of maxWidth, remove f_utf_bom check from f_is_space...
Kevin Day [Thu, 22 Aug 2019 00:04:32 +0000 (19:04 -0500)]
Update: use max_width instead of maxWidth, remove f_utf_bom check from f_is_space, and provide f_macro_utf_byte_width_is for UTF-8

Cleanup accidental use of maxWidth, when the proper syntax style is instead max_width.

After further review, I have decided to move the f_utf_bom check back outside of the f_is_space() function.

Provide f_macro_utf_byte_width_is() function for getting UTF-8 character widths but returning 0 if the character is ASCII.

5 years agoBugfix: f_socket and fl_socket, numerous problems
Kevin Day [Fri, 16 Aug 2019 02:07:12 +0000 (21:07 -0500)]
Bugfix: f_socket and fl_socket, numerous problems

It looks like the f_socket and fl_socket were not completed or otherwise written incorrectly.
Change the behavior to at least compile.

5 years agoFeature: implement monolithic build in the generate.sh and package.sh scripts
Kevin Day [Thu, 15 Aug 2019 06:11:34 +0000 (01:11 -0500)]
Feature: implement monolithic build in the generate.sh and package.sh scripts

5 years agoUpdate: add UTF-8 BOM detection
Kevin Day [Thu, 15 Aug 2019 02:36:50 +0000 (21:36 -0500)]
Update: add UTF-8 BOM detection

Add support for detecting UTF-8 BOM in the f_utf_is_space() function.
Add new function f_utf_is_bom().

5 years agoFeature: add initial UTF-8 support via f_utf
Kevin Day [Wed, 14 Aug 2019 03:46:55 +0000 (22:46 -0500)]
Feature: add initial UTF-8 support via f_utf

This provides the most basic functionality for processing UTF-8 characters.

Additional modules will be updated to natively process strings as UTF-8.

5 years agoCleanup: add build_sources_settings setting to build settings files
Kevin Day [Fri, 9 Aug 2019 01:00:58 +0000 (20:00 -0500)]
Cleanup: add build_sources_settings setting to build settings files

5 years agoCleanup: remove duplicate line in build settings file
Kevin Day [Fri, 9 Aug 2019 00:57:14 +0000 (19:57 -0500)]
Cleanup: remove duplicate line in build settings file

5 years agoCleanup: remove the objects build directory during generate.sh cleanup
Kevin Day [Fri, 9 Aug 2019 00:43:02 +0000 (19:43 -0500)]
Cleanup: remove the objects build directory during generate.sh cleanup

5 years agoUpdate: implement bash support in generate.sh
Kevin Day [Fri, 9 Aug 2019 00:54:00 +0000 (19:54 -0500)]
Update: implement bash support in generate.sh

The generate script now supports handling bash scripts.

5 years agoFeature: support custom 'defines'
Kevin Day [Fri, 9 Aug 2019 00:13:21 +0000 (19:13 -0500)]
Feature: support custom 'defines'

Some libraries or packages have custom defines, such as the firewall _en_firewall_debug_.

Provide simple documentation of the defines, in the data/build/defines file.
Provide build settings values for specifying these custom defines.
Provide parameter for manually overriding defines.

Some path settings have been renamed to avoid confusion (such as '--c_path' is now '--path_c').

Enable _en_firewall_debug_ by default.

5 years agoCleanup: remove 'DEBUG: ' from debug output
Kevin Day [Fri, 9 Aug 2019 00:45:02 +0000 (19:45 -0500)]
Cleanup: remove 'DEBUG: ' from debug output

5 years agoUpdate: add build_libraries_fll build setting
Kevin Day [Tue, 30 Jul 2019 01:35:02 +0000 (20:35 -0500)]
Update: add build_libraries_fll build setting

Add a new parameter to make it easier to switch between individual compilation, level compilation, and monolithic compilation.
This parameter will only be used for fll-specific libraries.

For programs (aka: "level 3") commented out examples for linking against level-based and monolithic are provided.
The configurations can then be easily swapped out by a couple of simple sed statements, such as:
  - sed -i -e 's|^build_libraries_fll\>|#&|g' data/build/settings
  - sed -i -e 's|^#build_libraries_fll-level\>|build_libraries_fll|g' data/build/settings

The above example will switch to the level based compiling, while disabling the individual compiling.

The level based compiling compiles each of the levels 0, 1, and 2 as a single library for each level, resulting in libraries such as:
  - libfll_0-0.5.0.so
  - libfll_1-0.5.0.so
  - libfll_2-0.5.0.so

The monolithic based compiling compiles all of the levels 0, 1, and 2 as a single library, resulting in libraries such as:
  - libfll-0.5.0.so

The standard names of individual, level, and monolithic do not overlap by default and can therefoe be installed side-by-side.

5 years agoUpdate: replace f_const with const
Kevin Day [Mon, 29 Jul 2019 04:07:16 +0000 (23:07 -0500)]
Update: replace f_const with const

The typedef f_const is no longer used in place of const.

5 years agoFeature: work directory support
Kevin Day [Mon, 29 Jul 2019 04:01:42 +0000 (23:01 -0500)]
Feature: work directory support

Work Directory provides an easier way for developers to compile and test a particular set of FLL libraries and programs without conflicting with the host system.

If the host system has some version of the FLL project installed, the versions in the work directory will be used instead of the system directories.

Specifying the work directory is done via the '-w' or '--work_directory' commands.

To better achieve this functionality in the install.sh script, four new additional parameters were created:
- --libraries-static
- --libraries-shared
- --programs-static
- --programs-shared

These provide additional relative or absolute paths for installing the programs and libraries into.
The relative paths for --libraries-static and --libraries-shared is the library directory (which can be specified via --libdir).
The relative paths for --programs-static and --programs-shared is the program directory (which can be specified via --bindir).

5 years agoUpdate: version 0.5.0
Kevin Day [Mon, 29 Jul 2019 02:48:34 +0000 (21:48 -0500)]
Update: version 0.5.0

5 years agoFeature: level-1: fl_program
Kevin Day [Mon, 29 Jul 2019 02:43:47 +0000 (21:43 -0500)]
Feature: level-1: fl_program

The version function is used between all programs in this project.
Move that functionality into its own library: fl_program.

5 years agoCleanup: private firewall files do not need to be #ifdef wrapped
Kevin Day [Mon, 29 Jul 2019 01:34:08 +0000 (20:34 -0500)]
Cleanup: private firewall files do not need to be #ifdef wrapped

The #ifdef wrappers are intended for custom overrides, which should apply only to functions treated as "public".
These firewall files beginning with private- are private and do not need these wrappings.

5 years agoBugfix: install script destination parameters not being respected
Kevin Day [Sun, 28 Jul 2019 22:02:49 +0000 (17:02 -0500)]
Bugfix: install script destination parameters not being respected

I used the wrong name in the grab_next variable when designating to grab the next includedir and libdir.
There is also a mistake where I was copying the destination_prefix onto itself.

5 years agoUpdate: always return 1 on failure
Kevin Day [Sun, 28 Jul 2019 21:48:42 +0000 (16:48 -0500)]
Update: always return 1 on failure

There were some cases where exit is not being called and other cases where exit 0 is being called.
Make sure that exit 1 is called on error so that this script can then be scriptable.

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