Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use of eval is strongly discouraged #4987

Open
lnmp4000 opened this issue Sep 10, 2024 · 4 comments
Open

use of eval is strongly discouraged #4987

lnmp4000 opened this issue Sep 10, 2024 · 4 comments
Labels
bug Something isn't working has:reproducer This bug/feature has a minimal reproducer provided pkg:exporter-trace-otlp-http pkg:exporter-trace-otlp-proto priority:p1 Bugs which cause problems in end-user applications such as crashes, data inconsistencies, etc priority:p4 Bugs and spec inconsistencies which do not fall into a higher prioritization

Comments

@lnmp4000
Copy link

Bundling with rollupjs generated the following error because of protobufjs usage.

(!) Use of eval is strongly discouraged
https://rollupjs.org/troubleshooting/#avoiding-eval
../node_modules/@protobufjs/inquire/index.js
10: function inquire(moduleName) {
11:     try {
12:         var mod = eval("quire".replace(/^/,"re"))(moduleName); // eslint-disable-line no-eval
                      ^
13:         if (mod && (mod.length || Object.keys(mod).length))
14:             return mod;

This is included via the following tree:

  └─┬ @opentelemetry/[email protected]
    └─┬ @opentelemetry/[email protected]
      └── [email protected]

I don't understand why this is necessary, but it could potentially cause issues for code bundled via rollup.

https://rollupjs.org/troubleshooting/#avoiding-eval

Also see protobufjs/protobuf.js#1754

@pichlermarc
Copy link
Member

Hi @lnmp4000, thanks for reaching out. I was under the impression that this would actually get tree-shaken out for users of the @opentelemetry/exporter-trace-otlp-http package - but I'm not very familar with rollup so I'd be somewhat time consuming to come up with a repro for this. Maybe it's generating that warning before it's tree-shaken out?

Would you mind providing a small repro so I can investigate? 🤔
Is it an error or a warning that's generated by rollup?

Regardless of tree-shaking, we still use this in @opentelemetry/exporter-trace-otlp-proto and @opentelemetry/exporter-logs-otlp-proto and looking at the the issue you linked, my preferred solution would be to fix this upstream in the protobufjs repo as this seems to affect quite a few people...

@pichlermarc
Copy link
Member

Would you mind providing a small repro so I can investigate? 🤔

Nevermind, I took some time to reproduce this 🙂
https://github.com/pichlermarc/repro-4987

Is it an error or a warning that's generated by rollup?

Looking at my reproducer it looks like the following is happening:

  • rollup sees the code before tree-shaking it, generates a warning
  • code eventually gets tree-shaken out and eval does not end up in the final bundle

Therefore code using @opentelemetry/exporter-trace-otlp-http does not violate CSPs by using eval, but using @opentelemetry/exporter-trace-otlp-proto does, as the eval call will eventually end up in the final bundle.

There's a few ways we can partially/fully fix this:

  • Quick partial fix: @opentelemetry/otlp-transformer can have multiple entrypoints, one for json and one for protobuf serialization
    • this will get rid of the log message generated by rollup when using @opentelemetry/exporter-trace-otlp-http
    • it will not fix the underlying issue for @opentelemetry/exporter-trace-otlp-proto
  • we can re-write protobuf serialization from scratch, not using generated code, and not using @protobufjs/inquire
    • this will be a lot of work, given that we plan to change the structure of the internal data-model later, it might cause a lot of unnecessary churn and maintenance effort, so I'd like to avoid this where possible 🙁
    • this will fix both the rollup warning log for @opentelemetry/exporter-trace-otlp-http and the violation of CSPs by @opentelemetry/exporter-trace-otlp-proto
  • we can fix this in @protobufjs/inquire
    • this will fix both the rollup warning log for @opentelemetry/exporter-trace-otlp-http and the violation of CSPs by @opentelemetry/exporter-trace-otlp-proto
    • this will fix it for everyone that consumes the @protobufjs/inquire either directly or transitively.
    • this is the ✨ ideal solution ✨ as it fixes it not just for OTel JS but everyone that uses protobufjs

@pichlermarc pichlermarc added has:reproducer This bug/feature has a minimal reproducer provided bug Something isn't working triage and removed needs:reproducer This bug/feature is in need of a minimal reproducer labels Sep 12, 2024
@lnmp4000
Copy link
Author

@pichlermarc Thanks so much for looking at this. In my case, based on your research, It seems I can just ignore this warning for now as the eval code will not be in the final bundle.

@pichlermarc
Copy link
Member

pichlermarc commented Sep 16, 2024

@pichlermarc Thanks so much for looking at this. In my case, based on your research, It seems I can just ignore this warning for now as the eval code will not be in the final bundle.

Yes, exactly. 🙂

If you don't mind, I'll spin off two bugs from this issue to clarify the situation:

  • False-positive eval()-use warning for OTLP JSON exporters when using rollup (priority:p4, reason: logspam, misleading log)
  • OTLP Protobuf exporters violate CSP by using eval() (priority:p1 reason: causes problems in end-user apps)

@pichlermarc pichlermarc added priority:p1 Bugs which cause problems in end-user applications such as crashes, data inconsistencies, etc priority:p4 Bugs and spec inconsistencies which do not fall into a higher prioritization and removed triage labels Oct 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working has:reproducer This bug/feature has a minimal reproducer provided pkg:exporter-trace-otlp-http pkg:exporter-trace-otlp-proto priority:p1 Bugs which cause problems in end-user applications such as crashes, data inconsistencies, etc priority:p4 Bugs and spec inconsistencies which do not fall into a higher prioritization
Projects
None yet
Development

No branches or pull requests

2 participants