Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 1 | package caveat |
| 2 | |
| 3 | import ( |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 4 | "bytes" |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 5 | "crypto/rand" |
| 6 | "crypto/sha256" |
| 7 | "encoding/binary" |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 8 | "fmt" |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 9 | "time" |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 10 | |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 11 | "veyron2/security" |
Asim Shankar | 8303f18 | 2014-06-05 00:42:33 -0700 | [diff] [blame] | 12 | "veyron2/security/wire" |
Andres Erbsen | dde52bf | 2014-06-09 09:42:33 -0700 | [diff] [blame] | 13 | "veyron2/vom" |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 14 | ) |
| 15 | |
| 16 | // nonceLength specifies the length in bytes of the random nonce used |
Andres Erbsen | dde52bf | 2014-06-09 09:42:33 -0700 | [diff] [blame] | 17 | // in publicKeyCaveat and publicKeyDischarge. |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 18 | // |
| 19 | // TODO(ataly, ashankar): Nonce length of 16 bytes was chosen very conservatively. |
| 20 | // The purpose of the random nonce is essentially to separate caveats that have |
| 21 | // the same restriction and validation key (in order to prevent discharge replay). |
| 22 | // Can we use 4bytes instead?. |
| 23 | const nonceLength = 16 |
| 24 | |
| 25 | // errPublicKeyCaveat returns an error indicating that the provided caveat has |
| 26 | // an invalid or missing discharge. |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 27 | func errPublicKeyCaveat(c *publicKeyCaveat, err error) error { |
Andres Erbsen | dde52bf | 2014-06-09 09:42:33 -0700 | [diff] [blame] | 28 | return fmt.Errorf("%v for publicKeyCaveat{nonce:%v location:%q}", err, c.RandNonce, c.Location()) |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 29 | } |
| 30 | |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 31 | // publicKeyCaveat implements security.ThirdPartyCaveat. It specifies a restriction, |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 32 | // a validation key and the location of the third-party responsible for |
| 33 | // discharging the caveat. A discharge for this caveat is a signed assertion whose |
| 34 | // signature can be verified using the validation key. |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 35 | type publicKeyCaveat struct { |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 36 | // RandNonce specifies a cryptographically random nonce (of fixed length) that |
| 37 | // uniquely identifies the caveat. |
| 38 | RandNonce []uint8 |
Andres Erbsen | dde52bf | 2014-06-09 09:42:33 -0700 | [diff] [blame] | 39 | // DischargeMintingCaveat specifies the caveat that has to be validated |
| 40 | // before minting a discharge for a publicKeyCaveat. A byte slice containing |
| 41 | // VOM-encoded security.Caveat is used to enable a publicKeyCaveat to be |
| 42 | // validated by devices that cannot decode the discharge minting caveats. |
| 43 | DischargeMintingCaveat []byte |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 44 | // ValidationKey specifies the public key of the discharging-party. |
| 45 | ValidationKey wire.PublicKey |
Asim Shankar | a94e507 | 2014-08-19 18:18:36 -0700 | [diff] [blame] | 46 | // ThirdPartyLocation specifies the object name of the discharging-party. |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 47 | ThirdPartyLocation string |
Asim Shankar | a94e507 | 2014-08-19 18:18:36 -0700 | [diff] [blame] | 48 | // Information wanted in order to issue a discharge. |
| 49 | ThirdPartyRequirements security.ThirdPartyRequirements |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | // ID returns a unique 32bytes long identity for the caveat based on the random nonce |
| 53 | // and SHA-256 hash of the restriction embedded in the caveat. |
| 54 | // |
| 55 | // TODO(ataly, ashankar): A 256bit hash is probably much stronger that what we need |
| 56 | // here. Can we truncate the hash to 96bits? |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 57 | func (c *publicKeyCaveat) ID() security.ThirdPartyCaveatID { |
Andres Erbsen | dde52bf | 2014-06-09 09:42:33 -0700 | [diff] [blame] | 58 | return security.ThirdPartyCaveatID(id(c.RandNonce, c.DischargeMintingCaveat)) |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | // Location returns the third-party location embedded in the caveat. |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 62 | func (c *publicKeyCaveat) Location() string { |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 63 | return c.ThirdPartyLocation |
| 64 | } |
| 65 | |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 66 | func (c *publicKeyCaveat) String() string { |
Andres Erbsen | dde52bf | 2014-06-09 09:42:33 -0700 | [diff] [blame] | 67 | return fmt.Sprintf("publicKeyCaveat{DischargeMintingCaveat: (%v bytes), ThirdPartyLocation: %q}", len(c.DischargeMintingCaveat), c.ThirdPartyLocation) |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 68 | } |
| 69 | |
Asim Shankar | a94e507 | 2014-08-19 18:18:36 -0700 | [diff] [blame] | 70 | func (c *publicKeyCaveat) Requirements() security.ThirdPartyRequirements { |
| 71 | return c.ThirdPartyRequirements |
| 72 | } |
| 73 | |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 74 | // Validate verifies whether the caveat validates for the provided context. |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 75 | func (c *publicKeyCaveat) Validate(ctx security.Context) error { |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 76 | // Check whether the context has a dicharge matching the caveat's ID. |
| 77 | dis, ok := ctx.CaveatDischarges()[c.ID()] |
| 78 | if !ok { |
| 79 | return errPublicKeyCaveat(c, fmt.Errorf("missing discharge")) |
| 80 | } |
| 81 | |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 82 | pkDischarge, ok := dis.(*publicKeyDischarge) |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 83 | if !ok { |
| 84 | return errPublicKeyCaveat(c, fmt.Errorf("caveat of type %T cannot be validated with discharge of type %T", c, dis)) |
| 85 | } |
| 86 | |
| 87 | // Validate all caveats present on the discharge. |
| 88 | for _, cav := range pkDischarge.Caveats { |
| 89 | if err := cav.Validate(ctx); err != nil { |
| 90 | return errPublicKeyCaveat(c, err) |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | // Check the discharge signature with the validation key from the caveat. |
| 95 | key, err := c.ValidationKey.Decode() |
| 96 | if err != nil { |
| 97 | return errPublicKeyCaveat(c, err) |
| 98 | } |
Ryan Brown | 407b732 | 2014-07-22 14:18:08 -0700 | [diff] [blame] | 99 | if !pkDischarge.Signature.Verify(key, pkDischarge.contentHash()) { |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 100 | return errPublicKeyCaveat(c, fmt.Errorf("discharge %v has invalid signature", dis)) |
| 101 | } |
| 102 | return nil |
| 103 | } |
| 104 | |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 105 | // publicKeyDischarge implements security.ThirdPartyDischarge. It specifies a |
| 106 | // discharge for a publicKeyCaveat, and includes a signature that can be verified |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 107 | // with the validation key of the caveat. Additionally, the discharge may include |
| 108 | // service caveats which must all be valid in order for the discharge to be |
| 109 | // considered valid. |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 110 | type publicKeyDischarge struct { |
Andres Erbsen | dde52bf | 2014-06-09 09:42:33 -0700 | [diff] [blame] | 111 | // ThirdPartyCaveatID is used to match a Discharge with the Caveat it is for. |
| 112 | ThirdPartyCaveatID security.ThirdPartyCaveatID |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 113 | |
| 114 | // Caveats under which this Discharge is valid. |
| 115 | Caveats []wire.Caveat |
| 116 | |
| 117 | // Signature on the contents of the discharge obtained using the private key |
| 118 | // corresponding to the validaton key in the caveat. |
Ryan Brown | 407b732 | 2014-07-22 14:18:08 -0700 | [diff] [blame] | 119 | Signature security.Signature |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | // CaveatID returns a unique identity for the discharge based on the random nonce and |
| 123 | // restriction embedded in the discharge. |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 124 | func (d *publicKeyDischarge) CaveatID() security.ThirdPartyCaveatID { |
Andres Erbsen | dde52bf | 2014-06-09 09:42:33 -0700 | [diff] [blame] | 125 | return d.ThirdPartyCaveatID |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 126 | } |
| 127 | |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 128 | func (d *publicKeyDischarge) ThirdPartyCaveats() []security.ServiceCaveat { |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 129 | return wire.DecodeThirdPartyCaveats(d.Caveats) |
| 130 | } |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 131 | |
Asim Shankar | b38d036 | 2014-06-11 12:47:46 -0700 | [diff] [blame] | 132 | // sign uses the provided identity to sign the contents of the discharge. |
Ryan Brown | 407b732 | 2014-07-22 14:18:08 -0700 | [diff] [blame] | 133 | func (d *publicKeyDischarge) sign(discharger security.PrivateID) (err error) { |
| 134 | d.Signature, err = discharger.Sign(d.contentHash()) |
| 135 | return |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 136 | } |
| 137 | |
| 138 | func (d *publicKeyDischarge) contentHash() []byte { |
| 139 | h := sha256.New() |
| 140 | tmp := make([]byte, binary.MaxVarintLen64) |
| 141 | |
Andres Erbsen | dde52bf | 2014-06-09 09:42:33 -0700 | [diff] [blame] | 142 | wire.WriteBytes(h, tmp, []byte(d.ThirdPartyCaveatID)) |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 143 | for _, cav := range d.Caveats { |
| 144 | wire.WriteString(h, tmp, string(cav.Service)) |
| 145 | wire.WriteBytes(h, tmp, cav.Bytes) |
| 146 | } |
| 147 | return h.Sum(nil) |
| 148 | } |
| 149 | |
| 150 | // NewPublicKeyCaveat returns a new third-party caveat from the provided restriction, |
| 151 | // third-party identity, and third-party location. |
Asim Shankar | a94e507 | 2014-08-19 18:18:36 -0700 | [diff] [blame] | 152 | func NewPublicKeyCaveat(dischargeMintingCaveat security.Caveat, thirdParty security.PublicID, location string, requirements security.ThirdPartyRequirements) (security.ThirdPartyCaveat, error) { |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 153 | nonce := make([]uint8, nonceLength) |
| 154 | if _, err := rand.Read(nonce); err != nil { |
| 155 | return nil, err |
| 156 | } |
| 157 | |
| 158 | var validationKey wire.PublicKey |
| 159 | if err := validationKey.Encode(thirdParty.PublicKey()); err != nil { |
| 160 | return nil, err |
| 161 | } |
| 162 | |
Andres Erbsen | dde52bf | 2014-06-09 09:42:33 -0700 | [diff] [blame] | 163 | var mintingCaveatEncoded bytes.Buffer |
| 164 | vom.NewEncoder(&mintingCaveatEncoded).Encode(dischargeMintingCaveat) |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 165 | return &publicKeyCaveat{ |
Andres Erbsen | dde52bf | 2014-06-09 09:42:33 -0700 | [diff] [blame] | 166 | RandNonce: nonce, |
| 167 | DischargeMintingCaveat: mintingCaveatEncoded.Bytes(), |
| 168 | ValidationKey: validationKey, |
| 169 | ThirdPartyLocation: location, |
Asim Shankar | a94e507 | 2014-08-19 18:18:36 -0700 | [diff] [blame] | 170 | ThirdPartyRequirements: requirements, |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 171 | }, nil |
| 172 | } |
| 173 | |
| 174 | // NewPublicKeyDischarge returns a new discharge for the provided caveat |
Andres Erbsen | dde52bf | 2014-06-09 09:42:33 -0700 | [diff] [blame] | 175 | // after verifying that the caveats for minting a discharge are met. |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 176 | // |
| 177 | // The CaveatID of the discharge is the same as the ID of the caveat, and |
| 178 | // the discharge includes the provided service caveats along with a universal |
| 179 | // expiry caveat for the provided duration. The discharge also includes a |
| 180 | // signature over its contents obtained from the provided private key. |
Asim Shankar | b38d036 | 2014-06-11 12:47:46 -0700 | [diff] [blame] | 181 | func NewPublicKeyDischarge(discharger security.PrivateID, caveat security.ThirdPartyCaveat, ctx security.Context, duration time.Duration, caveats []security.ServiceCaveat) (security.ThirdPartyDischarge, error) { |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 182 | cav, ok := caveat.(*publicKeyCaveat) |
| 183 | if !ok { |
| 184 | return nil, fmt.Errorf("cannot mint discharges for %T", caveat) |
| 185 | } |
Andres Erbsen | dde52bf | 2014-06-09 09:42:33 -0700 | [diff] [blame] | 186 | var mintingCaveat security.Caveat |
| 187 | mcBuf := bytes.NewReader(cav.DischargeMintingCaveat) |
| 188 | if err := vom.NewDecoder(mcBuf).Decode(&mintingCaveat); err != nil { |
| 189 | return nil, fmt.Errorf("failed to decode DischargeMintingCaveat: %s", err) |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 190 | } |
Andres Erbsen | dde52bf | 2014-06-09 09:42:33 -0700 | [diff] [blame] | 191 | if err := mintingCaveat.Validate(ctx); err != nil { |
| 192 | return nil, fmt.Errorf("failed to validate DischargeMintingCaveat: %s", err) |
| 193 | } |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 194 | now := time.Now() |
Asim Shankar | d45f002 | 2014-06-11 14:12:34 -0700 | [diff] [blame] | 195 | expiryCaveat := &Expiry{IssueTime: now, ExpiryTime: now.Add(duration)} |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 196 | caveats = append(caveats, security.UniversalCaveat(expiryCaveat)) |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 197 | encodedCaveats, err := wire.EncodeCaveats(caveats) |
| 198 | if err != nil { |
Asim Shankar | b38d036 | 2014-06-11 12:47:46 -0700 | [diff] [blame] | 199 | return nil, fmt.Errorf("failed to encode caveats in discharge: %v", err) |
| 200 | } |
| 201 | discharge := &publicKeyDischarge{ |
| 202 | ThirdPartyCaveatID: caveat.ID(), |
| 203 | Caveats: encodedCaveats, |
| 204 | } |
| 205 | // TODO(ashankar,ataly): Should discharger necessarily be the same as ctx.LocalID()? |
| 206 | // If so, need the PrivateID object corresponding to ctx.LocalID. |
| 207 | if err := discharge.sign(discharger); err != nil { |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 208 | return nil, err |
| 209 | } |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 210 | return discharge, nil |
| 211 | } |
| 212 | |
Andres Erbsen | dde52bf | 2014-06-09 09:42:33 -0700 | [diff] [blame] | 213 | // id calculates the sha256 hash of length-delimited byte slices |
| 214 | func id(slices ...[]byte) string { |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 215 | h := sha256.New() |
| 216 | tmp := make([]byte, binary.MaxVarintLen64) |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 217 | |
Andres Erbsen | dde52bf | 2014-06-09 09:42:33 -0700 | [diff] [blame] | 218 | for _, slice := range slices { |
| 219 | wire.WriteBytes(h, tmp, slice) |
| 220 | } |
| 221 | return string(h.Sum(nil)) |
| 222 | } |
| 223 | |
| 224 | func init() { |
| 225 | vom.Register(publicKeyCaveat{}) |
| 226 | vom.Register(publicKeyDischarge{}) |
Asim Shankar | 23c84a0 | 2014-06-04 15:17:10 -0700 | [diff] [blame] | 227 | } |