-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IOError: permission denied handling USR1 signal after switching to unprivileged user #1116
Comments
For anyone who happens upon this ticket in the future: I've gone back to using |
Interesting. Not sure what to do here. @benoitc any thoughts? |
I didn't test it yet. I looked at the code and it's supposed to reopen using the same mode: Setting the correct umask should do the trick. |
|
the arbiter also need to access to the logs... this is why the umask and
|
USR1 is sent just to the master process (arbiter?) I'm running gunicorn as root, so it will always have write access to the log files, regardless of the owner. As AFAIK, only root is allowed to use |
@parasyte but if you spawn workers under a different user they also need to have write access to the logs since they are writing directly to it. What is your exact command line right now? The
|
daemontools works because it drops root privileges before gunicorn is started. So gunicorn is running under the unprivileged user, and creates the log file with the correct owner. The bug described in this ticket occurs when gunicorn is started as root (creates the log files with root as owner) then drops privileges before the fork. It can be replicated with something like: # wsgi.py
from wsgiref.simple_server import make_server, demo_app
if __name__ == '__main__':
httpd = make_server('', 8000, demo_app)
print "Serving HTTP on port 8000..."
httpd.serve_forever() Run it as root and drop privileges:
Now send
See |
fixed. Thanks! |
make sure that a user is able to access to the logs after dropping a privilege. fix benoitc#1116
Since I hit the file descriptor leak in #1012, I switched to using USR1 signal in logrotate instead of HUP. I got it working until I added
user
andgroup
config variables to switch to an unprivileged user in the worker.When gunicorn master starts, it creates the access and error log files owned by root, and the children inherit these FDs and continue writing to the privileged FDs even after switching to an unprivileged user. (Weird, but AFAICT this is expected behavior.)
The problem comes when the USR1 signal is sent; the unprivileged workers attempt to reopen a file that is owned by root!
I'm using gevent, which explains this particular traceback showing up in cffi...
The text was updated successfully, but these errors were encountered: