Home
last modified time | relevance | path

Searched refs:php_check_open_basedir (Results 1 – 25 of 39) sorted by last modified time

12

/PHP-7.2/ext/openssl/
H A Dopenssl.c780 if (php_check_open_basedir(filename)) { in php_openssl_open_base_dir_chk()
/PHP-7.2/ext/session/
H A Dsession.c642 if (PG(open_basedir) && *p && php_check_open_basedir(p)) { in PHP_INI_MH()
H A Dmod_files.c190 …if(PG(open_basedir) && lstat(buf, &sbuf) == 0 && S_ISLNK(sbuf.st_mode) && php_check_open_basedir(b… in ps_files_open()
385 if (php_check_open_basedir(save_path)) { in PS_OPEN_FUNC()
/PHP-7.2/ext/phar/
H A Dphar_object.c1632 if (php_check_open_basedir(fname)) { in phar_build()
3944 if (!strstr(fname, "://") && php_check_open_basedir(fname)) { in PHP_METHOD()
4270 if (php_check_open_basedir(fullpath)) { in phar_extract_file()
/PHP-7.2/ext/standard/
H A Dlink_win32.c102 if (php_check_open_basedir(dirname)) { in PHP_FUNCTION()
H A Diptc.c207 if (php_check_open_basedir(jpeg_file)) { in PHP_FUNCTION()
H A Dlink.c66 if (php_check_open_basedir(link)) { in PHP_FUNCTION()
100 if (php_check_open_basedir(dirname)) { in PHP_FUNCTION()
154 if (php_check_open_basedir(dest_p)) { in PHP_FUNCTION()
158 if (php_check_open_basedir(source_p)) { in PHP_FUNCTION()
203 if (php_check_open_basedir(dest_p)) { in PHP_FUNCTION()
207 if (php_check_open_basedir(source_p)) { in PHP_FUNCTION()
H A Dftok.c57 if (php_check_open_basedir(pathname)) { in PHP_FUNCTION()
H A Ddir.c333 if (php_check_open_basedir(str)) { in PHP_FUNCTION()
H A Dfile.c829 if (php_check_open_basedir(dir)) { in PHP_FUNCTION()
1314 if (php_check_open_basedir(dir)) { in php_mkdir_ex()
1669 if (php_check_open_basedir(source)) { in PHP_FUNCTION()
2361 if (php_check_open_basedir(resolved_path_buff)) { in PHP_FUNCTION()
H A Dfilestat.c193 if (php_check_open_basedir(path)) { in PHP_FUNCTION()
286 if (php_check_open_basedir(path)) { in PHP_FUNCTION()
391 if (php_check_open_basedir(filename)) { in php_do_chgrp()
528 if (php_check_open_basedir(filename)) { in php_do_chown()
603 if (php_check_open_basedir(filename)) { in PHP_FUNCTION()
688 if (php_check_open_basedir(filename)) { in PHP_FUNCTION()
780 …e_url_wrapper(filename, &local, 0)) == &php_plain_files_wrapper && php_check_open_basedir(local)) { in php_stat()
H A Dbasic_functions.c5229 if (php_check_open_basedir(filename)) {
5498 if (php_check_open_basedir(ZSTR_VAL(new_value))) {
5899 if (php_check_open_basedir(new_path)) {
/PHP-7.2/main/streams/
H A Dplain_wrapper.c945 if (((options & STREAM_DISABLE_OPEN_BASEDIR) == 0) && php_check_open_basedir(path)) { in php_plain_files_dir_opener()
1073 if (((options & STREAM_DISABLE_OPEN_BASEDIR) == 0) && php_check_open_basedir(path)) { in php_plain_files_stream_opener()
1112 if (php_check_open_basedir(url)) { in php_plain_files_unlink()
1157 if (php_check_open_basedir(url_from) || php_check_open_basedir(url_to)) { in php_plain_files_rename()
1322 if (php_check_open_basedir(url)) { in php_plain_files_rmdir()
1365 if (php_check_open_basedir(url)) { in php_plain_files_metadata()
1482 if (((options & STREAM_DISABLE_OPEN_BASEDIR) == 0) && php_check_open_basedir(filename)) { in _php_stream_fopen_with_path()
1494 if (((options & STREAM_DISABLE_OPEN_BASEDIR) == 0) && php_check_open_basedir(filename)) { in _php_stream_fopen_with_path()
1515 if (((options & STREAM_DISABLE_OPEN_BASEDIR) == 0) && php_check_open_basedir(trypath)) { in _php_stream_fopen_with_path()
H A Dglob_wrapper.c223 if (((options & STREAM_DISABLE_OPEN_BASEDIR) == 0) && php_check_open_basedir(path)) { in php_glob_stream_opener()
/PHP-7.2/main/
H A Dphp_open_temporary_file.c303 …p_dir != '\0' && (!(flags & PHP_TMP_FILE_OPEN_BASEDIR_CHECK) || !php_check_open_basedir(temp_dir))… in php_open_temporary_fd_ex()
H A Dmain.c486 if (PG(open_basedir) && php_check_open_basedir(ZSTR_VAL(new_value))) { in PHP_INI_MH()
501 if (PG(open_basedir) && php_check_open_basedir(ZSTR_VAL(new_value))) { in PHP_INI_MH()
H A Dfopen_wrappers.c275 PHPAPI int php_check_open_basedir(const char *path) function
335 if (php_check_open_basedir((char *)path)) {
H A Dfopen_wrappers.h33 PHPAPI int php_check_open_basedir(const char *path);
38 #define OPENBASEDIR_CHECKPATH(filename) php_check_open_basedir(filename)
/PHP-7.2/ext/zip/
H A Dphp_zip.h42 #define ZIP_OPENBASEDIR_CHECKPATH(filename) php_check_open_basedir(filename)
/PHP-7.2/ext/xsl/
H A Dxsltprocessor.c507 if (php_check_open_basedir(intern->profiling)) { in php_xsl_apply_stylesheet()
/PHP-7.2/ext/tidy/
H A Dtidy.c159 if (php_check_open_basedir(filename)) { \
/PHP-7.2/ext/sqlite3/
H A Dsqlite3.c129 if (php_check_open_basedir(fullpath)) { in PHP_METHOD()
2079 if (php_check_open_basedir(arg3 + 5)) { in php_sqlite3_authorizer()
2083 if (php_check_open_basedir(arg3)) { in php_sqlite3_authorizer()
/PHP-7.2/ext/soap/
H A Dsoap.c505 if (PG(open_basedir) && *p && php_check_open_basedir(p)) { in PHP_INI_MH()
/PHP-7.2/ext/readline/
H A Dreadline.c415 if (arg && php_check_open_basedir(arg)) { in PHP_FUNCTION()
440 if (arg && php_check_open_basedir(arg)) { in PHP_FUNCTION()
/PHP-7.2/ext/pspell/
H A Dpspell.c409 if (php_check_open_basedir(personal)) { in PHP_FUNCTION()
831 if (php_check_open_basedir(value)) { in pspell_config_path()
881 if (php_check_open_basedir(repl)) { in PHP_FUNCTION()

Completed in 136 milliseconds

12