Home
last modified time | relevance | path

Searched refs:php_check_open_basedir (Results 1 – 25 of 38) sorted by relevance

12

/PHP-8.0/ext/standard/
H A Dlink.c70 if (php_check_open_basedir(link)) { in PHP_FUNCTION()
107 if (php_check_open_basedir(dirname)) { in PHP_FUNCTION()
160 if (php_check_open_basedir(dest_p)) { in PHP_FUNCTION()
164 if (php_check_open_basedir(source_p)) { in PHP_FUNCTION()
208 if (php_check_open_basedir(dest_p)) { in PHP_FUNCTION()
212 if (php_check_open_basedir(source_p)) { in PHP_FUNCTION()
H A Dftok.c52 if (php_check_open_basedir(pathname)) { in PHP_FUNCTION()
H A Dfilestat.c200 if (php_check_open_basedir(fullpath)) { in PHP_FUNCTION()
297 if (php_check_open_basedir(fullpath)) { in PHP_FUNCTION()
398 if (php_check_open_basedir(filename)) { in php_do_chgrp()
525 if (php_check_open_basedir(filename)) { in php_do_chown()
593 if (php_check_open_basedir(filename)) { in PHP_FUNCTION()
670 if (php_check_open_basedir(filename)) { in PHP_FUNCTION()
756 …e_url_wrapper(filename, &local, 0)) == &php_plain_files_wrapper && php_check_open_basedir(local)) { in php_stat()
H A Diptc.c191 if (php_check_open_basedir(jpeg_file)) { in PHP_FUNCTION()
H A Ddir.c312 if (php_check_open_basedir(str)) { in PHP_FUNCTION()
H A Dbasic_functions.c1870 if (php_check_open_basedir(filename)) {
2120 if (php_check_open_basedir(ZSTR_VAL(new_value))) {
2492 if (php_check_open_basedir(new_path)) {
H A Dfile.c1257 if (php_check_open_basedir(dir)) { in php_mkdir_ex()
1596 …ocate_url_wrapper(source, NULL, 0) == &php_plain_files_wrapper && php_check_open_basedir(source)) { in PHP_FUNCTION()
2276 if (php_check_open_basedir(resolved_path_buff)) { in PHP_FUNCTION()
/PHP-8.0/main/
H A Dfopen_wrappers.h29 PHPAPI int php_check_open_basedir(const char *path);
34 #define OPENBASEDIR_CHECKPATH(filename) php_check_open_basedir(filename)
H A Dphp_open_temporary_file.c304 … (!(flags & PHP_TMP_FILE_OPEN_BASEDIR_CHECK_ON_FALLBACK) || !php_check_open_basedir(temp_dir))) { in php_open_temporary_fd_ex()
311 if ((flags & PHP_TMP_FILE_OPEN_BASEDIR_CHECK_ON_EXPLICIT_DIR) && php_check_open_basedir(dir)) { in php_open_temporary_fd_ex()
H A Dfopen_wrappers.c273 PHPAPI int php_check_open_basedir(const char *path) function
331 if (php_check_open_basedir((char *)path)) {
/PHP-8.0/ext/gd/
H A Dphp_gd.h25 if (!filename || php_check_open_basedir(filename)) { \
/PHP-8.0/ext/zip/
H A Dphp_zip.h36 #define ZIP_OPENBASEDIR_CHECKPATH(filename) php_check_open_basedir(filename)
/PHP-8.0/main/streams/
H A Dplain_wrapper.c1024 if (((options & STREAM_DISABLE_OPEN_BASEDIR) == 0) && php_check_open_basedir(path)) { in php_plain_files_dir_opener()
1154 if (((options & STREAM_DISABLE_OPEN_BASEDIR) == 0) && php_check_open_basedir(path)) { in php_plain_files_stream_opener()
1193 if (php_check_open_basedir(url)) { in php_plain_files_unlink()
1238 if (php_check_open_basedir(url_from) || php_check_open_basedir(url_to)) { in php_plain_files_rename()
1403 if (php_check_open_basedir(url)) { in php_plain_files_rmdir()
1446 if (php_check_open_basedir(url)) { in php_plain_files_metadata()
1564 if (((options & STREAM_DISABLE_OPEN_BASEDIR) == 0) && php_check_open_basedir(filename)) { in _php_stream_fopen_with_path()
1576 if (((options & STREAM_DISABLE_OPEN_BASEDIR) == 0) && php_check_open_basedir(filename)) { in _php_stream_fopen_with_path()
1597 if (((options & STREAM_DISABLE_OPEN_BASEDIR) == 0) && php_check_open_basedir(trypath)) { in _php_stream_fopen_with_path()
H A Dglob_wrapper.c211 if (((options & STREAM_DISABLE_OPEN_BASEDIR) == 0) && php_check_open_basedir(path)) { in php_glob_stream_opener()
/PHP-8.0/ext/pspell/
H A Dpspell.c252 if (php_check_open_basedir(personal)) { in PHP_FUNCTION()
662 if (php_check_open_basedir(value)) { in pspell_config_path()
708 if (php_check_open_basedir(repl)) { in PHP_FUNCTION()
/PHP-8.0/ext/readline/
H A Dreadline.c367 if (arg && php_check_open_basedir(arg)) { in PHP_FUNCTION()
391 if (arg && php_check_open_basedir(arg)) { in PHP_FUNCTION()
/PHP-8.0/ext/session/
H A Dmod_files.c188 …if(PG(open_basedir) && lstat(buf, &sbuf) == 0 && S_ISLNK(sbuf.st_mode) && php_check_open_basedir(b… in ps_files_open()
382 if (php_check_open_basedir(save_path)) { in PS_OPEN_FUNC()
/PHP-8.0/ext/com_dotnet/
H A Dcom_persist.c385 if (php_check_open_basedir(fullpath)) { in CPH_METHOD()
444 if (php_check_open_basedir(fullpath)) { in CPH_METHOD()
/PHP-8.0/ext/fileinfo/
H A Dfileinfo.c238 if (php_check_open_basedir(file)) { in PHP_FUNCTION()
/PHP-8.0/ext/bz2/
H A Dbz2.c202 if (php_check_open_basedir(path_copy)) { in _php_stream_bz2open()
/PHP-8.0/ext/enchant/
H A Denchant.c492 if (php_check_open_basedir(pwl)) { in PHP_FUNCTION()
/PHP-8.0/ext/pdo_sqlite/
H A Dsqlite_driver.c731 if (php_check_open_basedir(fullpath)) { in make_filename_safe()
/PHP-8.0/ext/sqlite3/
H A Dsqlite3.c123 if (php_check_open_basedir(fullpath)) { in PHP_METHOD()
2061 if (php_check_open_basedir(arg1 + 5)) { in php_sqlite3_authorizer()
2065 if (php_check_open_basedir(arg1)) { in php_sqlite3_authorizer()
/PHP-8.0/ext/oci8/
H A Doci8_lob.c713 if (php_check_open_basedir(filename)) { in php_oci_lob_import()
/PHP-8.0/ext/xsl/
H A Dxsltprocessor.c429 if (php_check_open_basedir(intern->profiling)) { in php_xsl_apply_stylesheet()

Completed in 85 milliseconds

12