Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NPM package `pem` doesn't seem to work in AWS lambda NodeJS 10.x (results in OpenSSL error)

When I run the function locally on NodeJS 11.7.0 it works, when I run it in AWS Lambda NodeJS 8.10 it works, but I've recently tried to run it in AWS Lambda NodeJS 10.x and get this response and this error in Cloud Watch.

Any thoughts on how to correct this?

Response

{
    "success": false,
    "error": "Error: Could not find openssl on your system on this path: openssl"
}

Cloudwatch Error

ERROR (node:8) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.

Function

...
const util = require('util');
const pem = require('pem');
...

return new Promise((fulfill) => {
        require('./certs').get(req, res, () => {
            return fulfill();
        });
    }).then(() => {
        const createCSR = util.promisify(pem.createCSR);

        //This seems to be where the issue is coming from 
        return createCSR({
            keyBitsize: 1024,
            hash: HASH,
            commonName: id.toString(),
            country: 'US',
            state: 'Maryland',
            organization: 'ABC', //Obfuscated 
            organizationUnit: 'XYZ', //Obfuscated
        });
    }).then(({ csr, clientKey }) => {
        ...
    }).then(async ({ certificate, clientKey }) => {
        ...
    }, (err) => {
        return res.status(404).json({
            success: false,
            error: err,
        });
    });
...

I've tried with "pem": "^1.14.3", and "pem": "^1.14.2",

like image 666
Seth McClaine Avatar asked Oct 24 '19 20:10

Seth McClaine


People also ask

Does AWS Lambda have OpenSSL?

OpenSSL binaries for AWS LambdaA layer for AWS Lambda that allows your functions to use openssl binaries.

What kind of packages can you use with node js for Lambda?

You use a deployment package to deploy your function code to Lambda. Lambda supports two types of deployment packages: container images and . zip file archives. To create the deployment package for a .

Is node js supported by AWS Lambda?

You can now develop AWS Lambda functions using the Node. js 16 runtime. This version is in active LTS status and considered ready for general use.

How to upload NPM module to AWS Lambda layers as ZIP?

npm module has to be bundeled inside your nodejs package and upload to AWS Lambda Layers as zip, then you would need to refer to your module/js as below and use available methods from it. const mymodule = require ('/opt/nodejs/MyLogger');

How do I use Lambda with npm?

Using npm packages and custom modules/packages with Lambda is easy. We’ll start by including prebuilt modules then move on to native ones. Step1: Create a new directory to hold your Lambda function and its modules. For this example, we’ll keep things simple and install the AWS SDK.

Why am I getting a cannot find module error in AWS Lambda?

The Cannot find module error usually occurs for one of three reasons: The Lambda function's deployment package doesn't have the correct folder structure to allow the Lambda service to load the required modules and libraries.

Why can't I install a package with npm install?

if your dependency is not listed in that file, it will never get installed with the npm install command. you will need to manually install the packages and then run npm shrinkwrap to update the shrinkwrap file. I had an issue where manually installing a package had created a package-lock.json file after updating to node 8.0.0 and npm 5.0.0.


2 Answers

I tried the answer documented by @Kris White, but I was not able to get it to work. Each execution resulted in the error Could not find openssl on your system on this path: /opt/openssl. I tried several different paths and approaches, but none worked well. It's entirely possible that I simply didn't copy the OpenSSL executable correctly.

Since I needed a working solution, I used the answer provided by @Wilfred Dittmer. I modified it slightly since I wasn't using Docker. I launched an Amazon Linux 2 server, built OpenSSL on it, transferred the package to my local machine, and deployed it via Serverless.


Create a file named create-openssl-zip.sh with the following contents. The script will create the Lambda Layer OpenSSL package.

#!/bin/bash -x

# This file should be copied to and run inside the /tmp folder
yum update -y
yum install autoconf bison gcc gcc-c++ libcurl-devel libxml2-devel -y
curl -sL http://www.openssl.org/source/openssl-1.1.1d.tar.gz | tar -xvz
cd openssl-1.1.1d
./config --prefix=/tmp/nodejs/openssl --openssldir=/tmp/nodejs/openssl && make && make install
cd /tmp
rm -rf nodejs/openssl/share nodejs/openssl/include
zip -r lambda-layer-openssl.zip nodejs
rm -rf nodejs openssl-1.1.1d

