Exemplo n.º 1
0
class StructGrrMessage(rdfvalue.RDFProtoStruct):
  """A serialization agnostic GrrMessage."""

  type_description = type_info.TypeDescriptorSet(
      type_info.ProtoString(
          name="session_id", field_number=1,
          description="Every Flow has a unique session id."),

      type_info.ProtoUnsignedInteger(
          name="request_id", field_number=2,
          description="This message is in response to this request number"),

      type_info.ProtoUnsignedInteger(
          name="response_id", field_number=3,
          description="Responses for each request."),

      type_info.ProtoString(
          name="name", field_number=4,
          description=("This is the name of the client action that will be "
                       "executed. It is set by the flow and is executed by "
                       "the client.")),

      type_info.ProtoBinary(
          name="args", field_number=5,
          description="This field contains an encoded rdfvalue."),

      type_info.ProtoString(
          name="source", field_number=6,
          description=("Client name where the message came from (This is "
                       "copied from the MessageList)")),
      )
Exemplo n.º 2
0
class FastVolatilityValue(rdfvalue.RDFProtoStruct):
    type_description = type_info.TypeDescriptorSet(
        type_info.ProtoString(name="type", field_number=1),
        type_info.ProtoString(name="name", field_number=2),
        type_info.ProtoUnsignedInteger(name="offset", field_number=3),
        type_info.ProtoString(name="vm", field_number=4),
        type_info.ProtoUnsignedInteger(name="value", field_number=5),
        type_info.ProtoString(name="svalue", field_number=6),
        type_info.ProtoString(name="reason", field_number=7),
    )
Exemplo n.º 3
0
class TestStruct(structs.RDFProtoStruct):
  """A test struct object."""

  type_description = type_info.TypeDescriptorSet(
      type_info.ProtoString(name="foobar", field_number=1, default="string",
                            description="A string value"),

      type_info.ProtoUnsignedInteger(name="int", field_number=2, default=5,
                                     description="An integer value"),

      type_info.ProtoList(type_info.ProtoString(
          name="repeated", field_number=3,
          description="A repeated string value")),

      # We can serialize an arbitrary RDFValue. This will be serialized into a
      # binary string and parsed on demand.
      type_info.ProtoRDFValue(name="urn", field_number=6,
                              default=rdfvalue.RDFURN("http://www.google.com"),
                              rdf_type="RDFURN",
                              description="An arbitrary RDFValue field."),

      type_info.ProtoEnum(name="type", field_number=7,
                          enum_name="Type",
                          enum=dict(FIRST=1, SECOND=2, THIRD=3),
                          default=3, description="An enum field"),

      type_info.ProtoFloat(name="float", field_number=8,
                           description="A float number", default=1.1),
  )
Exemplo n.º 4
0
class UnionTest(structs.RDFProtoStruct):
  union_field = "struct_flavor"

  type_description = type_info.TypeDescriptorSet(
      type_info.ProtoEnum(
          name="struct_flavor",
          field_number=1,
          enum_name="Type",
          enum=dict(
              FIRST=1, SECOND=2, THIRD=3),
          default=3,
          description="An union enum field"),
      type_info.ProtoFloat(
          name="first",
          field_number=2,
          description="A float number",
          default=1.1),
      type_info.ProtoString(
          name="second",
          field_number=3,
          default="string",
          description="A string value"),
      type_info.ProtoUnsignedInteger(
          name="third",
          field_number=4,
          default=5,
          description="An integer value"),)
Exemplo n.º 5
0
  def testStructDefinition(self):
    """Ensure that errors in struct definitions are raised."""
    # A descriptor without a field number should raise.
    self.assertRaises(type_info.TypeValueError,
                      type_info.ProtoNested, name="name")

    # Adding a duplicate field number should raise.
    self.assertRaises(
        type_info.TypeValueError, TestStruct.AddDescriptor,
        type_info.ProtoUnsignedInteger(name="int", field_number=2))

    # Adding a descriptor which is not a Proto* descriptor is not allowed for
    # Struct fields:
    self.assertRaises(
        type_info.TypeValueError, TestStruct.AddDescriptor,
        type_info.String(name="int"))
Exemplo n.º 6
0
class PartialTest1(structs.RDFProtoStruct):
  """This is a protobuf with fewer fields than TestStruct."""
  type_description = type_info.TypeDescriptorSet(
      type_info.ProtoUnsignedInteger(name="int", field_number=2),
  )
Exemplo n.º 7
0
def DefineFromProtobuf(cls, protobuf):
    """Add type info definitions from an existing protobuf.

  We support building this class by copying definitions from an annotated
  protobuf using the semantic protobuf. This is ideal for interoperability
  with other languages and non-semantic protobuf implementations. In that case
  it might be easier to simply annotate the .proto file with the relevant
  semantic information.

  Args:
    cls: The class to add fields descriptors to (i.e. the new semantic class).
    protobuf: A generated proto2 protocol buffer class as produced by the
      standard Google protobuf compiler.
  """
    # Parse message level options.
    message_options = protobuf.DESCRIPTOR.GetOptions()
    semantic_options = message_options.Extensions[semantic_pb2.semantic]

    # Support message descriptions
    if semantic_options.description and not cls.__doc__:
        cls.__doc__ = semantic_options.description

    cls.union_field = semantic_options.union_field or None

    # We search through all the field descriptors and build type info
    # descriptors from them.
    for field in protobuf.DESCRIPTOR.fields:
        type_descriptor = None

        # Does this field have semantic options?
        options = field.GetOptions().Extensions[semantic_pb2.sem_type]
        kwargs = dict(description=options.description,
                      name=field.name,
                      friendly_name=options.friendly_name,
                      field_number=field.number,
                      labels=list(options.label))

        if field.has_default_value:
            kwargs["default"] = field.default_value

        # This field is a non-protobuf semantic value.
        if options.type and field.type != TYPE_MESSAGE:

            rdf_type = getattr(rdfvalue, options.type, None)
            if rdf_type:
                # Make sure that the field type is the same as what is required by the
                # semantic type.
                required_field_type = _SEMANTIC_PRIMITIVE_TO_FIELD_TYPE[
                    rdf_type.data_store_type]

                if required_field_type != field.type:
                    raise rdfvalue.InitializeError((
                        "%s: .proto file uses incorrect field to store Semantic Value "
                        "%s: Should be %s") % (cls.__name__, field.name,
                                               rdf_type.data_store_type))

            type_descriptor = type_info.ProtoRDFValue(rdf_type=options.type,
                                                      **kwargs)

        # A semantic protobuf is already a semantic value so it is an error to
        # specify it in two places.
        elif options.type and field.type == TYPE_MESSAGE:
            raise rdfvalue.InitializeError(
                ("%s: .proto file specified both Semantic Value type %s and "
                 "Semantic protobuf %s") %
                (cls.__name__, options.type, field.message_type.name))

        # Try to figure out what this field actually is from the descriptor.
        elif field.type == TYPE_DOUBLE:
            type_descriptor = type_info.ProtoDouble(**kwargs)

        elif field.type == TYPE_FLOAT:
            type_descriptor = type_info.ProtoFloat(**kwargs)

        elif field.type == TYPE_BOOL:
            type_descriptor = type_info.ProtoBoolean(**kwargs)

        elif field.type == TYPE_STRING:
            type_descriptor = type_info.ProtoString(**kwargs)

        elif field.type == TYPE_BYTES:
            type_descriptor = type_info.ProtoBinary(**kwargs)
            if options.dynamic_type:
                # This may be a dynamic type. In this case the dynamic_type option
                # names a method (which must exist) which should return the class of
                # the embedded semantic value.
                dynamic_cb = getattr(cls, options.dynamic_type, None)
                if dynamic_cb is not None:
                    type_descriptor = type_info.ProtoDynamicEmbedded(
                        dynamic_cb=dynamic_cb, **kwargs)
                else:
                    logging.warning(
                        "Dynamic type specifies a non existant callback %s",
                        options.dynamic_type)

        elif (field.type == TYPE_MESSAGE and options.dynamic_type
              and field.message_type.name == "AnyValue"):
            dynamic_cb = getattr(cls, options.dynamic_type, None)
            if dynamic_cb is not None:
                type_descriptor = type_info.ProtoDynamicAnyValueEmbedded(
                    dynamic_cb=dynamic_cb, **kwargs)
            else:
                logging.warning(
                    "Dynamic type specifies a non existant AnyValue "
                    "callback %s", options.dynamic_type)

        elif field.type == TYPE_INT64 or field.type == TYPE_INT32:
            type_descriptor = type_info.ProtoSignedInteger(**kwargs)

        elif field.type == TYPE_UINT32 or field.type == TYPE_UINT64:
            type_descriptor = type_info.ProtoUnsignedInteger(**kwargs)

        # An embedded protocol buffer.
        elif field.type == TYPE_MESSAGE and field.message_type:
            # Refer to another protobuf. Note that the target does not need to be
            # known at this time. It will be resolved using the late binding algorithm
            # when it is known. Therefore this can actually also refer to this current
            # protobuf (i.e. nested proto).
            type_descriptor = type_info.ProtoEmbedded(
                nested=field.message_type.name, **kwargs)

            # TODO(user): support late binding here.
            if type_descriptor.type:
                # This traps the following problem:
                # class Certificate(rdf_protodict.RDFValueArray):
                #    protobuf = jobs_pb2.BlobArray
                #

                # A primitive Protobuf definition like:
                # message Certificate {
                #   ....
                # };

                # And a field like:
                # optional Certificate csr = 1 [(sem_type) = {
                #   description: "A Certificate RDFValue with the CSR in it.",
                # }];

                # If we blindly allowed the Certificate RDFValue to be used, the
                # semantic library will end up embedding a BlobArray protobuf, but the
                # primitive library will still use Certificate.

                # The name of the primitive protobuf the semantic type implements.
                semantic_protobuf_primitive = type_descriptor.type.protobuf.__name__

                # This is an error because the primitive library will use the protobuf
                # named in the field, but the semantic library will implement a
                # different protobuf.
                if semantic_protobuf_primitive != field.message_type.name:
                    raise rdfvalue.InitializeError((
                        "%s.%s: Conflicting primitive (%s) and semantic protobuf %s "
                        "which implements primitive protobuf (%s)") % (
                            cls.__name__, field.name, field.message_type.name,
                            type_descriptor.type.__name__,
                            semantic_protobuf_primitive))

        elif field.enum_type:  # It is an enum.
            enum_desc = field.enum_type
            enum_dict = {}
            enum_descriptions = {}
            enum_labels = {}

            for enum_value in enum_desc.values:
                enum_dict[enum_value.name] = enum_value.number
                description = enum_value.GetOptions().Extensions[
                    semantic_pb2.description]
                enum_descriptions[enum_value.name] = description
                labels = [
                    label for label in enum_value.GetOptions().Extensions[
                        semantic_pb2.label]
                ]
                enum_labels[enum_value.name] = labels

            enum_dict = dict((x.name, x.number) for x in enum_desc.values)

            type_descriptor = type_info.ProtoEnum(
                enum_name=enum_desc.name,
                enum=enum_dict,
                enum_descriptions=enum_descriptions,
                enum_labels=enum_labels,
                **kwargs)

            # Attach the enum container to the class for easy reference:
            setattr(cls, enum_desc.name, type_descriptor.enum_container)

        # If we do not recognize the type descriptor we ignore this field.
        if type_descriptor is not None:
            # If the field is repeated, wrap it in a ProtoList.
            if field.label == LABEL_REPEATED:
                options = field.GetOptions().Extensions[semantic_pb2.sem_type]
                type_descriptor = type_info.ProtoList(type_descriptor,
                                                      labels=list(
                                                          options.label))

            try:
                cls.AddDescriptor(type_descriptor)
            except Exception:
                logging.error("Failed to parse protobuf %s", cls)
                raise

        else:
            logging.error("Unknown field type for %s - Ignoring.", field.name)