| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- // Generic Security Services Application Program Interface implementation required for SPNEGO kerberos authentication
- package GSSAPI
- import (
- "errors"
- "fmt"
- "github.com/jcmturner/asn1"
- "github.com/jcmturner/gokrb5/asn1tools"
- )
- var SPNEGO_OID = asn1.ObjectIdentifier{1, 3, 6, 1, 5, 5, 2}
- type SPNEGO struct {
- Init bool
- Resp bool
- NegTokenInit NegTokenInit
- NegTokenResp NegTokenResp
- }
- // Unmarshal SPNEGO negotiation token
- func (s *SPNEGO) Unmarshal(b []byte) error {
- var r []byte
- var err error
- if b[0] != byte(161) {
- // Not a NegTokenResp/Targ could be a NegTokenInit
- var oid asn1.ObjectIdentifier
- r, err = asn1.UnmarshalWithParams(b, &oid, fmt.Sprintf("application,explicit,tag:%v", 0))
- if err != nil {
- return fmt.Errorf("Not a valid SPNEGO token: %v", err)
- }
- // Check the OID is the SPNEGO OID value
- if !oid.Equal(asn1.ObjectIdentifier{1, 3, 6, 1, 5, 5, 2}) {
- return errors.New("OID does not match SPNEGO OID 1.3.6.1.5.5.2")
- }
- } else {
- // Could be a NegTokenResp/Targ
- r = b
- }
- var a asn1.RawValue
- _, err = asn1.Unmarshal(r, &a)
- if err != nil {
- return fmt.Errorf("Error unmarshalling SPNEGO: %v", err)
- }
- switch a.Tag {
- case 0:
- _, err = asn1.Unmarshal(a.Bytes, &s.NegTokenInit)
- if err != nil {
- return fmt.Errorf("Error unmarshalling NegotiationToken type %d: %v", a.Tag, err)
- }
- s.Init = true
- case 1:
- _, err = asn1.Unmarshal(a.Bytes, &s.NegTokenResp)
- if err != nil {
- return fmt.Errorf("Error unmarshalling NegotiationToken type %d: %v", a.Tag, err)
- }
- s.Resp = true
- default:
- return errors.New("Unknown choice type for NegotiationToken")
- }
- return nil
- }
- // Marshal SPNEGO negotiation token
- func (s *SPNEGO) Marshal() ([]byte, error) {
- var b []byte
- if !s.Init && !s.Resp {
- return b, errors.New("SPNEGO cannot be marshalled. It contains neither a NegTokenInit or NegTokenResp")
- }
- hb, _ := asn1.Marshal(SPNEGO_OID)
- if s.Init {
- tb, err := s.NegTokenInit.Marshal()
- if err != nil {
- return b, fmt.Errorf("Could not marshal NegTokenInit: %v", err)
- }
- b = append(hb, tb...)
- }
- if s.Resp {
- tb, err := s.NegTokenResp.Marshal()
- if err != nil {
- return b, fmt.Errorf("Could not marshal NegTokenResp: %v", err)
- }
- b = append(hb, tb...)
- }
- return asn1tools.AddASNAppTag(b, 0), nil
- }
|