The GSM (a.k.a. Generate Secure Macros) package allows to create secured macros stored in SAS Proc FCMP functions. The dataset with functions can be shared and allows to generate macros without showing their code.
The GSM package is basically an automated version of the following:
proc fcmp outlib = work.gsm.secure ENCRYPT;
function generateMacro() $;
rc = RESOLVE('
%macro secretMacro(x) / SECURE;
data test;
a = "&x.";
run;
%mend;
');
return (rc);
endsub;
run;
/* share work.gsm dataset */
options cmplib = work.gsm;
data _null_;
rc = generateMacro();
put rc=;
run;
/* enjoy */
%secretMacro(42)
See examples for more details.
Recording of presentation with "how it works" description (in Polish).
The WUSS 2023 Conference article describing the idea
How to use it:
- Copy all files with your secured macros code into a directory. Best approach is to have one file for one macro.
- Copy a path to the directory.
- Run the following code:
%GSM(<the path to directory>, cmplib=<name of the dataset>)
- Share generated
ZIP
file (unzip and run the code).
Limitations:
-
Single macro file cannot be longer than 32760 bytes.
-
Multiline text variable. Consider the following code text file:
%macro~test()/SECURE;~#@
data~test;~#@
a~=~"abc~#@
~#@
def";~#@
put~a~hex20.;~#@
run;~#@
%mend~test;~#@
where ~
symbols the space character,
#
symbols the carriage return (0D
),
and @
symbols the line feed (0A
).
The code file is scanned and inserted into
the resolve()
function argument in a "byte by byte"
fashion hence also the "end of line" characters are included.
As the result value of variable a
will be:
a = "abc~#@~#@def"
.
If you want to use the GSM
package avoid
such "style" of coding in your macros.
Package contains:
- macro gsm
- macro gsmpck_makefcmpcode
Required SAS Components:
Base SAS Software
Package contains additional content, run: %loadPackageAddCnt(GSM) to load it or look for the gsm_AdditionalContent directory in the Packages fileref localization (only if additional content was deployed during the installation process).
SAS package generated by generatePackage, version 20231111
The SHA256 hash digest for package GSM:
F*80197391195C3EC41BD436DF0C8802D3920E4D22B64009A7DE872FBDF8D4B86E
The %GSM()
macro is the main macro of
the GSM (a.k.a. Generate Secure Macros) package.
It converts a list of macros provided by the user into
a data set of the Proc FCMP functions. The macros are stored
in functions are encrypted which allow to share them without
showing their code. Important thing is that macros provided
by the user has to be "secure", i.e. the secure
option has to
be added to the macro definition. See the example:
%macro secretMacro(x) / SECURE; /* <- the secure option */
<... some code ...>
%mend secretMacro;
As a result a zip file, containing dataset with functions and code to be executed on site, is generated.
Since encrypted code is stored in a SAS dataset it has no limitation in sharing between operating systems (like catalogs have).
Limitation: Due to the Resolve()
function limitations
a single macro file cannot be longer than 32760 bytes.
Notes:
- All macros have to have the
secure
option added, i.e.%macro aMacroname(...) / SECURE ;
. - During the execution a test macro, named
%GSMpck_dummyMacroForTests()
, is generated. - The
%GSM()
macro calls the%GSMpck_makeFCMPcode(...)
macro internally.
The basic syntax is the following, the <...>
means optional parameters:
%GSM(
path
<,trim=0>
<,cmplib=work.generateMacros>
<,source2=>
<,outpath=>
<,encodingRestricted=>
<,secret=>
<,lineEnd=>
<,encrypt=>
)
Arguments description:
path
- Required, indicates a directory which contains files with macros. Only files withsas
extension are used.
-
cmplib=
- Optional, the default value iswork.generateMacros
. Names the dataset which will contain generated functions. -
source2=
- Optional, the default value is null. Indicate if%includ
-ed files are printed out. Any value other than null enables printing. -
outpath=
- Optional, the default value is set the same as thepath
. Points a directory in which a result (a zip file) is generated. -
encodingRestricted=
- Optional, the default value is0
. If set to 1 then if User session encoding is different from encoding of the session which generates the dataset then the generateMacros() function will not execute macro code. -
secret=
- Optional, the default value is null, in such case the secret is generated from thesha256(datetime(), hex32.)
function and is printed in the log. When not null then should be alphanumerical constant. Non-alphanumerical characters are removed. Required to execute theresolve()
function. User who do not know the value will not be able to run the_maxro_XX_()
function. -
lineEnd=
- Optional, the default value is0D0A
, indicates which of: line feed, carriage return, or both, or a space be inserted at the end of line in the intermediate code file that is generated. Value has to be hexadecimal code (NOT null), since the value is resolved as"&lineEnd."x
, so use e.g.0A
for line feed,0D
for carriage return,0D0A
for both, and20
for space. -
encrypt=
- Optional, the default value isENCRYPT
. Indicate ifFCMP
functions generated by the package are encrypted. Value has to be either empty orENCRYPT
, all other are converted to default. The option is dedicated for debugging, keep the default value for production use. -
trim=
- Deprecated, the default value is0
. Kept for backward compatibility.
Example 1. Prepare 2 files: f1.sas
and f2.sas
and use the %GSM()
macro.
%let path = %sysfunc(pathname(work))/path2files;
%put &=path.;
options dlcreatedir;
libname path "&path.";
filename path "&path.";
data _null_;
file path(f1.sas);
input;
put _infile_;
cards4;
%macro abc(x) / SECURE;
data test;
do i = 1 to &x.;
put i=;
end;
run;
%mend;
;;;;
run;
data _null_;
file path(f2.sas);
input;
put _infile_;
cards4;
%macro xyz(x) / SECURE;
%do i = 1 %to &x.;
%put &=i;
%end;
%mend;
;;;;
run;
%GSM(&path., cmplib=work.myMacros)
The %GSMpck_makeFCMPcode()
macro is an internal macro of
the GSM (a.k.a. Generate Secure Macros) package.
It executes a process of converting a macro provided by the user into a Proc FCMP function.
Since encrypted code is stored in a SAS dataset it has no limitation in sharing between operating systems (like catalogs have).
Limitation: Single macro file cannot be longer than 32760 bytes.
The basic syntax is the following, the <...>
means optional parameters:
%GSMpck_makeFCMPcode(
path
,number
<,outlib=work.generateMacros.secure>
<,source2=>
<,fileNameCode=FNC>
<,secret=123456789>
<,lineEnd=0A>
)
Arguments description:
-
path
- Required, indicates a directory which contains files with macros. Only files withsas
extension are used. -
number
- Required, a sequential number.
-
cmplib=
- Optional, the default value iswork.generateMacros
. Names the dataset which will contain generated functions. -
source2=
- Optional, the default value is null. Indicate if%includ
-ed files are printed out. Any value other than null enables printing. -
fileNameCode=
- Optional, the default value isFNC
. Internal fileref. -
secret=
- Optional, internal, the default value is1234567890
. Alphanumerical constant required to execute theresolve()
function. User who do not know the value will not be able to run the_maxro_XX_()
function. -
lineEnd=
- Optional, the default value is0D0A
, indicates which of: line feed, carriage return, or both, or a space be inserted at the end of line in the intermediate code file that is generated. Value has to be hexadecimal code (NOT null), since the value is resolved as"&lineEnd."x
, so use e.g.0A
for line feed,0D
for carriage return,0D0A
for both, and20
for space. -
trim=
- Deprecated, the default value is0
. Kept for backward compatibility.
Copyright (c) Bartosz Jablonski, since 2021
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.