?? oneprocess.c
字號:
/* * Part of Very Secure FTPd * Licence: GPL v2 * Author: Chris Evans * oneprocess.c * * Code for the "one process" security model. The one process security model * is born for the purposes of raw speed at the expense of compromising the * purity of the security model. * The one process model will typically be disabled, for security reasons. * Only sites with huge numbers of concurrent users are likely to feel the * pain of two processes per session. */#include "prelogin.h"#include "postlogin.h"#include "privops.h"#include "session.h"#include "secutil.h"#include "str.h"#include "tunables.h"#include "utility.h"#include "sysstr.h"#include "sysdeputil.h"voidvsf_one_process_start(struct vsf_session* p_sess){ unsigned int caps = 0; if (tunable_chown_uploads) { caps |= kCapabilityCAP_CHOWN; } if (tunable_connect_from_port_20) { caps |= kCapabilityCAP_NET_BIND_SERVICE; } { struct mystr user_name = INIT_MYSTR; struct mystr chdir_str = INIT_MYSTR; str_alloc_text(&user_name, tunable_ftp_username); if (tunable_anon_root) { str_alloc_text(&chdir_str, tunable_anon_root); } if (tunable_run_as_launching_user) { if (!str_isempty(&chdir_str)) { str_chdir(&chdir_str); } } else { vsf_secutil_change_credentials(&user_name, 0, &chdir_str, caps, VSF_SECUTIL_OPTION_CHROOT | VSF_SECUTIL_OPTION_USE_GROUPS); } str_free(&user_name); str_free(&chdir_str); } init_connection(p_sess);}voidvsf_one_process_login(struct vsf_session* p_sess, const struct mystr* p_pass_str){ enum EVSFPrivopLoginResult login_result = vsf_privop_do_login(p_sess, p_pass_str); switch (login_result) { case kVSFLoginFail: return; break; case kVSFLoginAnon: p_sess->is_anonymous = 1; process_post_login(p_sess); break; default: bug("bad state in vsf_one_process_login"); break; }}intvsf_one_process_get_priv_data_sock(struct vsf_session* p_sess){ return vsf_privop_get_ftp_port_sock(p_sess);}voidvsf_one_process_chown_upload(struct vsf_session* p_sess, int fd){ vsf_privop_do_file_chown(p_sess, fd);}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -