Skip to content

Commit

Permalink
firewire: net: better FIFO address range check and rcodes
Browse files Browse the repository at this point in the history
The AR req handler should not check the generation; higher level code
is the better place to handle bus generation changes.  The target node
ID just needs to be checked for not being the "all nodes" address; in
this case don't handle the request and don't respond.

Use Address_Error and Type_Error rcodes as appropriate.

Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
  • Loading branch information
Stefan Richter committed Jun 16, 2009
1 parent b01b4ba commit 00635b8
Showing 1 changed file with 14 additions and 16 deletions.
30 changes: 14 additions & 16 deletions drivers/firewire/net.c
Original file line number Diff line number Diff line change
Expand Up @@ -810,29 +810,27 @@ static void fwnet_receive_packet(struct fw_card *card, struct fw_request *r,
int speed, unsigned long long offset, void *payload,
size_t length, void *callback_data)
{
struct fwnet_device *dev;
int status;
struct fwnet_device *dev = callback_data;
int rcode;

dev = callback_data;
if (tcode != TCODE_WRITE_BLOCK_REQUEST
|| destination != card->node_id /* <- FIXME */
|| generation != card->generation /* <- FIXME */
|| offset != dev->handler.offset) {
fw_send_response(card, r, RCODE_CONFLICT_ERROR);
if (destination == IEEE1394_ALL_NODES) {
kfree(r);

return;
}

status = fwnet_incoming_packet(dev, payload, length,
source, generation, false);
if (status != 0) {
if (offset != dev->handler.offset)
rcode = RCODE_ADDRESS_ERROR;
else if (tcode != TCODE_WRITE_BLOCK_REQUEST)
rcode = RCODE_TYPE_ERROR;
else if (fwnet_incoming_packet(dev, payload, length,
source, generation, false) != 0) {
fw_error("Incoming packet failure\n");
fw_send_response(card, r, RCODE_CONFLICT_ERROR);

return;
}
rcode = RCODE_CONFLICT_ERROR;
} else
rcode = RCODE_COMPLETE;

fw_send_response(card, r, RCODE_COMPLETE);
fw_send_response(card, r, rcode);
}

static void fwnet_receive_broadcast(struct fw_iso_context *context,
Expand Down

0 comments on commit 00635b8

Please sign in to comment.