Then, follow these steps:

  1. Open a terminal session in this project's root folder.
  2. Run the following command to upload the Linux bash script.
    • curl -F "[email protected]" https://file.io
    • Note: The command above uses the popular tool File.io to copy the script to the cloud temporarily so it can be securely retrieved from the build server.
    • Note: If curl is not installed on your dev machine, you can also upload the script manually using the File.io website.
  3. Copy the URL for the uploaded file from either the terminal session or the File.io website.
    • Note: The url will look similar to this example: https://file.io/a1B2c3
  4. Open the AWS Console to the EC2 Instances list.
  5. Launch a new instance with these attributes:
    1. AMI: Amazon Linux 2 AMI (HVM), SSD Volume Type (id: ami-0a887e401f7654935)
    2. Instance Type: t2.micro
    3. Instance Details: (use all defaults)
    4. Storage: (use all defaults)
    5. Tags: Name - 'build-lambda-layer-openssl'
    6. Security Group: 'Create new security group' (use all defaults to ensure Instance will be publicly accessible via SSH over the internet)
  6. When launching the instance and selecting a key pair, be sure to choose a Key Pair from the list to which you have access.
  7. Launch the instance and wait for it to be accessible.
  8. Once the instance is running, use an SSH Client to connect to the instance.
    • More details on how to open an SSH connection can be found here.
  9. In the SSH terminal session, navigate to the tmp directory by running cd /tmp.
  10. Download the bash script uploaded earlier by running curl {FILE_IO_URL} --output create-openssl-zip.sh.
    • Note: In the script above, replace FILE_IO_URL with the URL returned from File.io and copied in step 3.
  11. Execute the bash script by running sudo bash ./create-openssl-zip.sh. The script may take a while to complete. You may need to confirm one or more package install prompts.
  12. When the script completes, run the following command to upload the package to File.io: curl -F "[email protected]" https://file.io.
  13. Copy the URL for the uploaded file from the terminal session.
  14. In the terminal session on the local development machine, run the following command to download the file: curl {FILE_IO_URL} --output lambda-layer-openssl.zip.
    • Note: In the script above, replace FILE_IO_URL with the URL returned from File.io and copied in step 13.
    • Note: If curl is not installed on your dev machine, you can also download the file manually by pasting the copied URL in the address bar of your favorite browser.
  15. Close the SSH session.
  16. In the EC2 Instances list, terminate the build-lambda-layer-openssl EC2 instance since it is not needed any longer.
  17. The OpenSSL Lambda Layer is now ready to be deployed.

For completeness, here is a portion of my serverless.yml file:

functions:
  functionName:
    # ...
    layers:
      - { Ref: OpensslLambdaLayer }

layers:
  openssl:
    name: ${self:provider.stage}-openssl
    description: Contains openssl command line utility for lambdas that need it
    package:
      artifact: 'path\to\lambda-layer-openssl.zip'
    compatibleRuntimes: 
      - nodejs10.x
      - nodejs12.x
    retain: false

...and here is how I configured PEM in the code file:

import * as pem from 'pem';
process.env.LD_LIBRARY_PATH = '/opt/nodejs/openssl/lib';
pem.config({
    pathOpenSSL: '/opt/nodejs/openssl/bin/openssl',
});
// other code...
like image 99
Pflugs Avatar answered Nov 14 '22 22:11

Pflugs


I contacted AWS Support about this and it turns out that the openssl library is still on the Node10x image, just not the command line utility. However, it's pretty easy to just grab it off a standard AMI and use it as a Lambda layer.

Steps:

  1. Launch an Amazon Linux 2 AMI as an EC2
  2. SSH into the box, or use an SFTP utility to connect to the box
  3. Copy the command line utility for openssl at /usr/bin/openssl somewhere you can work with it locally. In my case I downloaded it to my Mac even though it is a Linux file.
  4. Verify that it's still marked as executable (chmod a+x openssl if necessary if you've downloaded it elsewhere)
  5. Zip up the file
  6. Optional: Upload it to an S3 bucket you can get to
  7. Go to Lambda Layers in the AWS console
  8. Create a new lambda layer. I named mine openssl and used the S3 pointer to the file on S3. You can also upload the zip directly if you have it on a local file system.
  9. Attach the arn provided for the layer to your Lambda function. I use serverless so it was defined in the function setup per their documentation.
  10. In your code, reference openssl as /opt/openssl or you can avoid pathing it in your code (or may not have an option if it's a package you don't control) by adding /opt to you path, i.e.
process.env['PATH'] = process.env['PATH'] + ':' + process.env['LAMBDA_TASK_ROOT'] + ':/opt';

The layer will have been unzipped for you and because you set it to be executable beforehand, it should just work. The underlying openssl libraries are there, so just copying the cli works just fine.

like image 38
Kris White Avatar answered Nov 14 '22 21:11

Kris White