qcota.h 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. /* SPDX-License-Identifier: GPL-2.0-only WITH Linux-syscall-note */
  2. /*
  3. * Copyright (c) 2019-2020, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _UAPI_QCOTA_H
  6. #define _UAPI_QCOTA_H
  7. #include <linux/types.h>
  8. #include <linux/ioctl.h>
  9. #define QCE_OTA_MAX_BEARER 31
  10. #define OTA_KEY_SIZE 16 /* 128 bits of keys. */
  11. enum qce_ota_dir_enum {
  12. QCE_OTA_DIR_UPLINK = 0,
  13. QCE_OTA_DIR_DOWNLINK = 1,
  14. QCE_OTA_DIR_LAST
  15. };
  16. enum qce_ota_algo_enum {
  17. QCE_OTA_ALGO_KASUMI = 0,
  18. QCE_OTA_ALGO_SNOW3G = 1,
  19. QCE_OTA_ALGO_LAST
  20. };
  21. /**
  22. * struct qce_f8_req - qce f8 request
  23. * @data_in: packets input data stream to be ciphered.
  24. * If NULL, streaming mode operation.
  25. * @data_out: ciphered packets output data.
  26. * @data_len: length of data_in and data_out in bytes.
  27. * @count_c: count-C, ciphering sequence number, 32 bit
  28. * @bearer: 5 bit of radio bearer identifier.
  29. * @ckey: 128 bits of confidentiality key,
  30. * ckey[0] bit 127-120, ckey[1] bit 119-112,.., ckey[15] bit 7-0.
  31. * @direction: uplink or donwlink.
  32. * @algorithm: Kasumi, or Snow3G.
  33. *
  34. * If data_in is NULL, the engine will run in a special mode called
  35. * key stream mode. In this special mode, the engine will generate
  36. * key stream output for the number of bytes specified in the
  37. * data_len, based on the input parameters of direction, algorithm,
  38. * ckey, bearer, and count_c. The data_len is restricted to
  39. * the length of multiple of 16 bytes. Application can then take the
  40. * output stream, do a exclusive or to the input data stream, and
  41. * generate the final cipher data stream.
  42. */
  43. struct qce_f8_req {
  44. __u8 *data_in;
  45. __u8 *data_out;
  46. __u16 data_len;
  47. __u32 count_c;
  48. __u8 bearer;
  49. __u8 ckey[OTA_KEY_SIZE];
  50. enum qce_ota_dir_enum direction;
  51. enum qce_ota_algo_enum algorithm;
  52. int current_req_info;
  53. };
  54. /**
  55. * struct qce_f8_multi_pkt_req - qce f8 multiple packet request
  56. * Muliptle packets with uniform size, and
  57. * F8 ciphering parameters can be ciphered in a
  58. * single request.
  59. *
  60. * @num_pkt: number of packets.
  61. *
  62. * @cipher_start: ciphering starts offset within a packet.
  63. *
  64. * @cipher_size: number of bytes to be ciphered within a packet.
  65. *
  66. * @qce_f8_req: description of the packet and F8 parameters.
  67. * The following fields have special meaning for
  68. * multiple packet operation,
  69. *
  70. * @data_len: data_len indicates the length of a packet.
  71. *
  72. * @data_in: packets are concatenated together in a byte
  73. * stream started at data_in.
  74. *
  75. * @data_out: The returned ciphered output for multiple
  76. * packets.
  77. * Each packet ciphered output are concatenated
  78. * together into a byte stream started at data_out.
  79. * Note, each ciphered packet output area from
  80. * offset 0 to cipher_start-1, and from offset
  81. * cipher_size to data_len -1 are remained
  82. * unaltered from packet input area.
  83. * @count_c: count-C of the first packet, 32 bit.
  84. *
  85. *
  86. * In one request, multiple packets can be ciphered, and output to the
  87. * data_out stream.
  88. *
  89. * Packet data are laid out contiguously in sequence in data_in,
  90. * and data_out area. Every packet is identical size.
  91. * If the PDU is not byte aligned, set the data_len value of
  92. * to the rounded up value of the packet size. Eg, PDU size of
  93. * 253 bits, set the packet size to 32 bytes. Next packet starts on
  94. * the next byte boundary.
  95. *
  96. * For each packet, data from offset 0 to cipher_start
  97. * will be left unchanged and output to the data_out area.
  98. * This area of the packet can be for the RLC header, which is not
  99. * to be ciphered.
  100. *
  101. * The ciphering of a packet starts from offset cipher_start, for
  102. * cipher_size bytes of data. Data starting from
  103. * offset cipher_start + cipher_size to the end of packet will be left
  104. * unchanged and output to the dataOut area.
  105. *
  106. * For each packet the input arguments of bearer, direction,
  107. * ckey, algorithm have to be the same. count_c is the ciphering sequence
  108. * number of the first packet. The 2nd packet's ciphering sequence
  109. * number is assumed to be count_c + 1. The 3rd packet's ciphering sequence
  110. * number is count_c + 2.....
  111. *
  112. */
  113. struct qce_f8_multi_pkt_req {
  114. __u16 num_pkt;
  115. __u16 cipher_start;
  116. __u16 cipher_size;
  117. struct qce_f8_req qce_f8_req;
  118. };
  119. /**
  120. * struct qce_f8_variable_multi_pkt_req - qce f8 multiple packet request
  121. * Muliptle packets with variable size, and
  122. * F8 ciphering parameters can be ciphered in a
  123. * single request.
  124. *
  125. * @num_pkt: number of packets.
  126. *
  127. * @cipher_iov[]: array of iov of packets to be ciphered.
  128. *
  129. *
  130. * @qce_f8_req: description of the packet and F8 parameters.
  131. * The following fields have special meaning for
  132. * multiple packet operation,
  133. *
  134. * @data_len: ignored.
  135. *
  136. * @data_in: ignored.
  137. *
  138. * @data_out: ignored.
  139. *
  140. * @count_c: count-C of the first packet, 32 bit.
  141. *
  142. *
  143. * In one request, multiple packets can be ciphered.
  144. *
  145. * The i-th packet are defined in cipher_iov[i-1].
  146. * The ciphering of i-th packet starts from offset 0 of the PDU specified
  147. * by cipher_iov[i-1].addr, for cipher_iov[i-1].size bytes of data.
  148. * If the PDU is not byte aligned, set the cipher_iov[i-1].size value
  149. * to the rounded up value of the packet size. Eg, PDU size of
  150. * 253 bits, set the packet size to 32 bytes.
  151. *
  152. * Ciphering are done in place. That is, the ciphering
  153. * input and output data are both in cipher_iov[i-1].addr for the i-th
  154. * packet.
  155. *
  156. * For each packet the input arguments of bearer, direction,
  157. * ckey, algorithm have to be the same. count_c is the ciphering sequence
  158. * number of the first packet. The 2nd packet's ciphering sequence
  159. * number is assumed to be count_c + 1. The 3rd packet's ciphering sequence
  160. * number is count_c + 2.....
  161. */
  162. #define MAX_NUM_V_MULTI_PKT 20
  163. struct cipher_iov {
  164. unsigned char *addr;
  165. unsigned short size;
  166. };
  167. struct qce_f8_variable_multi_pkt_req {
  168. unsigned short num_pkt;
  169. struct cipher_iov cipher_iov[MAX_NUM_V_MULTI_PKT];
  170. struct qce_f8_req qce_f8_req;
  171. };
  172. /**
  173. * struct qce_f9_req - qce f9 request
  174. * @message: message
  175. * @msize: message size in bytes (include the last partial byte).
  176. * @last_bits: valid bits in the last byte of message.
  177. * @mac_i: 32 bit message authentication code, to be returned.
  178. * @fresh: random 32 bit number, one per user.
  179. * @count_i: 32 bit count-I integrity sequence number.
  180. * @direction: uplink or donwlink.
  181. * @ikey: 128 bits of integrity key,
  182. * ikey[0] bit 127-120, ikey[1] bit 119-112,.., ikey[15] bit 7-0.
  183. * @algorithm: Kasumi, or Snow3G.
  184. */
  185. struct qce_f9_req {
  186. __u8 *message;
  187. __u16 msize;
  188. __u8 last_bits;
  189. __u32 mac_i;
  190. __u32 fresh;
  191. __u32 count_i;
  192. enum qce_ota_dir_enum direction;
  193. __u8 ikey[OTA_KEY_SIZE];
  194. enum qce_ota_algo_enum algorithm;
  195. int current_req_info;
  196. };
  197. #define QCOTA_IOC_MAGIC 0x85
  198. #define QCOTA_F8_REQ _IOWR(QCOTA_IOC_MAGIC, 1, struct qce_f8_req)
  199. #define QCOTA_F8_MPKT_REQ _IOWR(QCOTA_IOC_MAGIC, 2, struct qce_f8_multi_pkt_req)
  200. #define QCOTA_F9_REQ _IOWR(QCOTA_IOC_MAGIC, 3, struct qce_f9_req)
  201. #define QCOTA_F8_V_MPKT_REQ _IOWR(QCOTA_IOC_MAGIC, 4,\
  202. struct qce_f8_variable_multi_pkt_req)
  203. #endif /* _UAPI_QCOTA_H */