php / php/php-src

`is_readable()` and `is_writable()` return false negative on Win32's network-mapped drives

Ouverte
#12,744 8 commentaires 0 réactions 0 personnes assignées Voir sur GitHub

Personne n'a encore pris cette issue.

Bug Category: Filesystem OS: Windows Status: Verified
Langage dominant
C
Étoiles
40.4k
Forks
8.1k
Merge moyen
2 j 13 h
PR mergées (30 j)
96

Description

Description

Hi there, good morning PHP team!

I'm working with PHP-CLI on Windows, and part of my project checks if a file path is readable and/or writable. This works as expected if the file in in the local disk, such as C:\.

However, Windows has a feature named network-mapped drives where you can "mount" a shared folder from another host to appear as a local disk, for example the SMB network share \\computername\foo\bar can be "mounted" to Z:\. In this case, calls to file_get_contents() and file_put_contents() will actually succeed, but the corresponding calls to is_readable() and is_writable() will return false.

Consider the following code:

$my_file = "Z:\\Users\\David\\File.txt";

var_dump(
    is_readable($my_file),
    is_writable($my_file),
    file_get_contents($my_file));

This results in this output:

bool(false)
bool(false)
string(34) "I am the content of the `my_file`!"

But I expect the following output:

bool(true)
bool(true)
string(34) "I am the content of the `my_file`!"

I was curious about this behavior, so I read the documentation for is_readable(), and the only piece of useful info I found is a very old user notes contribution that says:

..."is_readable() checks whether you can do file_get_contents() or similar calls, no more, no less."
~ jo at durchholz dot org

This doesn't seem right to me, because as you can see, the file_get_contents() is clearly succeeding while the is_readable() call is failing.

Please note that the PHP-CLI is running through command line with my own user account, not as some service where it wouldn't have access to the network-mapped drive.

So, I'm curious why this happens. Can you please link me to the relevant part of the source tree that implements is_readable() and is_writable()? I'm curious why this issue exists.

Thanks!

PHP Version

PHP 8.1.13

Operating System

Windows 11 Enterprise 22H2

Guide de contribution

Ouvrir le guide de contribution

Par où commencer

  1. Lisez l'issue en entier, puis le guide de contribution du projet.
  2. Signalez en commentaire que vous la prenez — cela évite que deux personnes fassent le même travail.
  3. Forkez le dépôt et travaillez sur une branche.
  4. Ouvrez une pull request qui référence le numéro de l'issue.

Piste de recherche

Commencez par localiser les implémentations de is_readable() et is_writable() dans l’arborescence des sources, puis reproduisez le comportement signalé sous Windows 11 avec l’exemple fourni pour PHP 8.1.13 et un lecteur mappé sur le réseau. Comparez ces vérifications avec file_get_contents() et file_put_contents() ; le travail est terminé lorsque la cause a été identifiée et que la divergence a été documentée ou corrigée.

Rédigé par le modèle d'indexation à partir du texte de l'issue.

Évaluation

Stack technique
c, php
Domaine
operating-systems
Type d'issue
Bug
Difficulté
4/5
Temps estimé
3-5 jours
Activité
À l'abandon
Clarté
À clarifier
Accessibilité débutants
35/100

Recevez les nouvelles issues par e-mail

Un résumé court des issues GitHub adaptées aux débutants.