How to check if eval() changes values of any local variables?
1 回表示 (過去 30 日間)
古いコメントを表示
Dear all,
I have a GUI that lets users to evaluate custom scripts, mostly problem oriented functions. The scripts for running need to create some temporary variables and I would like to make sure that they don’t mess up the local workspace. Is there any clean and neat way to do?
Thank you for your help, Kirill Andreev
0 件のコメント
回答 (3 件)
Walter Roberson
2012 年 1 月 16 日
No, it is always possible to escape from eval() and do arbitrary things. What-ever mechanisms MathWorks uses for the Contents are not available to users.
If you want security, do not use eval() on user input without having proven the input to be harmless (which is generally a tough task.)
0 件のコメント
Sean de Wolski
2012 年 1 月 16 日
Package their script into a function (using fopen/fwrite/fprintf so that it uses its own local workspace. Call the function.
Waallaa! No eval and no poofing
3 件のコメント
Sean de Wolski
2012 年 1 月 16 日
Rather than saving them to disk you could set them to appdata, which will be MUCH faster:
doc setappdata/doc getappdata
Jan
2012 年 1 月 16 日
You can shadow assignin by creating an own function with the same name. Then you can catch the 'base' and 'caller' argument and collect all changes separately from the actual workspace.
As long as the users can call eval, strange this will happen - promissed! Somebody will create a variable called 'load' and you will not be able to load the variable dump any longer.
2 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!