RFID Guardian Use-Supply Chain

From RFID Wiki


The usage of RFID tags in military service and commerce is mostly related to supply chains. Although RFID technology improves e±ciency in military and business applications, it also has the potential danger of leaking information to unknown or even hostile readers. One proposal is to install RFID Guardians in transport vehicles, such as trucks, to prevent espionage in retail outlets or military supply chains.


UML Object Model


Image:Supply_chain.png


UML Sequence Model


Image:Uml_seq_supply_chain.png


Sample ACL

###################
# Business rules
###################

context trusted;

# By default, we leave RFID traffic alone
rule P15693 ACCEPT
{
	context = *;
	role = *;
	tags = *;
	query = { command = *; };
};

# Deny others to read business items ID
rule P15693 DENY
{
	context = *;
	role = *;
	tags = @MY_TAGS;
	query = { command = *; };
};

# Allow legal readers to read
rule P15693 ACCEPT
{
	context = trusted;
	role = LEGAL_READER;
	tags = @MY_TAGS;
	query = { command = *; };
};