On Sun, Aug 9, 2015 at 3:11 PM, Daniel Mack <daniel@xxxxxxxxxx> wrote: > > The kdbus implementation is actually comparable to two tasks X and Y > which both have their own buffer file open and mmap()ed, and they both > pass their FD to the other side. If X now writes to Y's file, and that > is causing a page fault, X is accounted for it, correct? No. With shared memory, there's no particularly obvious accounting rules. In particular, when somebody maps an already allocated page, it's basically a no-op from a memory allocation standpoint. The whole "this is equivalent to the user space deamon" argument is bogus. Shared memory is very very different from just sending messages (copying the buffers) and is generally much harder to get a handle on. And thats' what you should be comparing to. The old "communicate over a unix domain socket" had pretty clear accounting rules, and while unix domain sockets have some horribly nasty issues (most are about passing fd's around) that isn't one of them. Anyway, the real issue for me here is that Andy is reporting all these actual real problems that happen in practice, and the developer replies are dismissing them on totally irrelevant grounds ("this should be equivalent to something entirely different that nobody ever does" or "well, people could opt out, even if they didn't" yadda yadda yadda). For example, the whole "tasks X and Y communicate over shmem" is irrelevant. Normally, when people write those kinds of applications, they are just regular applications. If they have issues, nobody else cares. Andy's concern is about one of X/Y being a system daemon and tricking it into doing bad things ends up effectively killing the system - whether the *kernel* is alive or not and did the right thing is almost entirely immaterial. So please. When Andy sends a bug report with a exploit that kills his system, just stop responding with irrelevant theoretical arguments. It is not appropriate. Instead, acknowledge the problem and work on fixing it, none of this "but but but it's all the same" crap. Linus -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>