ProtobufSerializer.cpp 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /*
  2. * Copyright (C) 2011-2018 Intel Corporation. All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. *
  8. * * Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * * Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in
  12. * the documentation and/or other materials provided with the
  13. * distribution.
  14. * * Neither the name of Intel Corporation nor the names of its
  15. * contributors may be used to endorse or promote products derived
  16. * from this software without specific prior written permission.
  17. *
  18. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  19. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  20. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  21. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  22. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  23. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  24. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  25. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  26. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  27. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  28. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. *
  30. */
  31. /*
  32. * Implementation of serializer based on google protobufs
  33. */
  34. #include <ProtobufSerializer.h>
  35. #include <google/protobuf/message.h>
  36. #include <IAEMessage.h>
  37. #include <IAERequest.h>
  38. #include <AEInitQuoteRequest.h>
  39. #include <AEGetQuoteRequest.h>
  40. #include <AEGetLaunchTokenRequest.h>
  41. #include <AECreateSessionRequest.h>
  42. #include <AEInvokeServiceRequest.h>
  43. #include <AEExchangeReportRequest.h>
  44. #include <AECloseSessionRequest.h>
  45. #include <AEGetPsCapRequest.h>
  46. #include <AEReportAttestationRequest.h>
  47. #include <AEGetWhiteListSizeRequest.h>
  48. #include <AEGetWhiteListRequest.h>
  49. #include <AESGXGetExtendedEpidGroupIdRequest.h>
  50. #include <AESGXSwitchExtendedEpidGroupRequest.h>
  51. #include <AESGXRegisterRequest.h>
  52. #include <AESGXRegisterResponse.h>
  53. IAERequest* ProtobufSerializer::inflateRequest(AEMessage* message) {
  54. if (message == NULL || message->data == NULL)
  55. return NULL;
  56. aesm::message::Request* reqMsg = new aesm::message::Request();
  57. reqMsg->ParseFromArray(message->data, message->size);
  58. IAERequest* request = NULL;
  59. if (reqMsg->has_getlictokenreq() == true)
  60. request = new AEGetLaunchTokenRequest(reqMsg->getlictokenreq());
  61. else if (reqMsg->has_initquotereq() == true)
  62. request = new AEInitQuoteRequest(reqMsg->initquotereq());
  63. else if (reqMsg->has_getquotereq() == true)
  64. request = new AEGetQuoteRequest(reqMsg->getquotereq());
  65. else if (reqMsg->has_closesessionreq() == true)
  66. request = new AECloseSessionRequest(reqMsg->closesessionreq());
  67. else if (reqMsg->has_createsessionreq() == true)
  68. request = new AECreateSessionRequest(reqMsg->createsessionreq());
  69. else if (reqMsg->has_exchangereportreq() == true)
  70. request = new AEExchangeReportRequest(reqMsg->exchangereportreq());
  71. else if (reqMsg->has_getlictokenreq() == true)
  72. request = new AEGetLaunchTokenRequest(reqMsg->getlictokenreq());
  73. else if (reqMsg->has_invokeservicereq() == true)
  74. request = new AEInvokeServiceRequest(reqMsg->invokeservicereq());
  75. else if (reqMsg->has_getpscapreq() == true)
  76. request = new AEGetPsCapRequest(reqMsg->getpscapreq());
  77. else if (reqMsg->has_reporterrreq() == true)
  78. request = new AEReportAttestationRequest(reqMsg->reporterrreq());
  79. else if(reqMsg->has_getwhitelistsizereq() == true)
  80. request = new AEGetWhiteListSizeRequest(reqMsg->getwhitelistsizereq());
  81. else if(reqMsg->has_getwhitelistreq() == true)
  82. request = new AEGetWhiteListRequest(reqMsg->getwhitelistreq());
  83. else if(reqMsg->has_sgxgetextendedepidgroupidreq() == true)
  84. request = new AESGXGetExtendedEpidGroupIdRequest(reqMsg->sgxgetextendedepidgroupidreq());
  85. else if(reqMsg->has_sgxswitchextendedepidgroupreq() == true)
  86. request = new AESGXSwitchExtendedEpidGroupRequest(reqMsg->sgxswitchextendedepidgroupreq());
  87. else if(reqMsg->has_sgxregisterreq() == true)
  88. request = new AESGXRegisterRequest(reqMsg->sgxregisterreq());
  89. delete reqMsg;
  90. return request;
  91. }