Which file is causing, "java.io.EOFException: End of input at line 1 column 1"?

Which file is causing the error?

The execution of

sonar-scanner -X -Dsonar.projectKey=SUPER_DUPER_PROJECT -Dsonar.sources=src -Dsonar.host.url=http://ec2-w-x-y-z.us-east-2.compute.amazonaws.com:9000/sonarqube -Dsonar.login=SOME_KEY

results in the following:

.... LOTS OF DEBUG OUTPUT ...

16:36:54.037 DEBUG: 'src/tools/blach/lib/src/acquire_release.h' generated metadata with charset 'UTF-8'

16:36:54.038 DEBUG: 'src/tools/blach/include/s__list.c' generated metadata with charset 'UTF-8'

16:36:54.040 DEBUG: 'src/tools/blach/include/s__list.h' generated metadata with charset 'UTF-8'

16:36:54.044 DEBUG: 'src/tools/blach/include/s_p__list.h' generated metadata with charset 'UTF-8'

16:36:54.045 DEBUG: 'src/tools/blach/lib/src/s__csignal.h' generated metadata with charset 'UTF-8'

16:36:54.046 DEBUG: 'src/tools/blach/include/_isfuncdcl.h' generated metadata with charset 'UTF-8'

16:36:54.047 DEBUG: 'src/tools/blach/lib/src/defs.c' generated metadata with charset 'UTF-8'

16:36:54.048 INFO: Cache is explicitly disabled: Optional[false]

16:36:54.058 DEBUG: eslint-bridge server will shutdown

16:36:54.229 DEBUG: stylelint-bridge server will shutdown

16:36:54.233 INFO: ------------------------------------------------------------------------

16:36:54.233 INFO: EXECUTION FAILURE

16:36:54.233 INFO: ------------------------------------------------------------------------

16:36:54.233 INFO: Total time: 36.149s

16:36:54.345 INFO: Final Memory: 35M/117M

16:36:54.346 INFO: ------------------------------------------------------------------------

16:36:54.346 ERROR: Error during SonarScanner execution

java.lang.IllegalStateException: java.io.EOFException: End of input at line 1 column 1

at com.sonar.cpp.plugin.CFamilySensor.process(CFamilySensor.java:475)

at com.sonar.cpp.plugin.CFamilySensor.execute(CFamilySensor.java:305)

at org.sonar.scanner.sensor.AbstractSensorWrapper.analyse(AbstractSensorWrapper.java:48)

at org.sonar.scanner.sensor.ModuleSensorsExecutor.execute(ModuleSensorsExecutor.java:85)

at org.sonar.scanner.sensor.ModuleSensorsExecutor.execute(ModuleSensorsExecutor.java:62)

at org.sonar.scanner.scan.ModuleScanContainer.doAfterStart(ModuleScanContainer.java:82)

at org.sonar.core.platform.ComponentContainer.startComponents(ComponentContainer.java:137)

at org.sonar.core.platform.ComponentContainer.execute(ComponentContainer.java:123)

at org.sonar.scanner.scan.ProjectScanContainer.scan(ProjectScanContainer.java:386)

at org.sonar.scanner.scan.ProjectScanContainer.scanRecursively(ProjectScanContainer.java:382)

at org.sonar.scanner.scan.ProjectScanContainer.doAfterStart(ProjectScanContainer.java:351)

at org.sonar.core.platform.ComponentContainer.startComponents(ComponentContainer.java:137)

at org.sonar.core.platform.ComponentContainer.execute(ComponentContainer.java:123)

at org.sonar.scanner.bootstrap.GlobalContainer.doAfterStart(GlobalContainer.java:141)

at org.sonar.core.platform.ComponentContainer.startComponents(ComponentContainer.java:137)

at org.sonar.core.platform.ComponentContainer.execute(ComponentContainer.java:123)

at org.sonar.batch.bootstrapper.Batch.doExecute(Batch.java:72)

at org.sonar.batch.bootstrapper.Batch.execute(Batch.java:66)

at org.sonarsource.scanner.api.internal.batch.BatchIsolatedLauncher.execute(BatchIsolatedLauncher.java:46)

at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.base/java.lang.reflect.Method.invoke(Unknown Source)

at org.sonarsource.scanner.api.internal.IsolatedLauncherProxy.invoke(IsolatedLauncherProxy.java:60)

at com.sun.proxy.$Proxy0.execute(Unknown Source)

at org.sonarsource.scanner.api.EmbeddedScanner.doExecute(EmbeddedScanner.java:189)

at org.sonarsource.scanner.api.EmbeddedScanner.execute(EmbeddedScanner.java:138)

at org.sonarsource.scanner.cli.Main.execute(Main.java:112)

at org.sonarsource.scanner.cli.Main.execute(Main.java:75)

at org.sonarsource.scanner.cli.Main.main(Main.java:61)

Caused by: java.io.EOFException: End of input at line 1 column 1

at com.google.gson.stream.JsonReader.nextNonWhitespace(JsonReader.java:1377)

at com.google.gson.stream.JsonReader.consumeNonExecutePrefix(JsonReader.java:1514)

at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:523)

at com.google.gson.stream.JsonReader.beginObject(JsonReader.java:368)
at com.sonar.cpp.plugin.CFamilySensor.process(CFamilySensor.java:435)

... 29 more

I am analyzing someone else’s code not mine. Therefore I am not at liberty to make changes to someone’s code. This needs to be statically analyzed as is it exists.

Where could this be failing?

Thank you

Hello @dpstsecops,

Are you defining the build-wrapper output directory? If yes, does build-wrapper .json file exist in that directory?

If not please follow this documentation to set up the analysis for your C project.

Thanks,

Yes, I have defined the build-wrapper output directory.

That type of error is not part of the error output. I have attached the full the output.

sonar-scanner-output.txt (804.6 KB)

@dpstsecops,

Can you share the build-wrapper command that you are executing? Is it succefully building the project?
Also, please upload these files: “/opt/sonarqube/projects/SOME_PROJECT/sonarqube-output/build-wrapper-dump.json” and “/opt/sonarqube/projects/SOME_PROJECT/sonarqube-output/build-wrapper.log”

Thanks,

Hey Abbas.

“/opt/sonarqube/projects/SOME_PROJECT/sonarqube-output/build-wrapper-dump.json”exists but is empty.
“/opt/sonarqube/projects/SOME_PROJECT/sonarqube-output/build-wrapper.log” is non-existent.

Thanks for the reply. I was not clear enough before. I cannot build this software using “make”. I just need to analyze the code without building object files, libraries or executables for now.

Is that possible?

Thanks again

@dpstsecops,

It is not possible to analyze without building.

You don’t have to build it using make. you should pass to build-wrapper any command that builds your project. “make” is just an example any other command that actually build the project should be fine.

Thanks Abbas for the response.

Yes, “make” is just one example, agreed.

Let me get with the developer.

Thank you

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.