I’ve been trying to accomplish the same thing, ie get the gallery link to link to the image itself. I think I found where the [gallery] shortcode is defined : wp-includes/media.php, line 333. The target of the link is being defined in line 394 apparently :
$link = wp_get_attachment_link($id, $size, true);
I haven’t had time to figure out how to replace this with the url of the image itself..