realpath has a race condition which might cause it to throw spurious exceptions

オープン
#97,566 コメント 2 件 リアクション 0 件 担当者 0 名 GitHub で見る

まだ誰も着手していません。

評価

難易度
3/5
見積もり時間
1〜2日
初心者へのやさしさ
42/100
issue の種類
バグ
明瞭さ
おおむね明確
活発さ
停滞
技術スタック
python

調査の方向性

Issue にリンクされている realpath の再現手順から始め、そこで説明されている islink/readlink のシーケンスを追跡します。これらの操作の間に symlink が削除された場合の失敗を確認します。完了の条件は、その race で realpath が誤った Exception を発生させなくなり、この動作に対するリグレッションカバレッジがあることです。

索引モデルが issue の本文から書いたものです。

説明

3.10 3.11 3.12 extension-modules type-bug

Bug report

realpath tests if a file is a symlink using islink, which just returns False if the file does not exist. But then uses readlink a bit later to test the source of the link, which throws an exception if the file does not exists. If the file is a symlink and is deleted between islink and readlink, we get a spurious exception.

This reproduces the error using code copy-pasted from Python 3.9: https://gist.github.com/bitonic/e0977aaa674523a9ffe0e77a96cd6cc7 .

Your environment

  • CPython 3.9
  • ArchLinux x86_64
主要言語
Python
スター
77.2k
フォーク
36k
平均マージ
1日 9時間
マージ済み PR(30日)
558

コントリビューションガイド

コントリビューションガイドを開く

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

python/cpython のほかの issue

python/cpython の issue をすべて見る

似ている issue

Python の issue をもっと見る

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。