zsh-workers
 help / color / mirror / code / Atom feed
* Closing descriptors in forked (pipe) command
@ 2017-02-18 12:45 Sebastian Gniazdowski
  2017-02-19  5:02 ` Bart Schaefer
  0 siblings, 1 reply; 4+ messages in thread
From: Sebastian Gniazdowski @ 2017-02-18 12:45 UTC (permalink / raw)
  To: zsh-workers

Hello,
in db/gdbm module, I do:
        addmodulefd(gdbm_fdesc(dbf), FDT_MODULE);

this should lead to problem, but it behaves the same as with
FDT_INTERNAL, i.e. following:

% ztie -d db/gdbm -f ~/db3 mybase2
% fun() { while read line; do echo $line; done }
% eval "print -rl -- \${(kv)mybase2[@]}" | fun
% echo $mybase2

The point is: forked process inherits database connection. GDBM cannot
have multiple writers (open is in write mode). Above outputs:

(Dbase accessed)
testkey
testdata

(Dbase accessed)
testkey
testdata

"(Dbase accessed)" is printf from code where $mybase2 turns out to be
empty for given key and database fetch is ordered. So it's visible that
there is fork because database is accessed twice – $mybase2 is still
empty at line "echo $mybase2". Good that GDBM handles change to
file-descriptor's file position pointer (AFAIK it's shared between FDs),
and reads the data again correctly. With write it also works, but
potentially the database might get corrupted silently:

% ztie -d db/gdbm -f ~/db3 mybase2
% fun() { while read line; do echo $line; done }
% eval "mybase2[漢]=字" | fun
(Dbase accessed)
% echo $mybase2[漢]
(Dbase accessed)
字

Maybe it would be good to solve this? FDT_FORKCLOSE or something, there
is closeallelse(), for multiio, didn't go deeper in this.

-- 
  Sebastian Gniazdowski
  psprint2@fastmail.com


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-02-19 10:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-18 12:45 Closing descriptors in forked (pipe) command Sebastian Gniazdowski
2017-02-19  5:02 ` Bart Schaefer
2017-02-19  8:04   ` Sebastian Gniazdowski
2017-02-19 10:51   ` [PATCH] " Sebastian Gniazdowski

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).