World: r3wp
[!REBOL3]
older newer | first last |
Ladislav 26-May-2011 [8928x3] | I think that the only votes against the change were by gurus, while the rest of the responding gurus abstained like me. - that *very much* depends on who you consider gurus |
Functions of the native! type don't need to bind their bodies to contexts - in that sense, natives behave both as functions and as closures at the same time. That is not as a big of an exception, as it may look, e.g.: f: func [][] behaves as a closure, similarly as g: func [x y][add :x :y] , simply because in such simple cases it is not discernible whether the given "function" is a function or a closure | |
(although the last case may be made function/closure sensitive, if we redefine ADD and make it "sufficiently complicated") | |
Maxim 26-May-2011 [8931] | where was the /local discussion ? I'd like to review it :-) |
Geomol 26-May-2011 [8932] | There is some in Core group 12-May. |
Maxim 26-May-2011 [8933] | wrt to the /local, its strange as I recall it being dependent on the way it was implemented and what it would actually prevent and why. most people don't really care in the sense that it wont really change any of their code. but I think added security by disallowing /local being given would be nice. Right now, we can easily inject code within functions by giving function! types as /local parameters. |
Geomol 26-May-2011 [8934x3] | And http://www.rebol.net/cgi-bin/r3blog.r?view=0341#comments |
I'm not sure, and maybe it's a gray area. Are you familar with contracting between caller and function as described by Bertrand Meyer? If you promise to call *r* with *pre* satisfied then I, in return, promise to deliver a final state in which *post* is satisfied. *r* is a routine in his words. | |
In other words: "If you f*** my function up by giving strange arguments, then you're on your own." And I guess, /local arguments to functions can be used for something good in some cases. | |
Kaj 26-May-2011 [8937] | The ability to do that is limited for an interpreter until it becomes too slow |
Maxim 26-May-2011 [8938] | the blog discussion attacks the use of /local in a myriad of ways, but few actually talk about making /local or what they would accept or not if it were a "reserved"/uncallable refinement. |
Geomol 26-May-2011 [8939] | See /local as any other refinement! You can inject code just the same using any refinement and additional arguments. |
Maxim 26-May-2011 [8940x2] | Geomol, you can use any other refinement, why use /local and allow a huge gap in security wrt intent of a local varable. I'd actually replace the /local handling of the function dialect and allow you to specify default values right in the function block. f: func [a b /local i: 2 blk: [ ] ] [...] The idea of /local is that its a protected, internal, set of words... most people don't even realize that it is just another normal refinement. |
but the idea is that we usually limit the input types when it matters. and the function has to do the handling of the /local refinement. I'd much rather get an interpreter error telling me I can't use or apply /local refinements. this would also mean that /local would have to be the last refinement... always. | |
Geomol 26-May-2011 [8942x3] | Maybe we should see some examples to better judge this. |
How are arguments used? You can set them using set-word! or just use the word. If you just use an argument, your "inject code" could be a problem, not if you use it as a set-word!. But normal arguments you just use, so your problem is there already, or what? | |
Take REPLACE as an example of a function with locals. See how locals are used by looking at the source. I don't think, the thing about /local is an existing problem. | |
Maxim 26-May-2011 [8945] | All I'm saying, John, is that currently we have to manually "close the doors", there are no ways within the language to make words private from the outside without doing the work ourself. and most people don't realize that there is no such thing as a local word in rebol functions. we only have arguments, which looks like a weird missing feature. |
Geomol 26-May-2011 [8946x2] | I'm a bit in doubt, because as you say, people might see this as a missing feature, even if it's not a problem. But wouldn't it be able to produce a function creator like FUNC, that makes a context with the locals, and then the function itself within the context and with the rest of the arguments? |
wouldn't *we* ... | |
Maxim 26-May-2011 [8948] | yep, we can build our own function builders but again, this means we do it ourself. ;-) would just be nice if one refinement where reserved for inaccessible words.... which is what /local has been used for for 15 years (even though its been an illusion ;-) |
Geomol 26-May-2011 [8949x3] | Can you give an example of a function, where it's a problem, locals are not really local? |
Maybe a function, where the local var is set, if some condition is fulfilled, and then the local is returned in the end, being NONE, if it wan't set. Is that an example of such a problem function? | |
*wasn't* | |
Maxim 26-May-2011 [8952] | Here is an example of a function hi-jacking. it is something that can commonly be seen in larger apps, where some locals are only used conditionally. in this case, the original function is hijacked and we could really do nasty things here. -------------------------------------------------------------------- rebol [] f: func [a [string! block!] /local str][ ; uncomment to make the function safe ; str: none if block? a [ str: mold a ] print any [str a] ] evil-func: func [a ][ ; do something evil here print "EVIL!" head insert a " >:-P >>> " ] f/local "Print occurs as if nothing is wrong" :evil-func ask "!" |
Geomol 26-May-2011 [8953] | Good example! :) Houston, we have a problem! |
Maxim 26-May-2011 [8954] | using this trick we can get internal function values even if we cannot change function bodies anymore. my point is not that this can be done with any arguments. its just that the way we all use /locals, we don't include argument protection. so I think its just a good thing to allow this functionality by default in the language, since we all use /locals as if it where already there. |
Kaj 26-May-2011 [8955] | What about the full FUNCTION form? |
Maxim 26-May-2011 [8956] | IIRC, its just a stub which creates a 'FUNC spec. |
Kaj 26-May-2011 [8957] | I remember it the other way around |
Maxim 26-May-2011 [8958x2] | on make function! , the argument spec is just one block, not two. |
unless it's changed while I wasn't looking ;-)( | |
Kaj 26-May-2011 [8960] | Hm, yes, that makes the issue extra deceptive. FUNCTION looks like it has real locals |
Ladislav 27-May-2011 [8961x2] | FUNCTION was the other way around, Kaj, but *long* ago |
R1 | |
Geomol 27-May-2011 [8963] | Maxim, in your example, the user has access to the function f, can call it direcly. Let's say, we couldn't give the /local refinement, then I could just write: f evil-func "Print occurs as if nothing is wrong" Why is it a problem, we can give the /local refinement? Isn't it false security, if it is changed, so we can't call with /local ? |
Kaj 27-May-2011 [8964x2] | Ah, a scheme engine leftover :-) |
Carl reacted to its complexity with extreme simplicity, so this one may have been one bridge too far | |
onetom 27-May-2011 [8966x2] | i wish we would live in a world where u shouldn't be concerned about this kind of security issues :D |
this concept is sooo lovely, that u can even build such a fundamental feature as local variable via the already existing specs dialect, my heart hurts to see we can't keep this virgin beauty and have to sacrifice it on the altar of security... | |
Kaj 27-May-2011 [8968] | Yeah, I also thought it elegant when I heard about it, but on the other hand it violates the principle of least surprise |
BrianH 27-May-2011 [8969] | REBOL is too weird compared to other programming languages for it to really be possible or even desirable to avoid surprise :) |
Kaj 27-May-2011 [8970] | I know, but this one would be surprising in any language |
BrianH 27-May-2011 [8971] | Not any language - I think you are underestimating the variety in languages. Some don't have local variables at all, for instance. |
Kaj 27-May-2011 [8972x2] | Doesn't matter. The surprise is about local variables being initialisable from the outside |
Local variables are by definition about encapsulation, and this is not encapsulation | |
BrianH 27-May-2011 [8974x2] | The surprise being that there aren't really any local variables, just arguments which might be optional. There was a proposal to make there be non-argument local variables in R3, and I wouldn't be opposed to this, but "least surprise" isn't a good enough argument for why in such an inherently surprising language as REBOL. I also wouldn't be opposed to having FUNCT add an ASSERT/type [local none!] to the beginning of the code block of every function it generates. |
That last trick would be difficult to do safely though, at least as FUNCT is used in the mezzanine generation process. Mezzanines are generated with FUNCT but saved with MOLD into the form where they will be loaded at runtime. This means that FUNCT can't generate code that has inline function or datatype values in it, since they won't mold properly. Unless you inline the references to ASSERT and NONE!, those words couldn't be used as function parameters or local variables in the generated functions. Tradeoffs, I guess. | |
Kaj 27-May-2011 [8976] | I hereby propose to rename the /local refinement to /not-local |
Geomol 27-May-2011 [8977] | :-D |
older newer | first last |