Backport(バックポート) #1998
完了Installing some plugins were failed with PHP 5.3.4+ (PHP 5.3.4 以上でプラグインの展開に失敗することがある)
100%
説明
Overview (現象)¶
Executing opPlugin:install was failed with the following error.
opPlugin:install の実行が以下のエラーによって失敗することがある。
Installation of "opAuthMobileUIDPlugin" plugin failed: unable to unpack /path/to/OpenPNE3/cache/.pear/opAuthMobileUIDPlugin-1.0.0.tgz
Causes (原因)¶
Executing opPlugin:install was failed on extracting a long-named file in plugin package.
Tar can't put >= 100 bytes filename in a header (this limitation comes from the specification). So some derived tar specs are able to do it for using special ways.
Archive_Tar follows GNU tar specification. This specification allows to store filename in fixed length content part. Content of that part must be 512 bytes, so archivers cover the deficits by using NULL.
Archive_Tar 1.3.2, which is used by OpenPNE 3, doesn't consider NULL after the long filename. It try to open file handler for writing filename with NULL by using fopen(). On PHP 5.3.3 and before, fopen() recognizes that end of the filename is first NULL, as a result, that file was written correctly. However on PHP 5.3.4 and after, failed to open that file and failed to extract that file because that version of PHP has the following changes for preventing NULL-byte attack.
http://svn.php.net/viewvc?view=revision&revision=305507
プラグインパッケージ内の長い名前を持ったファイルを展開する場面で opPlugin:install の実行が失敗する。
tar は仕様上の制限によりヘッダに 100 バイト以上のファイル名を格納することができない。そのため、派生した tar の仕様では特別な方法によりそれを可能にしているものがある。
Archive_Tar は GNU tar の仕様に従っている。この仕様は固定長のコンテンツ部にファイル名を格納することを可能にしているものである。このパートの内容は 512 バイトでなければならないため、アーカイバは NULL を用いることで不足を埋めている。
OpenPNE 3 で用いている Archive_Tar 1.3.2 は後続の NULL を考慮しておらず、 fopen() で NULL バイト付きファイル名の書き込み用にファイルハンドラをオープンしようとする。 PHP 5.3.3 以前では最初の NULL がファイル名の終端としてみなされ、結果的には Archive_Tar の想定通りにファイルが書き込まれる。ところが、 PHP 5.3.4 からは NULL byte attack の対策として以下の変更がおこなわれているため、ファイルのオープンがおこなえず、そのファイルの抽出に失敗してしまう。
http://svn.php.net/viewvc?view=revision&revision=305507
Way to fix (修正内容)¶
- For development versions (3.6 and 3.7) (開発版 3.6, 3.7 向けの修正): update Archive_Tar 1.3.7 (Archive_Tar を 1.3.7 にアップデートする)
- For (old) stable versions (3.4, 3.2 and 3.0) ((旧)安定板 3.4, 3.2, 3.0 向けの変更): apply the following changes to bundled Archive_Tar (次の変更を同梱の Archive_Tar に適用する): http://svn.php.net/viewvc?view=revision&revision=241532, http://svn.php.net/viewvc?view=revision&revision=268047, http://svn.php.net/viewvc?view=revision&revision=287108 and http://svn.php.net/viewvc?view=revision&revision=287467
関連情報¶
Kousuke Ebihara さんが13年以上前に更新
- ステータス を New(新規) から Accepted(着手) に変更
- 担当者 を Kousuke Ebihara にセット
Kousuke Ebihara さんが13年以上前に更新
http://redmine.openpne.jp/issues/1908#note-4 に記載のとおり、 3.2 では必要最低限度の修正のみを抜き出したパッチを適用することで対応をおこないます。
Kousuke Ebihara さんが13年以上前に更新
- ステータス を Accepted(着手) から Pending Review(レビュー待ち) に変更
- 進捗率 を 0 から 50 に変更
更新履歴 c117039ef1f03d299e268037aa883511d1891ff6 で適用されました。
Kousuke Ebihara さんが13年以上前に更新
- 題名 を プラグインのtgzファイル名に不要なスペースがつくことがある から Installing some plugins were failed with PHP 5.3.4+ (PHP 5.3.4 以上でプラグインの展開に失敗することがある) に変更
Kousuke Ebihara さんが13年以上前に更新
緊急リリース後のマージ作業の関係で、 stable ブランチから変更を一時的に取り除きました。 b0614c298380610ebb288fe214e1f271d17f651c のコミットがリリースブランチへの変更となります。
Rimpei Ogawa さんが13年以上前に更新
- ステータス を Pending Review(レビュー待ち) から Pending Testing(テスト待ち) に変更
- 進捗率 を 50 から 70 に変更
release-3.2.7.5 ブランチの変更および、stable-3.2.x ブランチの変更取り消し確認OKです。
Mutsumi Imamura さんが13年以上前に更新
- ステータス を Pending Testing(テスト待ち) から Fixed(完了) に変更
- 進捗率 を 70 から 100 に変更
http://redmine.openpne.jp/issues/1908#note-8 のコメントの通りテスト完了しています。