Constants & Errors
Constants, error types, sentinel errors, and predefined variables defined by the library.
Security Limit Constants
Default Limits
const (
// DefaultMaxFileSize - Maximum bytes per file
DefaultMaxFileSize int64 = 2 * 1024 * 1024 // 2 MB
// DefaultMaxLineLength - Maximum length per line
DefaultMaxLineLength int = 1024 // 1 KB
// DefaultMaxKeyLength - Maximum key name length
DefaultMaxKeyLength int = 64
// DefaultMaxValueLength - Maximum value length
DefaultMaxValueLength int = 4096 // 4 KB
// DefaultMaxVariables - Maximum variables per file
DefaultMaxVariables int = 500
// DefaultMaxExpansionDepth - Maximum variable expansion depth
DefaultMaxExpansionDepth int = 5
)Hard Limits
Note
The following are internal hard limits (unexported), used by Config.Validate() for internal checks. Users cannot directly reference these constants, but cfg.Validate() automatically checks whether the configuration exceeds these limits.
| Constant | Value | Description |
|---|---|---|
| HardMaxFileSize | 100 MB | File size hard limit |
| HardMaxLineLength | 64 KB | Line length hard limit |
| HardMaxKeyLength | 1024 | Key length hard limit |
| HardMaxValueLength | 1 MB | Value length hard limit |
| HardMaxVariables | 10000 | Variable count hard limit |
| HardMaxExpansionDepth | 20 | Expansion depth hard limit |
Configuration validation checks whether hard limits are exceeded:
cfg := env.DefaultConfig()
cfg.MaxFileSize = 200 * 1024 * 1024 // Exceeds 100MB limit
if err := cfg.Validate(); err != nil {
// Returns error: MaxFileSize exceeds hard limit
}Sentinel Errors
Note
The following are predefined sentinel symbols, but in the current implementation some scenarios do not match these sentinels via errors.Is: forbidden keys return *SecurityError (match with errors.Is(err, ErrSecurityViolation)), while invalid key format and missing required keys return *ValidationError (extract via errors.As). See each error type section for details.
File Errors
var ErrFileNotFound = errors.New("file not found")
var ErrFileTooLarge = errors.New("file exceeds maximum size limit")Checking:
err := loader.LoadFiles(".env")
if errors.Is(err, env.ErrFileNotFound) {
// File not found
}
if errors.Is(err, env.ErrFileTooLarge) {
// File too large
}Parse Errors
var ErrLineTooLong = errors.New("line exceeds maximum length limit")
var ErrInvalidKey = errors.New("invalid key format")
var ErrDuplicateKey = errors.New("duplicate key encountered")Security Errors
var ErrForbiddenKey = errors.New("key is forbidden for security reasons")
var ErrSecurityViolation = errors.New("security policy violation")
var ErrInvalidValue = errors.New("invalid value content")Checking forbidden keys:
err := loader.Set("PATH", "value")
if errors.Is(err, env.ErrSecurityViolation) {
// Attempting to set a forbidden key returns *SecurityError
}Expansion Errors
var ErrExpansionDepth = errors.New("variable expansion depth exceeded")Limit Errors
var ErrMaxVariables = errors.New("maximum number of variables exceeded")State Errors
var ErrClosed = errors.New("loader has been closed")
var ErrInvalidConfig = errors.New("invalid configuration")
var ErrAlreadyInitialized = errors.New("default loader already initialized")
var ErrNotInitialized = errors.New("default loader not initialized; call Load() first")
var ErrMissingRequired = errors.New("required key is missing")Checking:
// Check if loader is closed
if errors.Is(err, env.ErrClosed) {
// Loader is closed
}
// Check if default loader is initialized
if errors.Is(err, env.ErrAlreadyInitialized) {
// Default loader already exists, cannot call Load() again
}
// Check if default loader is not initialized
if errors.Is(err, env.ErrNotInitialized) {
// Need to call env.Load() or env.LoadWithConfig() first
}
// Check if required keys are missing (actually returns *ValidationError{Rule:"required"})
var valErr *env.ValidationError
if errors.As(err, &valErr) && valErr.Rule == "required" {
// Required key is missing
}Adapter Errors
var ErrValidateRequiredUnsupported = errors.New(
"custom validator does not implement ValidateRequired; " +
"implement Validator interface for required key validation",
)When a custom validator only implements the KeyValidator interface but not the complete Validator interface, calling ValidateRequired returns this error.
Checking:
if errors.Is(err, env.ErrValidateRequiredUnsupported) {
// Custom validator does not support required key validation
// Need to implement complete Validator interface
}Solution
Implement the Validator interface (including ValidateKey, ValidateValue, ValidateRequired methods) instead of only implementing KeyValidator.
Error Types
ParseError
Parse error with location information:
type ParseError struct {
File string // File name
Line int // Line number
Content string // Error content (masked)
Err error // Original error
}Usage example:
err := loader.LoadFiles(".env")
var parseErr *env.ParseError
if errors.As(err, &parseErr) {
fmt.Printf("Parse error %s:%d: %v\n",
parseErr.File, parseErr.Line, parseErr.Err)
}ValidationError
Validation error:
type ValidationError struct {
Field string // Field name
Value string // Value (masked)
Rule string // Rule
Message string // Message
}SecurityError
Security error:
type SecurityError struct {
Action string // Action
Reason string // Reason
Key string // Key name (masked)
Details string // Additional details
}Usage example:
var secErr *env.SecurityError
if errors.As(err, &secErr) {
fmt.Printf("Security error: %s - %s\n", secErr.Action, secErr.Reason)
}FileError
File operation error:
type FileError struct {
Path string // File path
Op string // Operation (open, stat, size_check)
Err error // Original error
Size int64 // File size (for size check)
Limit int64 // Limit (for size check)
}Usage example:
var fileErr *env.FileError
if errors.As(err, &fileErr) {
fmt.Printf("File %s size %d exceeds limit %d\n",
fileErr.Path, fileErr.Size, fileErr.Limit)
}ExpansionError
Variable expansion error:
type ExpansionError struct {
Key string // Key name
Depth int // Current expansion depth
Limit int // Maximum allowed depth
Chain string // Expansion chain (sanitized)
Kind ExpansionErrorKind // Cause category (zero value = depth/cycle)
}Error classification (Kind field):
type ExpansionErrorKind int
const (
// ExpansionDepthKind indicates the expansion hit a recursion-depth limit or cycle.
// This is the zero value, so common depth/cycle errors need no explicit classification.
// errors.Is(err, ErrExpansionDepth) matches them.
ExpansionDepthKind ExpansionErrorKind = iota
// ExpansionRequiredKind indicates a required variable (${VAR:?message}) was unset or empty.
// This is not a depth overflow, so it does not match ErrExpansionDepth.
ExpansionRequiredKind
)errors.Is behavior: A *ExpansionError matches ErrExpansionDepth only when Kind != ExpansionRequiredKind. Required-variable errors are a distinct failure mode and do not match ErrExpansionDepth.
Usage example:
var expErr *env.ExpansionError
if errors.As(err, &expErr) {
switch expErr.Kind {
case env.ExpansionDepthKind:
// Depth overflow or cycle: errors.Is(err, env.ErrExpansionDepth) == true
fmt.Printf("depth %d/%d, chain: %s\n", expErr.Depth, expErr.Limit, expErr.Chain)
case env.ExpansionRequiredKind:
// Required variable unset: errors.Is(err, env.ErrExpansionDepth) == false
fmt.Printf("required variable %s not set\n", expErr.Key)
}
}JSONError
JSON parse error:
type JSONError struct {
Path string // File path
Message string // Error message
Err error // Original error
}YAMLError
YAML parse error:
type YAMLError struct {
Path string // File path
Line int // Line number
Column int // Column number
Message string // Error message
Err error // Original error
}MarshalError
Serialization error:
type MarshalError struct {
Field string // Field name
Message string // Error message
}
func IsMarshalError(err error) bool // Check functionPredefined Variables
DefaultForbiddenKeys
Built-in forbidden key list, preventing modification of system-critical variables:
Note
defaultForbiddenKeys is an internal variable (unexported) and cannot be accessed directly via env.DefaultForbiddenKeys. The following is the complete list used internally, for reference.
| Category | Forbidden Keys |
|---|---|
| System paths | PATH |
| Dynamic linker (Linux) | LD_PRELOAD, LD_PRELOAD_32, LD_PRELOAD_64, LD_LIBRARY_PATH, LD_LIBRARY_PATH_32, LD_LIBRARY_PATH_64, LD_AUDIT, LD_DEBUG |
| macOS | DYLD_INSERT_LIBRARIES, DYLD_LIBRARY_PATH |
| Windows | COMSPEC, PATHEXT, SYSTEMROOT, WINDIR |
| Shell | SHELL, ENV, BASH_ENV, IFS |
| Language runtimes | PYTHONPATH, NODE_PATH, PERL5OPT, RUBYLIB |
Risk Description:
| Key | Risk Type | Description |
|---|---|---|
PATH | Command hijacking | Modify command search path |
LD_PRELOAD | Library injection | Preload malicious dynamic library |
LD_LIBRARY_PATH | Library hijacking | Modify library search path |
DYLD_INSERT_LIBRARIES | Library injection | macOS library injection |
COMSPEC | Command hijacking | Windows command interpreter path override |
PATHEXT | Command hijacking | Windows executable extension tampering |
SYSTEMROOT | System corruption | Windows system root tampering |
WINDIR | System corruption | Windows directory tampering |
PYTHONPATH | Module hijacking | Python module search path |
IFS | Parsing attack | Modify field separator |
Usage Example:
// Attempting to set a forbidden key returns *SecurityError
err := loader.Set("PATH", "/malicious/path")
if errors.Is(err, env.ErrSecurityViolation) {
// Key is forbidden
}
// Add additional forbidden keys
cfg := env.DefaultConfig()
cfg.ForbiddenKeys = []string{"MY_SENSITIVE_VAR"}SensitiveKeyPatterns
Sensitive key pattern list for automatic detection of sensitive configuration. Key names containing these patterns (case-insensitive) are identified as sensitive:
Note
sensitiveKeyPatterns is an internal variable (unexported), accessed indirectly via the IsSensitiveKey() function. The following are the main sensitive pattern categories, for reference.
Main Sensitive Pattern Categories:
| Category | Pattern Examples |
|---|---|
| Authentication & Authorization | PASSWORD, SECRET, TOKEN, AUTH, CREDENTIAL, PASSPHRASE, SESSION, COOKIE |
| API & Keys | API_KEY, APIKEY, ACCESS_KEY, SECRET_KEY, PRIVATE_KEY, PUBLIC_KEY |
| Encryption & Security | PRIVATE, ENCRYPTION_KEY, ENCRYPT_KEY, DECRYPT_KEY, SIGNING_KEY, SIGN_KEY, VERIFY_KEY |
| Financial & PII | SSN, SOCIAL_SECURITY, CREDIT_CARD, CARD_NUMBER, CVV, CVC, CCV, PAN |
| Cryptocurrency | MNEMONIC, SEED, RECOVERY, WALLET, PRIVATE_ADDRESS |
| Database | CONNECTION_STRING, CONN_STRING, DATABASE_URL, DB_PASSWORD |
| Cloud Services | AWS_SECRET, AZURE_KEY, GCP_KEY, SERVICE_ACCOUNT |
Matching Rules:
- Case-insensitive
- Key name containing any pattern is identified as sensitive
Usage Example:
// Check if a key is sensitive
if env.IsSensitiveKey("DB_PASSWORD") {
// Handle securely
secret := env.GetSecure("DB_PASSWORD")
if secret != nil {
defer secret.Release()
}
}DefaultKeyPattern
Default key name validation pattern:
var DefaultKeyPattern *regexp.Regexp = nilPerformance Optimization
A nil value enables fast byte-level validation (~10x performance improvement). Default validation rules: starts with a letter, contains only letters, digits, and underscores.
Custom Pattern:
import "regexp"
cfg := env.DefaultConfig()
// Only allow uppercase letters at the start
cfg.KeyPattern = regexp.MustCompile(`^[A-Z][A-Z0-9_]{1,63}$`)Security Utility Functions
IsSensitiveKey
func IsSensitiveKey(key string) boolChecks whether a key name matches sensitive patterns.
if env.IsSensitiveKey("DB_PASSWORD") {
// Sensitive key, handle securely
secret := env.GetSecure("DB_PASSWORD")
defer secret.Release()
}MaskValue
func MaskValue(key, value string) stringReturns a masked value based on the key's sensitivity.
// Sensitive key - returns [MASKED:N chars] format
masked := env.MaskValue("API_KEY", "secret123")
// Returns: [MASKED:9 chars]
// Non-sensitive key - returns original value (truncated if over 20 characters)
masked := env.MaskValue("APP_NAME", "myapp")
// Returns: myapp
masked := env.MaskValue("DESCRIPTION", "this is a very long description text")
// Returns: this is a very lo...MaskKey
func MaskKey(key string) stringMasks a key name for logging.
masked := env.MaskKey("DB_PASSWORD")
// Returns: DB***MaskSensitiveInString
func MaskSensitiveInString(s string) stringMasks potentially sensitive content in a string. Truncates strings exceeding 50 characters.
Parameters:
s- Original string
Returns:
string- Masked string
// Long strings are truncated
log := "This is a very long log message that exceeds 50 characters and will be truncated"
clean := env.MaskSensitiveInString(log)
// Returns: "This is a very long log message that exceeds 50..."
// Short strings remain unchanged
short := "Short message"
clean := env.MaskSensitiveInString(short)
// Returns: "Short message"Note
This function is primarily used for truncating long strings. To automatically mask sensitive key-value pairs, use SanitizeForLog.
SanitizeForLog
func SanitizeForLog(s string) stringSanitizes sensitive key-value pair information in a string. Automatically detects and masks sensitive values in key=value format.
Parameters:
s- Original string
Returns:
string- Sanitized string
Detected sensitive key patterns:
password=,secret=,token=,auth=,credential=,passphrase=,session=,cookie=api_key=,apikey=,access_key=,secret_key=,private_key=,public_key=encrypt_key=,decrypt_key=,signing_key=ssn=,credit_card=,card_number=,cvv=,cvc=mnemonic=,seed=,recovery=,wallet=connection_string=,database_url=,db_password=
// Automatically masks sensitive key-value pairs
msg := "Connected with password=secret123 api_key=abc123"
clean := env.SanitizeForLog(msg)
// Returns: "Connected with password=[MASKED] api_key=[MASKED]"
// Non-sensitive key-value pairs remain unchanged
msg := "Config loaded: app_name=myapp port=8080"
clean := env.SanitizeForLog(msg)
// Returns: "Config loaded: app_name=myapp port=8080"Use Case
Suitable for log output, error messages, debugging information, and other scenarios requiring automatic filtering of sensitive key-value pairs.
ClearBytes
func ClearBytes(b []byte)Securely zeroes a byte slice.
sensitive := []byte("secret-data")
// Use...
env.ClearBytes(sensitive)
// sensitive is now all zerosFileFormat Constants
File format type:
type FileFormat int
const (
FormatAuto FileFormat = iota // Auto-detect
FormatEnv // .env format
FormatJSON // JSON format
FormatYAML // YAML format
)Usage example:
// Detect format
format := env.DetectFormat("config.json") // FormatJSON
// Specify format for serialization
data, _ := env.Marshal(cfg, env.FormatJSON)
// Format string
fmt.Println(format.String()) // "json"Error Checking Patterns
errors.Is Pattern
Check sentinel errors:
err := loader.LoadFiles(".env")
switch {
case errors.Is(err, env.ErrFileNotFound):
// File not found
case errors.Is(err, env.ErrFileTooLarge):
// File too large
case errors.Is(err, env.ErrSecurityViolation):
// Forbidden key
case errors.Is(err, env.ErrClosed):
// Loader is closed
}errors.As Pattern
Extract detailed error information:
err := loader.LoadFiles(".env")
var parseErr *env.ParseError
if errors.As(err, &parseErr) {
fmt.Printf("Parse error at %s line %d\n", parseErr.File, parseErr.Line)
}
var fileErr *env.FileError
if errors.As(err, &fileErr) {
fmt.Printf("File %s size %d exceeds limit %d\n",
fileErr.Path, fileErr.Size, fileErr.Limit)
}
var secErr *env.SecurityError
if errors.As(err, &secErr) {
fmt.Printf("Security error: %s - %s\n", secErr.Action, secErr.Reason)
}Complete Error Handling Example
package main
import (
"errors"
"log"
"github.com/cybergodev/env"
)
func main() {
cfg := env.ProductionConfig()
cfg.FailOnMissingFile = true
loader, err := env.New(cfg)
if err != nil {
log.Fatal(err)
}
defer loader.Close()
err = loader.LoadFiles(".env")
if err != nil {
switch {
case errors.Is(err, env.ErrFileNotFound):
log.Fatal("Config file not found")
case errors.Is(err, env.ErrFileTooLarge):
log.Fatal("Config file too large")
case errors.Is(err, env.ErrClosed):
log.Fatal("Loader is closed")
default:
var parseErr *env.ParseError
if errors.As(err, &parseErr) {
log.Fatalf("Parse error %s:%d - %v",
parseErr.File, parseErr.Line, parseErr.Err)
}
var fileErr *env.FileError
if errors.As(err, &fileErr) {
log.Fatalf("File error %s - %v", fileErr.Path, fileErr.Err)
}
var secErr *env.SecurityError
if errors.As(err, &secErr) {
log.Fatalf("Security error: %s - %s", secErr.Action, secErr.Reason)
}
var jsonErr *env.JSONError
if errors.As(err, &jsonErr) {
log.Fatalf("JSON error %s: %s", jsonErr.Path, jsonErr.Message)
}
var yamlErr *env.YAMLError
if errors.As(err, &yamlErr) {
log.Fatalf("YAML error %s:%d:%d - %s",
yamlErr.Path, yamlErr.Line, yamlErr.Column, yamlErr.Message)
}
log.Fatal(err)
}
}
// Validate required keys
if err := loader.Validate(); err != nil {
var valErr *env.ValidationError
if errors.As(err, &valErr) {
log.Fatalf("Validation failed: %s - %s", valErr.Field, valErr.Message)
}
log.Fatal(err)
}
}Related Documentation
- SecureValue API - Complete security utility API
- Config API - Configuration options and limit settings
- Security Overview - Security architecture and core features
- Production Checklist - Pre-deployment security check