#43854 [Opn]: Wrong length calculation in serialize S type

2008-01-15 Thread felipe
 ID:   43854
 Updated by:   [EMAIL PROTECTED]
 Reported By:  tomasz dot rutkowski at domeny dot pl
 Status:   Open
 Bug Type: Arrays related
 Operating System: Linux
 PHP Version:  5.2.5
 New Comment:

Clarifying... The last code. (Prepared array)


Previous Comments:


[2008-01-15 16:12:04] [EMAIL PROTECTED]

The example works fine in PHP5.2.5, 5.2.6, 5.3.



[2008-01-15 15:32:04] tomasz dot rutkowski at domeny dot pl

Sorry

Bad: Perhaps it is liberty problem.
Good: Probably it is a library problem.



[2008-01-15 15:24:56] tomasz dot rutkowski at domeny dot pl

Sorry but I can't reconstruct this bug.
Admin change PHP verions on my demand.
This is productive server and they can't back to error version.

On similar server this bug is not reported :(
Perhaps it is liberty problem.


Example code:

';

/* Good - fixed by me */
$fix_serialize = 'a:3:{i:0;a:4:{i:0;a:7:{i:0;i:69;i:1;s:34:"Lakier do
wzorków czarny
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"82";}i:1;a:7:{i:0;i:70;i:1;s:47:"Lakier
do wzorków czarny perłowy
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"99";}i:2;a:7:{i:0;i:65;i:1;s:38:"Lakier
do wzorków biały
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"85";}i:3;a:7:{i:0;i:75;i:1;s:28:"Lakier
utrwalający
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"92";}}i:1;a:3:{i:0;s:2:"75";i:1;s:28:"Lakier
utrwalający
10ml";i:2;d:12.9902131628207280300557613372802734375;}i:2;i:13;}';
var_dump( unserialize( $fix_serialize ) );
echo '';

/* Prepared array */
$prepare_array = array( 
  array( 
array( 69, (string) "Lakier do wzorków czarny 10ml", (float)
19.98, 1, (float) 19.98, (string) "", (string) "82" ),
array( 70, (string) "Lakier do wzorków czarny perłowy
10ml", (float) 19.98, 1, (float) 19.98, (string) "", (string) "99" ),
array( 65, "Lakier do wzorków biały 10ml", (float) 19.98,
1, (float) 19.98, (string) "",(string) "85" ),
array( 75, (string) "Lakier utrwalający 10ml", (float) 19.98,
1, (float) 19.98, (string) "", (string) "92" )
  ),
  array( (string) "75", (string) "Lakier utrwalający 10ml",
(float) 12.99 ),
  2=> 13
);

$tmp = serialize( $prepare_array );
var_dump( unserialize( $tmp ) );
?>



[2008-01-15 12:12:39] [EMAIL PROTECTED]

Thank you for this bug report. To properly diagnose the problem, we
need a short but complete example script to be able to reproduce
this bug ourselves. 

A proper reproducing script starts with ,
is max. 10-20 lines long and does not require any external 
resources such as databases, etc. If the script requires a 
database to demonstrate the issue, please make sure it creates 
all necessary tables, stored procedures etc.

Please avoid embedding huge scripts into the report.



[2008-01-15 11:44:25] tomasz dot rutkowski at domeny dot pl

Description:

PHP 5.2.5 bad serialize string into multiarray.
This bug is only into PHP 5.2.5 .
PHP 5.2.4 is good.


Reproduce code:
---
$bad_serialized_multiarray =
'a:3:{i:0;a:4:{i:0;a:7:{i:0;i:69;i:1;s:30:"Lakier do wzorków czarny
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"82";}i:1;a:7:{i:0;i:70;i:1;s:43:"Lakier
do wzorków czarny perłowy
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"99";}i:2;a:7:{i:0;i:65;i:1;s:34:"Lakier
do wzorków biały
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"85";}i:3;a:7:{i:0;i:75;i:1;s:28:"Lakier
utrwalający
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"92";}}i:1;a:3:{i:0;s:2:"75";i:1;s:28:"Lakier
utrwalający
10ml";i:2;d:12.9902131628207280300557613372802734375;}i:2;i:13;}';

$fix_serialized_multiarray =
'a:3:{i:0;a:4:{i:0;a:7:{i:0;i:69;i:1;s:34:"Lakier do wzorków czarny
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"82";}i:1;a:7:{

#43854 [Opn]: Wrong length calculation in serialize S type

2008-01-15 Thread felipe
 ID:   43854
 Updated by:   [EMAIL PROTECTED]
 Reported By:  tomasz dot rutkowski at domeny dot pl
 Status:   Open
 Bug Type: Arrays related
 Operating System: Linux
 PHP Version:  5.2.5
 New Comment:

The example works fine in PHP5.2.5, 5.2.6, 5.3.


Previous Comments:


[2008-01-15 15:32:04] tomasz dot rutkowski at domeny dot pl

Sorry

Bad: Perhaps it is liberty problem.
Good: Probably it is a library problem.



[2008-01-15 15:24:56] tomasz dot rutkowski at domeny dot pl

Sorry but I can't reconstruct this bug.
Admin change PHP verions on my demand.
This is productive server and they can't back to error version.

On similar server this bug is not reported :(
Perhaps it is liberty problem.


Example code:

';

/* Good - fixed by me */
$fix_serialize = 'a:3:{i:0;a:4:{i:0;a:7:{i:0;i:69;i:1;s:34:"Lakier do
wzorków czarny
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"82";}i:1;a:7:{i:0;i:70;i:1;s:47:"Lakier
do wzorków czarny perłowy
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"99";}i:2;a:7:{i:0;i:65;i:1;s:38:"Lakier
do wzorków biały
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"85";}i:3;a:7:{i:0;i:75;i:1;s:28:"Lakier
utrwalający
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"92";}}i:1;a:3:{i:0;s:2:"75";i:1;s:28:"Lakier
utrwalający
10ml";i:2;d:12.9902131628207280300557613372802734375;}i:2;i:13;}';
var_dump( unserialize( $fix_serialize ) );
echo '';

/* Prepared array */
$prepare_array = array( 
  array( 
array( 69, (string) "Lakier do wzorków czarny 10ml", (float)
19.98, 1, (float) 19.98, (string) "", (string) "82" ),
array( 70, (string) "Lakier do wzorków czarny perłowy
10ml", (float) 19.98, 1, (float) 19.98, (string) "", (string) "99" ),
array( 65, "Lakier do wzorków biały 10ml", (float) 19.98,
1, (float) 19.98, (string) "",(string) "85" ),
array( 75, (string) "Lakier utrwalający 10ml", (float) 19.98,
1, (float) 19.98, (string) "", (string) "92" )
  ),
  array( (string) "75", (string) "Lakier utrwalający 10ml",
(float) 12.99 ),
  2=> 13
);

$tmp = serialize( $prepare_array );
var_dump( unserialize( $tmp ) );
?>



[2008-01-15 12:12:39] [EMAIL PROTECTED]

Thank you for this bug report. To properly diagnose the problem, we
need a short but complete example script to be able to reproduce
this bug ourselves. 

A proper reproducing script starts with ,
is max. 10-20 lines long and does not require any external 
resources such as databases, etc. If the script requires a 
database to demonstrate the issue, please make sure it creates 
all necessary tables, stored procedures etc.

Please avoid embedding huge scripts into the report.



[2008-01-15 11:44:25] tomasz dot rutkowski at domeny dot pl

Description:

PHP 5.2.5 bad serialize string into multiarray.
This bug is only into PHP 5.2.5 .
PHP 5.2.4 is good.


Reproduce code:
---
$bad_serialized_multiarray =
'a:3:{i:0;a:4:{i:0;a:7:{i:0;i:69;i:1;s:30:"Lakier do wzorków czarny
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"82";}i:1;a:7:{i:0;i:70;i:1;s:43:"Lakier
do wzorków czarny perłowy
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"99";}i:2;a:7:{i:0;i:65;i:1;s:34:"Lakier
do wzorków biały
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"85";}i:3;a:7:{i:0;i:75;i:1;s:28:"Lakier
utrwalający
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"92";}}i:1;a:3:{i:0;s:2:"75";i:1;s:28:"Lakier
utrwalający
10ml";i:2;d:12.9902131628207280300557613372802734375;}i:2;i:13;}';

$fix_serialized_multiarray =
'a:3:{i:0;a:4:{i:0;a:7:{i:0;i:69;i:1;s:34:"Lakier do wzorków czarny
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"82";}i:1;a:7:{i:0;i:70;i:1;s:47:"Lakier
do wzorków czarny perłowy
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.98042632564145606

#43854 [Opn]: Wrong length calculation in serialize S type

2008-01-15 Thread tomasz dot rutkowski at domeny dot pl
 ID:   43854
 User updated by:  tomasz dot rutkowski at domeny dot pl
 Reported By:  tomasz dot rutkowski at domeny dot pl
 Status:   Open
 Bug Type: Arrays related
 Operating System: Linux
 PHP Version:  5.2.5
 New Comment:

Sorry

Bad: Perhaps it is liberty problem.
Good: Probably it is a library problem.


Previous Comments:


[2008-01-15 15:24:56] tomasz dot rutkowski at domeny dot pl

Sorry but I can't reconstruct this bug.
Admin change PHP verions on my demand.
This is productive server and they can't back to error version.

On similar server this bug is not reported :(
Perhaps it is liberty problem.


Example code:

';

/* Good - fixed by me */
$fix_serialize = 'a:3:{i:0;a:4:{i:0;a:7:{i:0;i:69;i:1;s:34:"Lakier do
wzorków czarny
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"82";}i:1;a:7:{i:0;i:70;i:1;s:47:"Lakier
do wzorków czarny perłowy
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"99";}i:2;a:7:{i:0;i:65;i:1;s:38:"Lakier
do wzorków biały
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"85";}i:3;a:7:{i:0;i:75;i:1;s:28:"Lakier
utrwalający
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"92";}}i:1;a:3:{i:0;s:2:"75";i:1;s:28:"Lakier
utrwalający
10ml";i:2;d:12.9902131628207280300557613372802734375;}i:2;i:13;}';
var_dump( unserialize( $fix_serialize ) );
echo '';

/* Prepared array */
$prepare_array = array( 
  array( 
array( 69, (string) "Lakier do wzorków czarny 10ml", (float)
19.98, 1, (float) 19.98, (string) "", (string) "82" ),
array( 70, (string) "Lakier do wzorków czarny perłowy
10ml", (float) 19.98, 1, (float) 19.98, (string) "", (string) "99" ),
array( 65, "Lakier do wzorków biały 10ml", (float) 19.98,
1, (float) 19.98, (string) "",(string) "85" ),
array( 75, (string) "Lakier utrwalający 10ml", (float) 19.98,
1, (float) 19.98, (string) "", (string) "92" )
  ),
  array( (string) "75", (string) "Lakier utrwalający 10ml",
(float) 12.99 ),
  2=> 13
);

$tmp = serialize( $prepare_array );
var_dump( unserialize( $tmp ) );
?>



[2008-01-15 12:12:39] [EMAIL PROTECTED]

Thank you for this bug report. To properly diagnose the problem, we
need a short but complete example script to be able to reproduce
this bug ourselves. 

A proper reproducing script starts with ,
is max. 10-20 lines long and does not require any external 
resources such as databases, etc. If the script requires a 
database to demonstrate the issue, please make sure it creates 
all necessary tables, stored procedures etc.

Please avoid embedding huge scripts into the report.



[2008-01-15 11:44:25] tomasz dot rutkowski at domeny dot pl

Description:

PHP 5.2.5 bad serialize string into multiarray.
This bug is only into PHP 5.2.5 .
PHP 5.2.4 is good.


Reproduce code:
---
$bad_serialized_multiarray =
'a:3:{i:0;a:4:{i:0;a:7:{i:0;i:69;i:1;s:30:"Lakier do wzorków czarny
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"82";}i:1;a:7:{i:0;i:70;i:1;s:43:"Lakier
do wzorków czarny perłowy
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"99";}i:2;a:7:{i:0;i:65;i:1;s:34:"Lakier
do wzorków biały
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"85";}i:3;a:7:{i:0;i:75;i:1;s:28:"Lakier
utrwalający
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"92";}}i:1;a:3:{i:0;s:2:"75";i:1;s:28:"Lakier
utrwalający
10ml";i:2;d:12.9902131628207280300557613372802734375;}i:2;i:13;}';

$fix_serialized_multiarray =
'a:3:{i:0;a:4:{i:0;a:7:{i:0;i:69;i:1;s:34:"Lakier do wzorków czarny
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"82";}i:1;a:7:{i:0;i:70;i:1;s:47:"Lakier
do wzorków czarny perłowy
10ml";i:2;d:19.980426325641456060111522674560546875;i:3;i:1;i:4;d:19.980426325641456060111522674560546875;i:5;s:0:"";i:6;s:2:"99";}i:2;a:7:{i:0;i:65;i:1;s:38:"Lakier
do wzorków biały
10ml";i:2;d:19.980426325641456060111522674560546875;i:3