As you said, you can not post a Facebook hosted image back to Facebook. As I see it, you have two options.
Download the image to your server and upload it again to the users feed.
Simply post a link to that photo_object on the users feed. Facebook's crawlers will successfully extract the relevant data from that link and you'll still get a preview of the image in the post.
When you query the Graph API with a photo_id -
example - https://graph.facebook.com/10151812415573306 (a public photo on CocaCola's page), you get some information about that image. The data looks something like this -
{
"id": "10151812415573306",
"from": {
"name": "Coca-Cola",
"category": "Food/beverages",
"id": "40796308305"
},
"picture": "https://fbcdn-photos-a.akamaihd.net/hphotos-ak-ash3/521913_10151812415573306_523748375_s.jpg",
"source": "https://fbcdn-sphotos-a.akamaihd.net/hphotos-ak-ash3/521913_10151812415573306_523748375_n.jpg",
"height": 332,
"width": 500,
...
"link": "https://www.facebook.com/photo.php?fbid=10151812415573306&set=a.99394368305.88399.40796308305&type=1",
"icon": "https://s-static.ak.facebook.com/rsrc.php/v2/yz/r/StEh3RhPvjk.gif",
"created_time": "2012-07-09T12:00:41+0000",
...
The parameter you need to post on the users feed is the link parameter -
https://www.facebook.com/photo.php?fbid=10151812415573306&set=a.99394368305.88399.40796308305&type=1
When you post that URL on a users feed/wall - the post will contain a preview of the image and a link to the photo itself (within Facebook).