- Write a RESTful API with Ballerina
- Write a gRPC service with Ballerina
- Write a GraphQL API with Ballerina
- Work with data using queries in Ballerina
- Build a data service in Ballerina
- Build a Change Data Capture (CDC) service in Ballerina
- Work with Large Language Models (LLMs) using natural expressions
- Deploy Ballerina on Kubernetes
- Manage data persistence with bal persist
- Create your first connector with Ballerina
The Ballerina scan tool uses a set of predefined rules to analyze Ballerina code and identify potential issues such as code smells, bugs, and vulnerabilities. These rules are designed to help developers maintain high-quality code and adhere to best practices.
Language rules
Avoid checkpanic
Property | Description |
---|---|
Rule ID | ballerina:1 |
Rule Kind | Code Smell |
When 'checkpanic' is used, the program terminates abruptly with a panic unless it’s handled explicitly along the call stack.
Noncompliant Code Example
public function checkResult() { json result = checkpanic getResult(); // ... } public function getResult() returns json|error { // ... }
Compliant Code Example
Check and handle the error explicitly.
public function checkResult() { json|error result = getResult(); if result is error { // handle error } // ... } public function getResult() returns json|error { // ... }
Make use of the 'check' keyword, which immediately returns the error or transfers control to an on-fail block, in contrast to 'checkpanic' and panicking if an expression or action evaluates to an error.
public function checkResult() returns error? { json result = check getResult(); } public function getResult() returns json|error { // ... }
Unused function parameter
Property | Description |
---|---|
Rule ID | ballerina:2 |
Rule Kind | Code Smell |
Unused function parameters cause unnecessary code complexity and can lead to confusion for developers maintaining the code. They may also indicate potential errors in function design or changes in requirements that were not properly implemented.
Noncompliant Code Example
import ballerina/io; function name(int a, int b) { io:println(a); } public function main() { name(1, 2); }
Compliant Code Example
Remove unused function parameters to improve code clarity and maintainability. If the parameter is intended for future use or completeness, consider documenting it or refactoring the function to use it.
import ballerina/io; function name(int a) { io:println(a); } public function main() { name(1); }
Non isolated public function
Property | Description |
---|---|
Rule ID | ballerina:3 |
Rule Kind | Code Smell |
A non-isolated function will not be called concurrently. Only isolated functions are called concurrently given that they are guaranteed to be safe if the arguments are also safe. To allow being called concurrently, a public function should be marked as isolated.
Noncompliant Code Example
public function helperFunction() { // isolated code }
Compliant Code Example
Mark public functions as isolated to ensure the function can be called concurrently.
public isolated function helperFunction() { // isolated code }
Non isolated public method
Property | Description |
---|---|
Rule ID | ballerina:4 |
Rule Kind | Code Smell |
Class methods can be isolated. An isolated method is the same as an isolated function with self treated as a parameter. A non-isolated method will not be called concurrently. Only isolated methods are called concurrently given that they are guaranteed to be safe if the arguments are also safe. To allow being called concurrently, a public method should be marked as isolated.
Noncompliant Code Example
class EvenNumber { int i = 1; public function generate() returns int { return self.i * 2; } }
Compliant Code Example
Mark public methods as isolated to ensure the method can be called concurrently.
class EvenNumber { int i = 1; public isolated function generate() returns int { lock { return self.i * 2; } } }
Non isolated public class
Property | Description |
---|---|
Rule ID | ballerina:5 |
Rule Kind | Code Smell |
A class defined as isolated is similar to a module with isolated module-level variables. A non-isolated class will not be accessed concurrently. Only isolated classes are accessed concurrently. To allow being accessed concurrently, a public class should be marked as isolated.
Noncompliant Code Example
public class EvenNumber { int i = 1; public isolated function generate() returns int { lock { return self.i * 2; } } }
Compliant Code Example
Mark public classes as isolated to ensure the class can be used in a concurrent environment.
public isolated class EvenNumber { int i = 1; public isolated function generate() returns int { lock { return self.i * 2; } } }
Non isolated public object
Property | Description |
---|---|
Rule ID | ballerina:6 |
Rule Kind | Code Smell |
A non-isolated object will not be accessed concurrently. Only isolated objects are accessed concurrently. To allow being accessed concurrently, a public object should be marked as isolated.
Noncompliant Code Example
public type Hashable object { function hash() returns int; };
Compliant Code Example
Mark public objects as isolated to ensure the object can be used in a concurrent environment.
public isolated type Hashable object { function hash() returns int; };
This operation always evaluates to true
Property | Description |
---|---|
Rule ID | ballerina:7 |
Rule Kind | Code Smell |
Conditions that are always true don't do any meaningful computation. They increase code complexity, reduce the code readability and potentially hide logical errors.
Noncompliant Code Example
public function main() { int a = 1; boolean b = a <= int:MAX_VALUE; }
This operation always evaluates to false
Property | Description |
---|---|
Rule ID | ballerina:8 |
Rule Kind | Code Smell |
Conditions that are always false indicate unreachable code or logic that will never execute. This can clutter the codebase, make it harder to understand, and potentially hide bugs or unintentional logic errors.
Noncompliant Code Example
public function main() { int a = 1; boolean b = a <= int:MIN_VALUE; }
This operation always evaluates to the same value
Property | Description |
---|---|
Rule ID | ballerina:9 |
Rule Kind | Code Smell |
Conditions which always evaluate to the same value don't do any meaningful computation. They increase code complexity, reduce the code readability, and potentially hide logical errors.
Noncompliant Code Example
public function main() { int x = 5; int _ = x % 1; // always evaluates to zero }
This variable is assigned to itself
Property | Description |
---|---|
Rule ID | ballerina:10 |
Rule Kind | Code Smell |
Self-assignments, where a variable is assigned to itself (x = x), are redundant and do not alter the state of the variable. They can indicate incomplete or erroneous logic and make the code harder to read and maintain.
Noncompliant Code Example
public function main() { int x = 5; x = x; }
Unused class private fields
Property | Description |
---|---|
Rule ID | ballerina:11 |
Rule Kind | Code Smell |
Unused or unread private fields/methods in a class can indicate incomplete or erroneous logic, lead to unnecessary memory usage, and make the code harder to maintain and understand.
Noncompliant Code Example
class A { private int[] a = []; private int[] b = []; function foo() { self.a = [2]; } } public function main() { A a = new A(); }
Compliant Code Example
Remove the unused private fields/methods. If the field/method is intended for future use or completeness, consider documenting, refactoring the class to use it, or introducing it when ready to implement the rest.
class A { private int[] a = []; function foo() { self.a = [2]; } } public function main() { A a = new A(); }
Invalid range expression
Property | Description |
---|---|
Rule ID | ballerina:12 |
Rule Kind | Code Smell |
The update clause of a range expression should ensure the counter moves in the correct direction. Incorrect range expression directions can lead to unexpected behavior, making the code harder to understand and debug.
Noncompliant Code Example
import ballerina/io; public function main() { foreach int i in 9...0 { io:println(i); } }
Compliant Code Example
Ensure the range expression counter moves in the correct direction according to the desired iteration. Use the correct range or adjust the range expression logic to achieve the intended behavior.
import ballerina/io; public function main() { foreach int i in 0...9 { io:println(i); } }
Library rules
Avoid using publicly writable directories for file operations without proper access controls
Property | Description |
---|---|
Rule ID | ballerina/file:1 |
Rule Kind | Vulnerability |
Operating systems often have global directories with write access granted to any user. These directories serve as temporary storage locations like /tmp in Linux-based systems. However, when an application manipulates files within these directories, it becomes vulnerable to race conditions on filenames. A malicious user may attempt to create a file with a predictable name before the application does. If successful, such an attack could lead to unauthorized access, modification, corruption, or deletion of other files. This risk escalates further if the application operates with elevated permissions.
Noncompliant Code Example
string tempFolderPath = os:getEnv("TMP"); check file:create(tempFolderPath + "/" + "myfile.txt"); check file:getAbsolutePath(tempFolderPath + "/" + "myfile.txt"); check file:createTemp("suffix", "prefix"); check file:createTempDir((), "prefix");
Compliant Code Example
Use dedicated sub-folders.
check file:create("./myDirectory/myfile.txt"); check file:getAbsolutePath("./myDirectory/myfile.txt");
File function calls should not be vulnerable to path injection attacks
Property | Description |
---|---|
Rule ID | ballerina/file:2 |
Rule Kind | Vulnerability |
Path injections occur when an application constructs a file path using untrusted data without first validating the path.
A malicious user can inject specially crafted values, like "../", to alter the intended path. This manipulation may lead the path to resolve to a location within the filesystem where the user typically wouldn't have access.
Noncompliant Code Example
listener http:Listener endpoint = new (8080); string targetDirectory = "./path/to/target/directory/"; service / on endpoint { resource function get deleteFile(string fileName) returns string|error { check file:remove(targetDirectory + fileName); // ... } }
Compliant Code Example
Conduct validation of canonical paths.
listener http:Listener endpoint = new (8080); string targetDirectory = "./path/to/target/directory/"; service / on endpoint { resource function get deleteFile(string fileName) returns string|error { // Retrieve the normalized absolute path of the user provided file string absoluteUserFilePath = check file:getAbsolutePath( targetDirectory + fileName); string normalizedAbsoluteUserFilePath = check file:normalizePath( absoluteUserFilePath, file:CLEAN); // Check whether the user provided file exists boolean fileExists = check file:test( normalizedAbsoluteUserFilePath, file:EXISTS); if !fileExists { return "File does not exist!"; } // Retrieve the normalized absolute path of parent directory of the user provided file string canonicalDestinationPath = check file:parentPath( normalizedAbsoluteUserFilePath); string normalizedCanonicalDestinationPath = check file:normalizePath( canonicalDestinationPath, file:CLEAN); // Retrieve the normalized absolute path of the target directory string absoluteTargetFilePath = check file:getAbsolutePath( targetDirectory); string normalizedTargetDirectoryPath = check file:normalizePath( absoluteTargetFilePath, file:CLEAN); // Perform comparison of user provided file path and target directory path boolean dirMatch = normalizedTargetDirectoryPath.equalsIgnoreCaseAscii( normalizedCanonicalDestinationPath); if !dirMatch { return "Entry is not in the target directory!"; } check file:remove(normalizedAbsoluteUserFilePath); } }
Avoid allowing default resource accessor
Property | Description |
---|---|
Rule ID | ballerina/http:1 |
Rule Kind | Vulnerability |
An HTTP resource is safe when used for read-only operations like GET, HEAD, or OPTIONS. An unsafe HTTP resource is used to alter the state of an application, such as modifying the user’s profile on a web application.
Unsafe HTTP resources include POST, PUT, and DELETE.
Enabling both safe and insecure HTTP resources to execute a particular operation on a web application may compromise its security; for instance, CSRF protections are typically designed to safeguard operations executed by insecure HTTP resources.
Noncompliant Code Example
listener http:Listener endpoint = new (8080); service / on endpoint { // Sensitive: by default all HTTP methods are allowed resource function default deleteRequest(http:Request clientRequest, string username) returns string { // state of the application will be changed here } }
Compliant Code Example
For every resource in an application, it’s crucial to explicitly define the type of the HTTP resource, ensuring that safe resources are exclusively used for read-only operations.
service / on endpoint { resource function delete deleteRequest(http:Request clientRequest, string username) returns string { // state of the application will be changed here } }
Avoid permissive Cross-Origin Resource Sharing
Property | Description |
---|---|
Rule ID | ballerina/http:2 |
Rule Kind | Vulnerability |
Browsers enforce the same-origin policy by default, as a security measure, preventing JavaScript frontends from making cross-origin HTTP requests to resources with different origins (domains, protocols, or ports). However, the target resource can include additional HTTP headers in its response, known as CORS headers, which serve as directives for the browser and modify the access control policy, effectively relaxing the same-origin policy.
Noncompliant Code Example
listener http:Listener endpoint = new (8080); service / on endpoint { @http:ResourceConfig { cors: { allowOrigins: ["*"] // Sensitive } } resource function get example() returns http:Response|error? { // Return response } }
Compliant Code Example
The resource configuration should be configured exclusively for trusted origins and specific resources.
listener http:Listener endpoint = new (8080); service / on endpoint { @http:ResourceConfig { cors: { allowOrigins: ["trustedwebsite.com"] // Compliant } } resource function get example() returns http:Response|error? { // Return response } }
I/O function calls should not be vulnerable to path injection attacks
Property | Description |
---|---|
Rule ID | ballerina/io:1 |
Rule Kind | Vulnerability |
Path injections occur when an application constructs a file path using untrusted data without first validating the path.
A malicious user can inject specially crafted values, like "../", to alter the intended path. This manipulation may lead the path to resolve to a location within the filesystem where the user typically wouldn't have access.
Noncompliant Code Example
import ballerina/io; import ballerina/http; service /fileService on new http:Listener(8080) { resource function get file(string fileName) returns string|error { // Noncompliant: User input is directly concatenated into the file path string filePath = "./resources/" + fileName; // Reading file without validating the path string content = check io:fileReadString(filePath); return content; } }
Compliant Code Example
Validate and normalize the path to ensure the accessed file remains within the intended target directory.
import ballerina/io; import ballerina/http; import ballerina/file; service /fileService on new http:Listener(8080) { resource function get file(string fileName) returns string|error { string targetDirectory = "./resources/"; // Retrieve the normalized absolute path of the user-provided file string absoluteUserFilePath = check file:getAbsolutePath(targetDirectory + fileName); string normalizedAbsoluteUserFilePath = check file:normalizePath(absoluteUserFilePath, file:CLEAN); // Retrieve the normalized absolute path of the target directory string absoluteTargetFilePath = check file:getAbsolutePath(targetDirectory); string normalizedTargetDirectoryPath = check file:normalizePath(absoluteTargetFilePath, file:CLEAN); // Perform comparison of user provided file path and target directory path boolean dirMatch = normalizedTargetDirectoryPath.equalsIgnoreCaseAscii( check file:parentPath(normalizedAbsoluteUserFilePath)); if !dirMatch { return "Access to files outside the target directory is not allowed!"; } string content = check io:fileReadString(normalizedAbsoluteUserFilePath); return content; } }
Potentially-sensitive configurable variables are logged
Property | Description |
---|---|
Rule ID | ballerina/log:1 |
Rule Kind | Vulnerability |
In Ballerina, configurable variables typically contain sensitive data that should not be exposed externally and are usually kept secret. This includes credentials to access external systems, such as databases. To protect users' privacy, information is forbidden or strongly discouraged from being logged, such as user passwords or credit card numbers, which should obviously not be stored or at least not in clear text.
Noncompliant Code Example
import ballerina/log; configurable string password = ?; configurable string user = ?; public function main() { log:printInfo(password); log:printError(string `Error: ${password}`); log:printWarn(`Error: ${password}`); log:printError("Error " + password); log:printWarn("Warning", password = password); log:printError("Error", password = password, user = user); }
Compliant Code Example
Avoid using configurable variables inside the logging statement.
import ballerina/log; int id = 12345; public function main() { log:printInfo(“task executed successfully.”, id = id); }
Avoid constructing system command arguments from user input without proper sanitization
Property | Description |
---|---|
Rule ID | ballerina/os:1 |
Rule Kind | Vulnerability |
Arguments of system commands are processed by the executed program. The arguments are usually used to configure and influence the behavior of the programs. Control over a single argument might be enough for an attacker to trigger dangerous features like executing arbitrary commands or writing files into specific directories.
Arguments like -delete or -exec for the find command can alter the expected behavior and result in vulnerabilities.
Noncompliant Code Example
string terminalPath = ...; string input = request.getQueryParamValue("input").toString(); string[] cmd = [..., input]; // Sensitive os:Process result = check os:exec({ value: terminalPath, arguments: cmd });
Compliant Code Example
Use an allow-list to restrict the arguments to trusted values.
string terminalPath = ...; string input = request.getQueryParamValue("input").toString(); string[] cmd = [..., input]; string[] allowed = ["main", "main.bal", "bal"]; if allowed.some(keyword => keyword.equalsIgnoreCaseAscii(input)) { os:Process result = check os:exec({ value: terminalPath, arguments: cmd }); }