tunables.c 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. /*
  2. * Part of Very Secure FTPd
  3. * Licence: GPL v2
  4. * Author: Chris Evans
  5. * tunables.c
  6. */
  7. #include "tunables.h"
  8. #include "sysutil.h"
  9. int tunable_anonymous_enable;
  10. int tunable_local_enable;
  11. int tunable_pasv_enable;
  12. int tunable_port_enable;
  13. int tunable_chroot_local_user;
  14. int tunable_write_enable;
  15. int tunable_anon_upload_enable;
  16. int tunable_anon_mkdir_write_enable;
  17. int tunable_anon_other_write_enable;
  18. int tunable_chown_uploads;
  19. int tunable_connect_from_port_20;
  20. int tunable_xferlog_enable;
  21. int tunable_dirmessage_enable;
  22. int tunable_anon_world_readable_only;
  23. int tunable_async_abor_enable;
  24. int tunable_ascii_upload_enable;
  25. int tunable_ascii_download_enable;
  26. int tunable_one_process_model;
  27. int tunable_xferlog_std_format;
  28. int tunable_pasv_promiscuous;
  29. int tunable_deny_email_enable;
  30. int tunable_chroot_list_enable;
  31. int tunable_setproctitle_enable;
  32. int tunable_text_userdb_names;
  33. int tunable_ls_recurse_enable;
  34. int tunable_log_ftp_protocol;
  35. int tunable_guest_enable;
  36. int tunable_userlist_enable;
  37. int tunable_userlist_deny;
  38. int tunable_use_localtime;
  39. int tunable_check_shell;
  40. int tunable_hide_ids;
  41. int tunable_listen;
  42. int tunable_port_promiscuous;
  43. int tunable_passwd_chroot_enable;
  44. int tunable_no_anon_password;
  45. int tunable_tcp_wrappers;
  46. int tunable_use_sendfile;
  47. int tunable_force_dot_files;
  48. int tunable_listen_ipv6;
  49. int tunable_dual_log_enable;
  50. int tunable_syslog_enable;
  51. int tunable_background;
  52. int tunable_virtual_use_local_privs;
  53. int tunable_session_support;
  54. int tunable_download_enable;
  55. int tunable_dirlist_enable;
  56. int tunable_chmod_enable;
  57. int tunable_secure_email_list_enable;
  58. int tunable_run_as_launching_user;
  59. int tunable_no_log_lock;
  60. int tunable_ssl_enable;
  61. int tunable_allow_anon_ssl;
  62. int tunable_force_local_logins_ssl;
  63. int tunable_force_local_data_ssl;
  64. int tunable_sslv2;
  65. int tunable_sslv3;
  66. int tunable_tlsv1;
  67. int tunable_tilde_user_enable;
  68. int tunable_force_anon_logins_ssl;
  69. int tunable_force_anon_data_ssl;
  70. int tunable_mdtm_write;
  71. int tunable_lock_upload_files;
  72. int tunable_pasv_addr_resolve;
  73. int tunable_debug_ssl;
  74. int tunable_require_cert;
  75. int tunable_validate_cert;
  76. int tunable_strict_ssl_read_eof;
  77. int tunable_strict_ssl_write_shutdown;
  78. int tunable_ssl_request_cert;
  79. int tunable_delete_failed_uploads;
  80. int tunable_implicit_ssl;
  81. int tunable_ptrace_sandbox;
  82. int tunable_require_ssl_reuse;
  83. int tunable_isolate;
  84. int tunable_isolate_network;
  85. int tunable_ftp_enable;
  86. int tunable_http_enable;
  87. int tunable_seccomp_sandbox;
  88. int tunable_allow_writeable_chroot;
  89. unsigned int tunable_accept_timeout;
  90. unsigned int tunable_connect_timeout;
  91. unsigned int tunable_local_umask;
  92. unsigned int tunable_anon_umask;
  93. unsigned int tunable_ftp_data_port;
  94. unsigned int tunable_idle_session_timeout;
  95. unsigned int tunable_data_connection_timeout;
  96. unsigned int tunable_pasv_min_port;
  97. unsigned int tunable_pasv_max_port;
  98. unsigned int tunable_anon_max_rate;
  99. unsigned int tunable_local_max_rate;
  100. unsigned int tunable_listen_port;
  101. unsigned int tunable_max_clients;
  102. unsigned int tunable_file_open_mode;
  103. unsigned int tunable_max_per_ip;
  104. unsigned int tunable_trans_chunk_size;
  105. unsigned int tunable_delay_failed_login;
  106. unsigned int tunable_delay_successful_login;
  107. unsigned int tunable_max_login_fails;
  108. unsigned int tunable_chown_upload_mode;
  109. const char* tunable_secure_chroot_dir;
  110. const char* tunable_ftp_username;
  111. const char* tunable_chown_username;
  112. const char* tunable_xferlog_file;
  113. const char* tunable_vsftpd_log_file;
  114. const char* tunable_message_file;
  115. const char* tunable_nopriv_user;
  116. const char* tunable_ftpd_banner;
  117. const char* tunable_banned_email_file;
  118. const char* tunable_chroot_list_file;
  119. const char* tunable_pam_service_name;
  120. const char* tunable_guest_username;
  121. const char* tunable_userlist_file;
  122. const char* tunable_anon_root;
  123. const char* tunable_local_root;
  124. const char* tunable_banner_file;
  125. const char* tunable_pasv_address;
  126. const char* tunable_listen_address;
  127. const char* tunable_user_config_dir;
  128. const char* tunable_listen_address6;
  129. const char* tunable_cmds_allowed;
  130. const char* tunable_cmds_denied;
  131. const char* tunable_hide_file;
  132. const char* tunable_deny_file;
  133. const char* tunable_user_sub_token;
  134. const char* tunable_email_password_file;
  135. const char* tunable_rsa_cert_file;
  136. const char* tunable_dsa_cert_file;
  137. const char* tunable_ssl_ciphers;
  138. const char* tunable_rsa_private_key_file;
  139. const char* tunable_dsa_private_key_file;
  140. const char* tunable_ca_certs_file;
  141. static void install_str_setting(const char* p_value, const char** p_storage);
  142. void
  143. tunables_load_defaults()
  144. {
  145. tunable_anonymous_enable = 1;
  146. tunable_local_enable = 1;
  147. tunable_pasv_enable = 1;
  148. tunable_port_enable = 1;
  149. tunable_chroot_local_user = 1;
  150. tunable_write_enable = 0;
  151. tunable_anon_upload_enable = 0;
  152. tunable_anon_mkdir_write_enable = 0;
  153. tunable_anon_other_write_enable = 0;
  154. tunable_chown_uploads = 0;
  155. tunable_connect_from_port_20 = 0;
  156. tunable_xferlog_enable = 0;
  157. tunable_dirmessage_enable = 0;
  158. tunable_anon_world_readable_only = 1;
  159. tunable_async_abor_enable = 0;
  160. tunable_ascii_upload_enable = 0;
  161. tunable_ascii_download_enable = 0;
  162. tunable_one_process_model = 0;
  163. tunable_xferlog_std_format = 0;
  164. tunable_pasv_promiscuous = 0;
  165. tunable_deny_email_enable = 0;
  166. tunable_chroot_list_enable = 0;
  167. tunable_setproctitle_enable = 0;
  168. tunable_text_userdb_names = 0;
  169. tunable_ls_recurse_enable = 0;
  170. tunable_log_ftp_protocol = 0;
  171. tunable_guest_enable = 0;
  172. tunable_userlist_enable = 0;
  173. tunable_userlist_deny = 1;
  174. tunable_use_localtime = 0;
  175. tunable_check_shell = 0;
  176. tunable_hide_ids = 0;
  177. tunable_listen = 1;
  178. tunable_port_promiscuous = 0;
  179. tunable_passwd_chroot_enable = 0;
  180. tunable_no_anon_password = 0;
  181. tunable_tcp_wrappers = 0;
  182. tunable_use_sendfile = 1;
  183. tunable_force_dot_files = 0;
  184. tunable_listen_ipv6 = 0;
  185. tunable_dual_log_enable = 0;
  186. tunable_syslog_enable = 0;
  187. tunable_background = 0;
  188. tunable_virtual_use_local_privs = 0;
  189. tunable_session_support = 0;
  190. tunable_download_enable = 1;
  191. tunable_dirlist_enable = 1;
  192. tunable_chmod_enable = 1;
  193. tunable_secure_email_list_enable = 0;
  194. tunable_run_as_launching_user = 0;
  195. tunable_no_log_lock = 0;
  196. tunable_ssl_enable = 0;
  197. tunable_allow_anon_ssl = 0;
  198. tunable_force_local_logins_ssl = 1;
  199. tunable_force_local_data_ssl = 1;
  200. tunable_sslv2 = 0;
  201. tunable_sslv3 = 0;
  202. tunable_tlsv1 = 1;
  203. tunable_tilde_user_enable = 0;
  204. tunable_force_anon_logins_ssl = 0;
  205. tunable_force_anon_data_ssl = 0;
  206. tunable_mdtm_write = 1;
  207. tunable_lock_upload_files = 1;
  208. tunable_pasv_addr_resolve = 0;
  209. tunable_debug_ssl = 0;
  210. tunable_require_cert = 0;
  211. tunable_validate_cert = 0;
  212. tunable_strict_ssl_read_eof = 1;
  213. tunable_strict_ssl_write_shutdown = 0;
  214. tunable_ssl_request_cert = 1;
  215. tunable_delete_failed_uploads = 0;
  216. tunable_implicit_ssl = 0;
  217. tunable_ptrace_sandbox = 0;
  218. tunable_require_ssl_reuse = 1;
  219. tunable_isolate = 1;
  220. tunable_isolate_network = 1;
  221. tunable_ftp_enable = 1;
  222. tunable_http_enable = 0;
  223. tunable_seccomp_sandbox = 1;
  224. tunable_allow_writeable_chroot = 1;
  225. tunable_accept_timeout = 60;
  226. tunable_connect_timeout = 60;
  227. tunable_local_umask = 077;
  228. tunable_anon_umask = 077;
  229. tunable_ftp_data_port = 20;
  230. tunable_idle_session_timeout = 60;
  231. tunable_data_connection_timeout = 60;
  232. /* IPPORT_USERRESERVED + 1 */
  233. tunable_pasv_min_port = 5001;
  234. tunable_pasv_max_port = 0;
  235. tunable_anon_max_rate = 0;
  236. tunable_local_max_rate = 0;
  237. /* IPPORT_FTP */
  238. tunable_listen_port = 21;
  239. tunable_max_clients = 4;
  240. /* -rw-rw-rw- */
  241. tunable_file_open_mode = 0666;
  242. tunable_max_per_ip = 50;
  243. tunable_trans_chunk_size = 0;
  244. tunable_delay_failed_login = 1;
  245. tunable_delay_successful_login = 0;
  246. tunable_max_login_fails = 3;
  247. /* -rw------- */
  248. tunable_chown_upload_mode = 0600;
  249. install_str_setting("/usr/share/empty", &tunable_secure_chroot_dir);
  250. install_str_setting("ftp", &tunable_ftp_username);
  251. install_str_setting("root", &tunable_chown_username);
  252. install_str_setting("/var/log/xferlog", &tunable_xferlog_file);
  253. install_str_setting("/var/log/ftpz.log", &tunable_vsftpd_log_file);
  254. install_str_setting(".message", &tunable_message_file);
  255. install_str_setting("nobody", &tunable_nopriv_user);
  256. install_str_setting(0, &tunable_ftpd_banner);
  257. install_str_setting("/etc/ftpz.banned_emails", &tunable_banned_email_file);
  258. install_str_setting("/etc/ftpz.chroot_list", &tunable_chroot_list_file);
  259. install_str_setting("ftp", &tunable_pam_service_name);
  260. install_str_setting("ftp", &tunable_guest_username);
  261. install_str_setting("/etc/ftpz.user_list", &tunable_userlist_file);
  262. install_str_setting(0, &tunable_anon_root);
  263. //install_str_setting(0, &tunable_local_root);
  264. install_str_setting("/home/PETtrace/logfiles", &tunable_local_root);
  265. install_str_setting(0, &tunable_banner_file);
  266. install_str_setting(0, &tunable_pasv_address);
  267. install_str_setting(0, &tunable_listen_address);
  268. install_str_setting(0, &tunable_user_config_dir);
  269. install_str_setting(0, &tunable_listen_address6);
  270. install_str_setting(0, &tunable_cmds_allowed);
  271. install_str_setting(0, &tunable_cmds_denied);
  272. install_str_setting(0, &tunable_hide_file);
  273. install_str_setting(0, &tunable_deny_file);
  274. install_str_setting(0, &tunable_user_sub_token);
  275. install_str_setting("/etc/ftpz.email_passwords",
  276. &tunable_email_password_file);
  277. install_str_setting("/usr/share/ssl/certs/ftpz.pem",
  278. &tunable_rsa_cert_file);
  279. install_str_setting(0, &tunable_dsa_cert_file);
  280. install_str_setting("ECDHE-RSA-AES256-GCM-SHA384", &tunable_ssl_ciphers);
  281. install_str_setting(0, &tunable_rsa_private_key_file);
  282. install_str_setting(0, &tunable_dsa_private_key_file);
  283. install_str_setting(0, &tunable_ca_certs_file);
  284. }
  285. void
  286. install_str_setting(const char* p_value, const char** p_storage)
  287. {
  288. char* p_curr_val = (char*) *p_storage;
  289. if (p_curr_val != 0)
  290. {
  291. vsf_sysutil_free(p_curr_val);
  292. }
  293. if (p_value != 0)
  294. {
  295. p_value = vsf_sysutil_strdup(p_value);
  296. }
  297. *p_storage = p_value;
  298. }