26
26
import java .util .ArrayList ;
27
27
import java .util .Arrays ;
28
28
import java .util .List ;
29
+ import java .util .Locale ;
29
30
import java .util .Map ;
30
31
import java .util .Optional ;
32
+ import java .util .Set ;
31
33
import java .util .stream .Collectors ;
32
34
import org .slf4j .Logger ;
33
35
import org .slf4j .LoggerFactory ;
36
38
import org .sonarsource .scanner .lib .internal .http .OkHttpClientFactory ;
37
39
38
40
public class ScannerEngineLauncher {
41
+ private static final Set <String > SENSITIVE_JVM_ARGUMENTS = Set .of (
42
+ "sonar.login" ,
43
+ "password" ,
44
+ "token" );
39
45
40
46
private static final Logger LOG = LoggerFactory .getLogger (ScannerEngineLauncher .class );
41
47
@@ -104,14 +110,30 @@ private List<String> buildArgs(Map<String, String> properties) {
104
110
List <String > args = new ArrayList <>();
105
111
String javaOpts = properties .get (ScannerProperties .SCANNER_JAVA_OPTS );
106
112
if (javaOpts != null ) {
107
- args .addAll (split (javaOpts ));
113
+ var split = split (javaOpts );
114
+ LOG .atInfo ().addArgument (() -> redactSensitiveArguments (split )).log ("SONAR_SCANNER_JAVA_OPTS={}" );
115
+ args .addAll (split );
108
116
}
109
117
args .add ("-D" + OkHttpClientFactory .BC_IGNORE_USELESS_PASSWD + "=true" );
110
118
args .add ("-jar" );
111
119
args .add (scannerEngineJar .getPathInCache ().toAbsolutePath ().toString ());
112
120
return args ;
113
121
}
114
122
123
+ private static String redactSensitiveArguments (List <String > scannerOpts ) {
124
+ return scannerOpts .stream ()
125
+ .map (ScannerEngineLauncher ::redactArgumentIfSensistive )
126
+ .collect (Collectors .joining (" " ));
127
+ }
128
+
129
+ private static String redactArgumentIfSensistive (String argument ) {
130
+ String [] elems = argument .split ("=" );
131
+ if (elems .length > 0 && SENSITIVE_JVM_ARGUMENTS .stream ().anyMatch (p -> elems [0 ].toLowerCase (Locale .ENGLISH ).contains (p ))) {
132
+ return elems [0 ] + "=*" ;
133
+ }
134
+ return argument ;
135
+ }
136
+
115
137
private static List <String > split (String value ) {
116
138
return Arrays .stream (value .split ("\\ s+" ))
117
139
.map (String ::trim )
@@ -124,11 +146,11 @@ private static String buildJsonProperties(Map<String, String> properties) {
124
146
properties .entrySet ().stream ()
125
147
.filter (prop -> prop .getKey () != null )
126
148
.sorted (Map .Entry .comparingByKey ()).forEach (prop -> {
127
- JsonObject property = new JsonObject ();
128
- property .addProperty ("key" , prop .getKey ());
129
- property .addProperty ("value" , Optional .ofNullable (prop .getValue ()).orElse ("" ));
130
- propertiesArray .add (property );
131
- });
149
+ JsonObject property = new JsonObject ();
150
+ property .addProperty ("key" , prop .getKey ());
151
+ property .addProperty ("value" , Optional .ofNullable (prop .getValue ()).orElse ("" ));
152
+ propertiesArray .add (property );
153
+ });
132
154
JsonObject jsonObject = new JsonObject ();
133
155
jsonObject .add (JSON_FIELD_SCANNER_PROPERTIES , propertiesArray );
134
156
return new Gson ().toJson (jsonObject );
0 commit comments