You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Safe, but (seems?) undocumented way in Linux -- is to call os.fchmod(socket.fileno()) BEFORE bind() + set umask to proper value. Since umask is not thread safe (affect all threads) that action should be done in fork()...
Portable way -- is to call os.chmod(path) after binding. But this will leave socket with wrong permissions during small amount of time.
Socket write permissions are required in order unprivileged process to connect to it.
Unfortunatelly this is not so easy.
os.fchmod(socket.fileno())BEFOREbind()+ setumaskto proper value. Since umask is not thread safe (affect all threads) that action should be done infork()...os.chmod(path)after binding. But this will leave socket with wrong permissions during small amount of time.Socket write permissions are required in order unprivileged process to connect to it.