2 * Copyright © 2016 Intel Corporation
5 * Scott Bauer <scott.bauer@intel.com>
6 * Rafael Antognolli <rafael.antognolli@intel.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms and conditions of the GNU General Public License,
10 * version 2, as published by the Free Software Foundation.
12 * This program is distributed in the hope it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
18 #define pr_fmt(fmt) KBUILD_MODNAME ":OPAL: " fmt
20 #include <linux/delay.h>
21 #include <linux/device.h>
22 #include <linux/kernel.h>
23 #include <linux/list.h>
24 #include <linux/genhd.h>
25 #include <linux/slab.h>
26 #include <linux/uaccess.h>
27 #include <uapi/linux/sed-opal.h>
28 #include <linux/sed-opal.h>
29 #include <linux/string.h>
30 #include <linux/kdev_t.h>
32 #include "opal_proto.h"
34 #define IO_BUFFER_LENGTH 2048
38 int (*fn
)(struct opal_dev
*dev
, void *data
);
41 typedef int (cont_fn
)(struct opal_dev
*dev
);
43 enum opal_atom_width
{
52 * On the parsed response, we don't store again the toks that are already
53 * stored in the response buffer. Instead, for each token, we just store a
54 * pointer to the position in the buffer where the token starts, and the size
55 * of the token in bytes.
57 struct opal_resp_tok
{
60 enum opal_response_token type
;
61 enum opal_atom_width width
;
69 * From the response header it's not possible to know how many tokens there are
70 * on the payload. So we hardcode that the maximum will be MAX_TOKS, and later
71 * if we start dealing with messages that have more than that, we can increase
72 * this number. This is done to avoid having to make two passes through the
73 * response, the first one counting how many tokens we have and the second one
74 * actually storing the positions.
78 struct opal_resp_tok toks
[MAX_TOKS
];
85 sec_send_recv
*send_recv
;
87 const struct opal_step
*steps
;
88 struct mutex dev_lock
;
96 u8 cmd
[IO_BUFFER_LENGTH
];
97 u8 resp
[IO_BUFFER_LENGTH
];
99 struct parsed_resp parsed
;
103 struct list_head unlk_lst
;
107 static const u8 opaluid
[][OPAL_UID_LENGTH
] = {
110 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff },
112 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 },
114 { 0x00, 0x00, 0x02, 0x05, 0x00, 0x00, 0x00, 0x01 },
115 [OPAL_LOCKINGSP_UID
] =
116 { 0x00, 0x00, 0x02, 0x05, 0x00, 0x00, 0x00, 0x02 },
117 [OPAL_ENTERPRISE_LOCKINGSP_UID
] =
118 { 0x00, 0x00, 0x02, 0x05, 0x00, 0x01, 0x00, 0x01 },
120 { 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x01 },
122 { 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x06 },
124 { 0x00, 0x00, 0x00, 0x09, 0x00, 0x01, 0x00, 0x01 },
126 { 0x00, 0x00, 0x00, 0x09, 0x00, 0x03, 0x00, 0x01 },
128 { 0x00, 0x00, 0x00, 0x09, 0x00, 0x03, 0x00, 0x02 },
130 { 0x00, 0x00, 0x00, 0x09, 0x00, 0x01, 0xff, 0x01 },
131 [OPAL_ENTERPRISE_BANDMASTER0_UID
] =
132 { 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x80, 0x01 },
133 [OPAL_ENTERPRISE_ERASEMASTER_UID
] =
134 { 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x84, 0x01 },
138 [OPAL_LOCKINGRANGE_GLOBAL
] =
139 { 0x00, 0x00, 0x08, 0x02, 0x00, 0x00, 0x00, 0x01 },
140 [OPAL_LOCKINGRANGE_ACE_RDLOCKED
] =
141 { 0x00, 0x00, 0x00, 0x08, 0x00, 0x03, 0xE0, 0x01 },
142 [OPAL_LOCKINGRANGE_ACE_WRLOCKED
] =
143 { 0x00, 0x00, 0x00, 0x08, 0x00, 0x03, 0xE8, 0x01 },
145 { 0x00, 0x00, 0x08, 0x03, 0x00, 0x00, 0x00, 0x01 },
147 { 0x00, 0x00, 0x08, 0x04, 0x00, 0x00, 0x00, 0x00 },
148 [OPAL_AUTHORITY_TABLE
] =
149 { 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00},
151 { 0x00, 0x00, 0x00, 0x0B, 0x00, 0x00, 0x00, 0x00},
152 [OPAL_LOCKING_INFO_TABLE
] =
153 { 0x00, 0x00, 0x08, 0x01, 0x00, 0x00, 0x00, 0x01 },
154 [OPAL_ENTERPRISE_LOCKING_INFO_TABLE
] =
155 { 0x00, 0x00, 0x08, 0x01, 0x00, 0x00, 0x00, 0x00 },
157 /* C_PIN_TABLE object ID's */
160 { 0x00, 0x00, 0x00, 0x0B, 0x00, 0x00, 0x84, 0x02},
162 { 0x00, 0x00, 0x00, 0x0B, 0x00, 0x00, 0x00, 0x01},
163 [OPAL_C_PIN_ADMIN1
] =
164 { 0x00, 0x00, 0x00, 0x0B, 0x00, 0x01, 0x00, 0x01},
166 /* half UID's (only first 4 bytes used) */
168 [OPAL_HALF_UID_AUTHORITY_OBJ_REF
] =
169 { 0x00, 0x00, 0x0C, 0x05, 0xff, 0xff, 0xff, 0xff },
170 [OPAL_HALF_UID_BOOLEAN_ACE
] =
171 { 0x00, 0x00, 0x04, 0x0E, 0xff, 0xff, 0xff, 0xff },
173 /* special value for omitted optional parameter */
175 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
179 * TCG Storage SSC Methods.
180 * Derived from: TCG_Storage_Architecture_Core_Spec_v2.01_r1.00
181 * Section: 6.3 Assigned UIDs
183 static const u8 opalmethod
[][OPAL_UID_LENGTH
] = {
185 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01 },
186 [OPAL_STARTSESSION
] =
187 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x02 },
189 { 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x02, 0x02 },
191 { 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x02, 0x03 },
193 { 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x06 },
195 { 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07 },
197 { 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x08 },
198 [OPAL_EAUTHENTICATE
] =
199 { 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x0c },
201 { 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x0d },
203 { 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x10 },
205 { 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x11 },
207 { 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x16 },
209 { 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x17 },
210 [OPAL_AUTHENTICATE
] =
211 { 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x1c },
213 { 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x06, 0x01 },
215 { 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x08, 0x03 },
218 static int end_opal_session_error(struct opal_dev
*dev
);
220 struct opal_suspend_data
{
221 struct opal_lock_unlock unlk
;
223 struct list_head node
;
228 * TCG_Storage_Architecture_Core_Spec_v2.01_r1.00
229 * Section: 5.1.5 Method Status Codes
231 static const char * const opal_errors
[] = {
239 "No Sessions Available",
240 "Uniqueness Conflict",
241 "Insufficient Space",
248 "Transaction Failure",
250 "Authority Locked Out",
253 static const char *opal_error_to_human(int error
)
258 if (error
>= ARRAY_SIZE(opal_errors
) || error
< 0)
259 return "Unknown Error";
261 return opal_errors
[error
];
264 static void print_buffer(const u8
*ptr
, u32 length
)
267 print_hex_dump_bytes("OPAL: ", DUMP_PREFIX_OFFSET
, ptr
, length
);
272 static bool check_tper(const void *data
)
274 const struct d0_tper_features
*tper
= data
;
275 u8 flags
= tper
->supported_features
;
277 if (!(flags
& TPER_SYNC_SUPPORTED
)) {
278 pr_err("TPer sync not supported. flags = %d\n",
279 tper
->supported_features
);
286 static bool check_sum(const void *data
)
288 const struct d0_single_user_mode
*sum
= data
;
289 u32 nlo
= be32_to_cpu(sum
->num_locking_objects
);
292 pr_err("Need at least one locking object.\n");
296 pr_debug("Number of locking objects: %d\n", nlo
);
301 static u16
get_comid_v100(const void *data
)
303 const struct d0_opal_v100
*v100
= data
;
305 return be16_to_cpu(v100
->baseComID
);
308 static u16
get_comid_v200(const void *data
)
310 const struct d0_opal_v200
*v200
= data
;
312 return be16_to_cpu(v200
->baseComID
);
315 static int opal_send_cmd(struct opal_dev
*dev
)
317 return dev
->send_recv(dev
->data
, dev
->comid
, TCG_SECP_01
,
318 dev
->cmd
, IO_BUFFER_LENGTH
,
322 static int opal_recv_cmd(struct opal_dev
*dev
)
324 return dev
->send_recv(dev
->data
, dev
->comid
, TCG_SECP_01
,
325 dev
->resp
, IO_BUFFER_LENGTH
,
329 static int opal_recv_check(struct opal_dev
*dev
)
331 size_t buflen
= IO_BUFFER_LENGTH
;
332 void *buffer
= dev
->resp
;
333 struct opal_header
*hdr
= buffer
;
337 pr_debug("Sent OPAL command: outstanding=%d, minTransfer=%d\n",
338 hdr
->cp
.outstandingData
,
339 hdr
->cp
.minTransfer
);
341 if (hdr
->cp
.outstandingData
== 0 ||
342 hdr
->cp
.minTransfer
!= 0)
345 memset(buffer
, 0, buflen
);
346 ret
= opal_recv_cmd(dev
);
352 static int opal_send_recv(struct opal_dev
*dev
, cont_fn
*cont
)
356 ret
= opal_send_cmd(dev
);
359 ret
= opal_recv_cmd(dev
);
362 ret
= opal_recv_check(dev
);
368 static void check_geometry(struct opal_dev
*dev
, const void *data
)
370 const struct d0_geometry_features
*geo
= data
;
372 dev
->align
= geo
->alignment_granularity
;
373 dev
->lowest_lba
= geo
->lowest_aligned_lba
;
376 static int next(struct opal_dev
*dev
)
378 const struct opal_step
*step
;
379 int state
= 0, error
= 0;
382 step
= &dev
->steps
[state
];
386 error
= step
->fn(dev
, step
->data
);
388 pr_err("Error on step function: %d with error %d: %s\n",
390 opal_error_to_human(error
));
392 /* For each OPAL command we do a discovery0 then we
393 * start some sort of session.
394 * If we haven't passed state 1 then there was an error
395 * on discovery0 or during the attempt to start a
396 * session. Therefore we shouldn't attempt to terminate
397 * a session, as one has not yet been created.
400 end_opal_session_error(dev
);
411 static int opal_discovery0_end(struct opal_dev
*dev
)
413 bool found_com_id
= false, supported
= true, single_user
= false;
414 const struct d0_header
*hdr
= (struct d0_header
*)dev
->resp
;
415 const u8
*epos
= dev
->resp
, *cpos
= dev
->resp
;
417 u32 hlen
= be32_to_cpu(hdr
->length
);
419 print_buffer(dev
->resp
, hlen
);
421 if (hlen
> IO_BUFFER_LENGTH
- sizeof(*hdr
)) {
422 pr_warn("Discovery length overflows buffer (%zu+%u)/%u\n",
423 sizeof(*hdr
), hlen
, IO_BUFFER_LENGTH
);
427 epos
+= hlen
; /* end of buffer */
428 cpos
+= sizeof(*hdr
); /* current position on buffer */
430 while (cpos
< epos
&& supported
) {
431 const struct d0_features
*body
=
432 (const struct d0_features
*)cpos
;
434 switch (be16_to_cpu(body
->code
)) {
436 supported
= check_tper(body
->features
);
439 single_user
= check_sum(body
->features
);
442 check_geometry(dev
, body
);
447 /* some ignored properties */
448 pr_debug("Found OPAL feature description: %d\n",
449 be16_to_cpu(body
->code
));
452 comid
= get_comid_v100(body
->features
);
456 comid
= get_comid_v200(body
->features
);
459 case 0xbfff ... 0xffff:
460 /* vendor specific, just ignore */
463 pr_debug("OPAL Unknown feature: %d\n",
464 be16_to_cpu(body
->code
));
467 cpos
+= body
->length
+ 4;
471 pr_debug("This device is not Opal enabled. Not Supported!\n");
476 pr_debug("Device doesn't support single user mode\n");
480 pr_debug("Could not find OPAL comid for device. Returning early\n");
489 static int opal_discovery0(struct opal_dev
*dev
, void *data
)
493 memset(dev
->resp
, 0, IO_BUFFER_LENGTH
);
494 dev
->comid
= OPAL_DISCOVERY_COMID
;
495 ret
= opal_recv_cmd(dev
);
498 return opal_discovery0_end(dev
);
501 static void add_token_u8(int *err
, struct opal_dev
*cmd
, u8 tok
)
505 if (cmd
->pos
>= IO_BUFFER_LENGTH
- 1) {
506 pr_err("Error adding u8: end of buffer.\n");
510 cmd
->cmd
[cmd
->pos
++] = tok
;
513 static void add_short_atom_header(struct opal_dev
*cmd
, bool bytestring
,
514 bool has_sign
, int len
)
519 atom
= SHORT_ATOM_ID
;
520 atom
|= bytestring
? SHORT_ATOM_BYTESTRING
: 0;
521 atom
|= has_sign
? SHORT_ATOM_SIGNED
: 0;
522 atom
|= len
& SHORT_ATOM_LEN_MASK
;
524 add_token_u8(&err
, cmd
, atom
);
527 static void add_medium_atom_header(struct opal_dev
*cmd
, bool bytestring
,
528 bool has_sign
, int len
)
532 header0
= MEDIUM_ATOM_ID
;
533 header0
|= bytestring
? MEDIUM_ATOM_BYTESTRING
: 0;
534 header0
|= has_sign
? MEDIUM_ATOM_SIGNED
: 0;
535 header0
|= (len
>> 8) & MEDIUM_ATOM_LEN_MASK
;
536 cmd
->cmd
[cmd
->pos
++] = header0
;
537 cmd
->cmd
[cmd
->pos
++] = len
;
540 static void add_token_u64(int *err
, struct opal_dev
*cmd
, u64 number
)
547 if (!(number
& ~TINY_ATOM_DATA_MASK
)) {
548 add_token_u8(err
, cmd
, number
);
553 len
= DIV_ROUND_UP(msb
, 4);
555 if (cmd
->pos
>= IO_BUFFER_LENGTH
- len
- 1) {
556 pr_err("Error adding u64: end of buffer.\n");
560 add_short_atom_header(cmd
, false, false, len
);
562 n
= number
>> (len
* 8);
563 add_token_u8(err
, cmd
, n
);
567 static void add_token_bytestring(int *err
, struct opal_dev
*cmd
,
568 const u8
*bytestring
, size_t len
)
570 size_t header_len
= 1;
571 bool is_short_atom
= true;
576 if (len
& ~SHORT_ATOM_LEN_MASK
) {
578 is_short_atom
= false;
581 if (len
>= IO_BUFFER_LENGTH
- cmd
->pos
- header_len
) {
582 pr_err("Error adding bytestring: end of buffer.\n");
588 add_short_atom_header(cmd
, true, false, len
);
590 add_medium_atom_header(cmd
, true, false, len
);
592 memcpy(&cmd
->cmd
[cmd
->pos
], bytestring
, len
);
597 static int build_locking_range(u8
*buffer
, size_t length
, u8 lr
)
599 if (length
> OPAL_UID_LENGTH
) {
600 pr_err("Can't build locking range. Length OOB\n");
604 memcpy(buffer
, opaluid
[OPAL_LOCKINGRANGE_GLOBAL
], OPAL_UID_LENGTH
);
608 buffer
[5] = LOCKING_RANGE_NON_GLOBAL
;
614 static int build_locking_user(u8
*buffer
, size_t length
, u8 lr
)
616 if (length
> OPAL_UID_LENGTH
) {
617 pr_err("Can't build locking range user, Length OOB\n");
621 memcpy(buffer
, opaluid
[OPAL_USER1_UID
], OPAL_UID_LENGTH
);
628 static void set_comid(struct opal_dev
*cmd
, u16 comid
)
630 struct opal_header
*hdr
= (struct opal_header
*)cmd
->cmd
;
632 hdr
->cp
.extendedComID
[0] = comid
>> 8;
633 hdr
->cp
.extendedComID
[1] = comid
;
634 hdr
->cp
.extendedComID
[2] = 0;
635 hdr
->cp
.extendedComID
[3] = 0;
638 static int cmd_finalize(struct opal_dev
*cmd
, u32 hsn
, u32 tsn
)
640 struct opal_header
*hdr
;
643 add_token_u8(&err
, cmd
, OPAL_ENDOFDATA
);
644 add_token_u8(&err
, cmd
, OPAL_STARTLIST
);
645 add_token_u8(&err
, cmd
, 0);
646 add_token_u8(&err
, cmd
, 0);
647 add_token_u8(&err
, cmd
, 0);
648 add_token_u8(&err
, cmd
, OPAL_ENDLIST
);
651 pr_err("Error finalizing command.\n");
655 hdr
= (struct opal_header
*) cmd
->cmd
;
657 hdr
->pkt
.tsn
= cpu_to_be32(tsn
);
658 hdr
->pkt
.hsn
= cpu_to_be32(hsn
);
660 hdr
->subpkt
.length
= cpu_to_be32(cmd
->pos
- sizeof(*hdr
));
661 while (cmd
->pos
% 4) {
662 if (cmd
->pos
>= IO_BUFFER_LENGTH
) {
663 pr_err("Error: Buffer overrun\n");
666 cmd
->cmd
[cmd
->pos
++] = 0;
668 hdr
->pkt
.length
= cpu_to_be32(cmd
->pos
- sizeof(hdr
->cp
) -
670 hdr
->cp
.length
= cpu_to_be32(cmd
->pos
- sizeof(hdr
->cp
));
675 static const struct opal_resp_tok
*response_get_token(
676 const struct parsed_resp
*resp
,
679 const struct opal_resp_tok
*tok
;
681 if (n
>= resp
->num
) {
682 pr_err("Token number doesn't exist: %d, resp: %d\n",
684 return ERR_PTR(-EINVAL
);
687 tok
= &resp
->toks
[n
];
689 pr_err("Token length must be non-zero\n");
690 return ERR_PTR(-EINVAL
);
696 static ssize_t
response_parse_tiny(struct opal_resp_tok
*tok
,
701 tok
->width
= OPAL_WIDTH_TINY
;
703 if (pos
[0] & TINY_ATOM_SIGNED
) {
704 tok
->type
= OPAL_DTA_TOKENID_SINT
;
706 tok
->type
= OPAL_DTA_TOKENID_UINT
;
707 tok
->stored
.u
= pos
[0] & 0x3f;
713 static ssize_t
response_parse_short(struct opal_resp_tok
*tok
,
717 tok
->len
= (pos
[0] & SHORT_ATOM_LEN_MASK
) + 1;
718 tok
->width
= OPAL_WIDTH_SHORT
;
720 if (pos
[0] & SHORT_ATOM_BYTESTRING
) {
721 tok
->type
= OPAL_DTA_TOKENID_BYTESTRING
;
722 } else if (pos
[0] & SHORT_ATOM_SIGNED
) {
723 tok
->type
= OPAL_DTA_TOKENID_SINT
;
728 tok
->type
= OPAL_DTA_TOKENID_UINT
;
730 pr_warn("uint64 with more than 8 bytes\n");
733 for (i
= tok
->len
- 1; i
> 0; i
--) {
734 u_integer
|= ((u64
)pos
[i
] << (8 * b
));
737 tok
->stored
.u
= u_integer
;
743 static ssize_t
response_parse_medium(struct opal_resp_tok
*tok
,
747 tok
->len
= (((pos
[0] & MEDIUM_ATOM_LEN_MASK
) << 8) | pos
[1]) + 2;
748 tok
->width
= OPAL_WIDTH_MEDIUM
;
750 if (pos
[0] & MEDIUM_ATOM_BYTESTRING
)
751 tok
->type
= OPAL_DTA_TOKENID_BYTESTRING
;
752 else if (pos
[0] & MEDIUM_ATOM_SIGNED
)
753 tok
->type
= OPAL_DTA_TOKENID_SINT
;
755 tok
->type
= OPAL_DTA_TOKENID_UINT
;
760 static ssize_t
response_parse_long(struct opal_resp_tok
*tok
,
764 tok
->len
= ((pos
[1] << 16) | (pos
[2] << 8) | pos
[3]) + 4;
765 tok
->width
= OPAL_WIDTH_LONG
;
767 if (pos
[0] & LONG_ATOM_BYTESTRING
)
768 tok
->type
= OPAL_DTA_TOKENID_BYTESTRING
;
769 else if (pos
[0] & LONG_ATOM_SIGNED
)
770 tok
->type
= OPAL_DTA_TOKENID_SINT
;
772 tok
->type
= OPAL_DTA_TOKENID_UINT
;
777 static ssize_t
response_parse_token(struct opal_resp_tok
*tok
,
782 tok
->type
= OPAL_DTA_TOKENID_TOKEN
;
783 tok
->width
= OPAL_WIDTH_TOKEN
;
788 static int response_parse(const u8
*buf
, size_t length
,
789 struct parsed_resp
*resp
)
791 const struct opal_header
*hdr
;
792 struct opal_resp_tok
*iter
;
795 ssize_t token_length
;
797 u32 clen
, plen
, slen
;
805 hdr
= (struct opal_header
*)buf
;
809 clen
= be32_to_cpu(hdr
->cp
.length
);
810 plen
= be32_to_cpu(hdr
->pkt
.length
);
811 slen
= be32_to_cpu(hdr
->subpkt
.length
);
812 pr_debug("Response size: cp: %u, pkt: %u, subpkt: %u\n",
815 if (clen
== 0 || plen
== 0 || slen
== 0 ||
816 slen
> IO_BUFFER_LENGTH
- sizeof(*hdr
)) {
817 pr_err("Bad header length. cp: %u, pkt: %u, subpkt: %u\n",
819 print_buffer(pos
, sizeof(*hdr
));
823 if (pos
> buf
+ length
)
828 print_buffer(pos
, total
);
830 if (pos
[0] <= TINY_ATOM_BYTE
) /* tiny atom */
831 token_length
= response_parse_tiny(iter
, pos
);
832 else if (pos
[0] <= SHORT_ATOM_BYTE
) /* short atom */
833 token_length
= response_parse_short(iter
, pos
);
834 else if (pos
[0] <= MEDIUM_ATOM_BYTE
) /* medium atom */
835 token_length
= response_parse_medium(iter
, pos
);
836 else if (pos
[0] <= LONG_ATOM_BYTE
) /* long atom */
837 token_length
= response_parse_long(iter
, pos
);
839 token_length
= response_parse_token(iter
, pos
);
841 if (token_length
< 0)
845 total
-= token_length
;
850 if (num_entries
== 0) {
851 pr_err("Couldn't parse response.\n");
854 resp
->num
= num_entries
;
859 static size_t response_get_string(const struct parsed_resp
*resp
, int n
,
864 pr_err("Response is NULL\n");
869 pr_err("Response has %d tokens. Can't access %d\n",
874 if (resp
->toks
[n
].type
!= OPAL_DTA_TOKENID_BYTESTRING
) {
875 pr_err("Token is not a byte string!\n");
879 *store
= resp
->toks
[n
].pos
+ 1;
880 return resp
->toks
[n
].len
- 1;
883 static u64
response_get_u64(const struct parsed_resp
*resp
, int n
)
886 pr_err("Response is NULL\n");
891 pr_err("Response has %d tokens. Can't access %d\n",
896 if (resp
->toks
[n
].type
!= OPAL_DTA_TOKENID_UINT
) {
897 pr_err("Token is not unsigned it: %d\n",
902 if (!(resp
->toks
[n
].width
== OPAL_WIDTH_TINY
||
903 resp
->toks
[n
].width
== OPAL_WIDTH_SHORT
)) {
904 pr_err("Atom is not short or tiny: %d\n",
905 resp
->toks
[n
].width
);
909 return resp
->toks
[n
].stored
.u
;
912 static bool response_token_matches(const struct opal_resp_tok
*token
, u8 match
)
915 token
->type
!= OPAL_DTA_TOKENID_TOKEN
||
916 token
->pos
[0] != match
)
921 static u8
response_status(const struct parsed_resp
*resp
)
923 const struct opal_resp_tok
*tok
;
925 tok
= response_get_token(resp
, 0);
926 if (response_token_matches(tok
, OPAL_ENDOFSESSION
))
930 return DTAERROR_NO_METHOD_STATUS
;
932 tok
= response_get_token(resp
, resp
->num
- 5);
933 if (!response_token_matches(tok
, OPAL_STARTLIST
))
934 return DTAERROR_NO_METHOD_STATUS
;
936 tok
= response_get_token(resp
, resp
->num
- 1);
937 if (!response_token_matches(tok
, OPAL_ENDLIST
))
938 return DTAERROR_NO_METHOD_STATUS
;
940 return response_get_u64(resp
, resp
->num
- 4);
943 /* Parses and checks for errors */
944 static int parse_and_check_status(struct opal_dev
*dev
)
948 print_buffer(dev
->cmd
, dev
->pos
);
950 error
= response_parse(dev
->resp
, IO_BUFFER_LENGTH
, &dev
->parsed
);
952 pr_err("Couldn't parse response.\n");
956 return response_status(&dev
->parsed
);
959 static void clear_opal_cmd(struct opal_dev
*dev
)
961 dev
->pos
= sizeof(struct opal_header
);
962 memset(dev
->cmd
, 0, IO_BUFFER_LENGTH
);
965 static int start_opal_session_cont(struct opal_dev
*dev
)
970 error
= parse_and_check_status(dev
);
974 hsn
= response_get_u64(&dev
->parsed
, 4);
975 tsn
= response_get_u64(&dev
->parsed
, 5);
977 if (hsn
== 0 && tsn
== 0) {
978 pr_err("Couldn't authenticate session\n");
987 static void add_suspend_info(struct opal_dev
*dev
,
988 struct opal_suspend_data
*sus
)
990 struct opal_suspend_data
*iter
;
992 list_for_each_entry(iter
, &dev
->unlk_lst
, node
) {
993 if (iter
->lr
== sus
->lr
) {
994 list_del(&iter
->node
);
999 list_add_tail(&sus
->node
, &dev
->unlk_lst
);
1002 static int end_session_cont(struct opal_dev
*dev
)
1006 return parse_and_check_status(dev
);
1009 static int finalize_and_send(struct opal_dev
*dev
, cont_fn cont
)
1013 ret
= cmd_finalize(dev
, dev
->hsn
, dev
->tsn
);
1015 pr_err("Error finalizing command buffer: %d\n", ret
);
1019 print_buffer(dev
->cmd
, dev
->pos
);
1021 return opal_send_recv(dev
, cont
);
1024 static int gen_key(struct opal_dev
*dev
, void *data
)
1026 u8 uid
[OPAL_UID_LENGTH
];
1029 clear_opal_cmd(dev
);
1030 set_comid(dev
, dev
->comid
);
1032 memcpy(uid
, dev
->prev_data
, min(sizeof(uid
), dev
->prev_d_len
));
1033 kfree(dev
->prev_data
);
1034 dev
->prev_data
= NULL
;
1036 add_token_u8(&err
, dev
, OPAL_CALL
);
1037 add_token_bytestring(&err
, dev
, uid
, OPAL_UID_LENGTH
);
1038 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_GENKEY
],
1040 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1041 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1044 pr_err("Error building gen key command\n");
1048 return finalize_and_send(dev
, parse_and_check_status
);
1051 static int get_active_key_cont(struct opal_dev
*dev
)
1053 const char *activekey
;
1057 error
= parse_and_check_status(dev
);
1060 keylen
= response_get_string(&dev
->parsed
, 4, &activekey
);
1062 pr_err("%s: Couldn't extract the Activekey from the response\n",
1064 return OPAL_INVAL_PARAM
;
1066 dev
->prev_data
= kmemdup(activekey
, keylen
, GFP_KERNEL
);
1068 if (!dev
->prev_data
)
1071 dev
->prev_d_len
= keylen
;
1076 static int get_active_key(struct opal_dev
*dev
, void *data
)
1078 u8 uid
[OPAL_UID_LENGTH
];
1082 clear_opal_cmd(dev
);
1083 set_comid(dev
, dev
->comid
);
1085 err
= build_locking_range(uid
, sizeof(uid
), *lr
);
1090 add_token_u8(&err
, dev
, OPAL_CALL
);
1091 add_token_bytestring(&err
, dev
, uid
, OPAL_UID_LENGTH
);
1092 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_GET
], OPAL_UID_LENGTH
);
1093 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1094 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1095 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1096 add_token_u8(&err
, dev
, 3); /* startCloumn */
1097 add_token_u8(&err
, dev
, 10); /* ActiveKey */
1098 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1099 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1100 add_token_u8(&err
, dev
, 4); /* endColumn */
1101 add_token_u8(&err
, dev
, 10); /* ActiveKey */
1102 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1103 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1104 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1106 pr_err("Error building get active key command\n");
1110 return finalize_and_send(dev
, get_active_key_cont
);
1113 static int generic_lr_enable_disable(struct opal_dev
*dev
,
1114 u8
*uid
, bool rle
, bool wle
,
1119 add_token_u8(&err
, dev
, OPAL_CALL
);
1120 add_token_bytestring(&err
, dev
, uid
, OPAL_UID_LENGTH
);
1121 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_SET
], OPAL_UID_LENGTH
);
1123 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1124 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1125 add_token_u8(&err
, dev
, OPAL_VALUES
);
1126 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1128 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1129 add_token_u8(&err
, dev
, 5); /* ReadLockEnabled */
1130 add_token_u8(&err
, dev
, rle
);
1131 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1133 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1134 add_token_u8(&err
, dev
, 6); /* WriteLockEnabled */
1135 add_token_u8(&err
, dev
, wle
);
1136 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1138 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1139 add_token_u8(&err
, dev
, OPAL_READLOCKED
);
1140 add_token_u8(&err
, dev
, rl
);
1141 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1143 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1144 add_token_u8(&err
, dev
, OPAL_WRITELOCKED
);
1145 add_token_u8(&err
, dev
, wl
);
1146 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1148 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1149 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1150 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1154 static inline int enable_global_lr(struct opal_dev
*dev
, u8
*uid
,
1155 struct opal_user_lr_setup
*setup
)
1159 err
= generic_lr_enable_disable(dev
, uid
, !!setup
->RLE
, !!setup
->WLE
,
1162 pr_err("Failed to create enable global lr command\n");
1166 static int setup_locking_range(struct opal_dev
*dev
, void *data
)
1168 u8 uid
[OPAL_UID_LENGTH
];
1169 struct opal_user_lr_setup
*setup
= data
;
1173 clear_opal_cmd(dev
);
1174 set_comid(dev
, dev
->comid
);
1176 lr
= setup
->session
.opal_key
.lr
;
1177 err
= build_locking_range(uid
, sizeof(uid
), lr
);
1182 err
= enable_global_lr(dev
, uid
, setup
);
1184 add_token_u8(&err
, dev
, OPAL_CALL
);
1185 add_token_bytestring(&err
, dev
, uid
, OPAL_UID_LENGTH
);
1186 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_SET
],
1189 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1190 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1191 add_token_u8(&err
, dev
, OPAL_VALUES
);
1192 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1194 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1195 add_token_u8(&err
, dev
, 3); /* Ranges Start */
1196 add_token_u64(&err
, dev
, setup
->range_start
);
1197 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1199 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1200 add_token_u8(&err
, dev
, 4); /* Ranges length */
1201 add_token_u64(&err
, dev
, setup
->range_length
);
1202 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1204 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1205 add_token_u8(&err
, dev
, 5); /*ReadLockEnabled */
1206 add_token_u64(&err
, dev
, !!setup
->RLE
);
1207 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1209 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1210 add_token_u8(&err
, dev
, 6); /*WriteLockEnabled*/
1211 add_token_u64(&err
, dev
, !!setup
->WLE
);
1212 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1214 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1215 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1216 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1220 pr_err("Error building Setup Locking range command.\n");
1225 return finalize_and_send(dev
, parse_and_check_status
);
1228 static int start_generic_opal_session(struct opal_dev
*dev
,
1230 enum opal_uid sp_type
,
1237 if (key
== NULL
&& auth
!= OPAL_ANYBODY_UID
) {
1238 pr_err("%s: Attempted to open ADMIN_SP Session without a Host" \
1239 "Challenge, and not as the Anybody UID\n", __func__
);
1240 return OPAL_INVAL_PARAM
;
1243 clear_opal_cmd(dev
);
1245 set_comid(dev
, dev
->comid
);
1246 hsn
= GENERIC_HOST_SESSION_NUM
;
1248 add_token_u8(&err
, dev
, OPAL_CALL
);
1249 add_token_bytestring(&err
, dev
, opaluid
[OPAL_SMUID_UID
],
1251 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_STARTSESSION
],
1253 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1254 add_token_u64(&err
, dev
, hsn
);
1255 add_token_bytestring(&err
, dev
, opaluid
[sp_type
], OPAL_UID_LENGTH
);
1256 add_token_u8(&err
, dev
, 1);
1259 case OPAL_ANYBODY_UID
:
1260 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1262 case OPAL_ADMIN1_UID
:
1264 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1265 add_token_u8(&err
, dev
, 0); /* HostChallenge */
1266 add_token_bytestring(&err
, dev
, key
, key_len
);
1267 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1268 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1269 add_token_u8(&err
, dev
, 3); /* HostSignAuth */
1270 add_token_bytestring(&err
, dev
, opaluid
[auth
],
1272 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1273 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1276 pr_err("Cannot start Admin SP session with auth %d\n", auth
);
1277 return OPAL_INVAL_PARAM
;
1281 pr_err("Error building start adminsp session command.\n");
1285 return finalize_and_send(dev
, start_opal_session_cont
);
1288 static int start_anybodyASP_opal_session(struct opal_dev
*dev
, void *data
)
1290 return start_generic_opal_session(dev
, OPAL_ANYBODY_UID
,
1291 OPAL_ADMINSP_UID
, NULL
, 0);
1294 static int start_SIDASP_opal_session(struct opal_dev
*dev
, void *data
)
1297 const u8
*key
= dev
->prev_data
;
1300 const struct opal_key
*okey
= data
;
1301 ret
= start_generic_opal_session(dev
, OPAL_SID_UID
,
1306 ret
= start_generic_opal_session(dev
, OPAL_SID_UID
,
1308 key
, dev
->prev_d_len
);
1310 dev
->prev_data
= NULL
;
1315 static int start_admin1LSP_opal_session(struct opal_dev
*dev
, void *data
)
1317 struct opal_key
*key
= data
;
1318 return start_generic_opal_session(dev
, OPAL_ADMIN1_UID
,
1320 key
->key
, key
->key_len
);
1323 static int start_auth_opal_session(struct opal_dev
*dev
, void *data
)
1325 struct opal_session_info
*session
= data
;
1326 u8 lk_ul_user
[OPAL_UID_LENGTH
];
1327 size_t keylen
= session
->opal_key
.key_len
;
1330 u8
*key
= session
->opal_key
.key
;
1331 u32 hsn
= GENERIC_HOST_SESSION_NUM
;
1333 clear_opal_cmd(dev
);
1334 set_comid(dev
, dev
->comid
);
1337 err
= build_locking_user(lk_ul_user
, sizeof(lk_ul_user
),
1338 session
->opal_key
.lr
);
1342 } else if (session
->who
!= OPAL_ADMIN1
&& !session
->sum
) {
1343 err
= build_locking_user(lk_ul_user
, sizeof(lk_ul_user
),
1348 memcpy(lk_ul_user
, opaluid
[OPAL_ADMIN1_UID
], OPAL_UID_LENGTH
);
1350 add_token_u8(&err
, dev
, OPAL_CALL
);
1351 add_token_bytestring(&err
, dev
, opaluid
[OPAL_SMUID_UID
],
1353 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_STARTSESSION
],
1356 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1357 add_token_u64(&err
, dev
, hsn
);
1358 add_token_bytestring(&err
, dev
, opaluid
[OPAL_LOCKINGSP_UID
],
1360 add_token_u8(&err
, dev
, 1);
1361 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1362 add_token_u8(&err
, dev
, 0);
1363 add_token_bytestring(&err
, dev
, key
, keylen
);
1364 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1365 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1366 add_token_u8(&err
, dev
, 3);
1367 add_token_bytestring(&err
, dev
, lk_ul_user
, OPAL_UID_LENGTH
);
1368 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1369 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1372 pr_err("Error building STARTSESSION command.\n");
1376 return finalize_and_send(dev
, start_opal_session_cont
);
1379 static int revert_tper(struct opal_dev
*dev
, void *data
)
1383 clear_opal_cmd(dev
);
1384 set_comid(dev
, dev
->comid
);
1386 add_token_u8(&err
, dev
, OPAL_CALL
);
1387 add_token_bytestring(&err
, dev
, opaluid
[OPAL_ADMINSP_UID
],
1389 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_REVERT
],
1391 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1392 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1394 pr_err("Error building REVERT TPER command.\n");
1398 return finalize_and_send(dev
, parse_and_check_status
);
1401 static int internal_activate_user(struct opal_dev
*dev
, void *data
)
1403 struct opal_session_info
*session
= data
;
1404 u8 uid
[OPAL_UID_LENGTH
];
1407 clear_opal_cmd(dev
);
1408 set_comid(dev
, dev
->comid
);
1410 memcpy(uid
, opaluid
[OPAL_USER1_UID
], OPAL_UID_LENGTH
);
1411 uid
[7] = session
->who
;
1413 add_token_u8(&err
, dev
, OPAL_CALL
);
1414 add_token_bytestring(&err
, dev
, uid
, OPAL_UID_LENGTH
);
1415 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_SET
], OPAL_UID_LENGTH
);
1416 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1417 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1418 add_token_u8(&err
, dev
, OPAL_VALUES
);
1419 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1420 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1421 add_token_u8(&err
, dev
, 5); /* Enabled */
1422 add_token_u8(&err
, dev
, OPAL_TRUE
);
1423 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1424 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1425 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1426 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1429 pr_err("Error building Activate UserN command.\n");
1433 return finalize_and_send(dev
, parse_and_check_status
);
1436 static int erase_locking_range(struct opal_dev
*dev
, void *data
)
1438 struct opal_session_info
*session
= data
;
1439 u8 uid
[OPAL_UID_LENGTH
];
1442 clear_opal_cmd(dev
);
1443 set_comid(dev
, dev
->comid
);
1445 if (build_locking_range(uid
, sizeof(uid
), session
->opal_key
.lr
) < 0)
1448 add_token_u8(&err
, dev
, OPAL_CALL
);
1449 add_token_bytestring(&err
, dev
, uid
, OPAL_UID_LENGTH
);
1450 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_ERASE
],
1452 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1453 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1456 pr_err("Error building Erase Locking Range Command.\n");
1459 return finalize_and_send(dev
, parse_and_check_status
);
1462 static int set_mbr_done(struct opal_dev
*dev
, void *data
)
1464 u8
*mbr_done_tf
= data
;
1467 clear_opal_cmd(dev
);
1468 set_comid(dev
, dev
->comid
);
1470 add_token_u8(&err
, dev
, OPAL_CALL
);
1471 add_token_bytestring(&err
, dev
, opaluid
[OPAL_MBRCONTROL
],
1473 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_SET
], OPAL_UID_LENGTH
);
1474 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1475 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1476 add_token_u8(&err
, dev
, OPAL_VALUES
);
1477 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1478 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1479 add_token_u8(&err
, dev
, 2); /* Done */
1480 add_token_u8(&err
, dev
, *mbr_done_tf
); /* Done T or F */
1481 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1482 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1483 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1484 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1487 pr_err("Error Building set MBR Done command\n");
1491 return finalize_and_send(dev
, parse_and_check_status
);
1494 static int set_mbr_enable_disable(struct opal_dev
*dev
, void *data
)
1496 u8
*mbr_en_dis
= data
;
1499 clear_opal_cmd(dev
);
1500 set_comid(dev
, dev
->comid
);
1502 add_token_u8(&err
, dev
, OPAL_CALL
);
1503 add_token_bytestring(&err
, dev
, opaluid
[OPAL_MBRCONTROL
],
1505 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_SET
], OPAL_UID_LENGTH
);
1506 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1507 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1508 add_token_u8(&err
, dev
, OPAL_VALUES
);
1509 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1510 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1511 add_token_u8(&err
, dev
, 1);
1512 add_token_u8(&err
, dev
, *mbr_en_dis
);
1513 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1514 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1515 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1516 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1519 pr_err("Error Building set MBR done command\n");
1523 return finalize_and_send(dev
, parse_and_check_status
);
1526 static int generic_pw_cmd(u8
*key
, size_t key_len
, u8
*cpin_uid
,
1527 struct opal_dev
*dev
)
1531 clear_opal_cmd(dev
);
1532 set_comid(dev
, dev
->comid
);
1534 add_token_u8(&err
, dev
, OPAL_CALL
);
1535 add_token_bytestring(&err
, dev
, cpin_uid
, OPAL_UID_LENGTH
);
1536 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_SET
],
1538 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1539 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1540 add_token_u8(&err
, dev
, OPAL_VALUES
);
1541 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1542 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1543 add_token_u8(&err
, dev
, 3); /* PIN */
1544 add_token_bytestring(&err
, dev
, key
, key_len
);
1545 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1546 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1547 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1548 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1553 static int set_new_pw(struct opal_dev
*dev
, void *data
)
1555 u8 cpin_uid
[OPAL_UID_LENGTH
];
1556 struct opal_session_info
*usr
= data
;
1558 memcpy(cpin_uid
, opaluid
[OPAL_C_PIN_ADMIN1
], OPAL_UID_LENGTH
);
1560 if (usr
->who
!= OPAL_ADMIN1
) {
1563 cpin_uid
[7] = usr
->opal_key
.lr
+ 1;
1565 cpin_uid
[7] = usr
->who
;
1568 if (generic_pw_cmd(usr
->opal_key
.key
, usr
->opal_key
.key_len
,
1570 pr_err("Error building set password command.\n");
1574 return finalize_and_send(dev
, parse_and_check_status
);
1577 static int set_sid_cpin_pin(struct opal_dev
*dev
, void *data
)
1579 u8 cpin_uid
[OPAL_UID_LENGTH
];
1580 struct opal_key
*key
= data
;
1582 memcpy(cpin_uid
, opaluid
[OPAL_C_PIN_SID
], OPAL_UID_LENGTH
);
1584 if (generic_pw_cmd(key
->key
, key
->key_len
, cpin_uid
, dev
)) {
1585 pr_err("Error building Set SID cpin\n");
1588 return finalize_and_send(dev
, parse_and_check_status
);
1591 static int add_user_to_lr(struct opal_dev
*dev
, void *data
)
1593 u8 lr_buffer
[OPAL_UID_LENGTH
];
1594 u8 user_uid
[OPAL_UID_LENGTH
];
1595 struct opal_lock_unlock
*lkul
= data
;
1598 clear_opal_cmd(dev
);
1599 set_comid(dev
, dev
->comid
);
1601 memcpy(lr_buffer
, opaluid
[OPAL_LOCKINGRANGE_ACE_RDLOCKED
],
1604 if (lkul
->l_state
== OPAL_RW
)
1605 memcpy(lr_buffer
, opaluid
[OPAL_LOCKINGRANGE_ACE_WRLOCKED
],
1608 lr_buffer
[7] = lkul
->session
.opal_key
.lr
;
1610 memcpy(user_uid
, opaluid
[OPAL_USER1_UID
], OPAL_UID_LENGTH
);
1612 user_uid
[7] = lkul
->session
.who
;
1614 add_token_u8(&err
, dev
, OPAL_CALL
);
1615 add_token_bytestring(&err
, dev
, lr_buffer
, OPAL_UID_LENGTH
);
1616 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_SET
],
1619 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1620 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1621 add_token_u8(&err
, dev
, OPAL_VALUES
);
1623 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1624 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1625 add_token_u8(&err
, dev
, 3);
1627 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1630 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1631 add_token_bytestring(&err
, dev
,
1632 opaluid
[OPAL_HALF_UID_AUTHORITY_OBJ_REF
],
1634 add_token_bytestring(&err
, dev
, user_uid
, OPAL_UID_LENGTH
);
1635 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1638 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1639 add_token_bytestring(&err
, dev
,
1640 opaluid
[OPAL_HALF_UID_AUTHORITY_OBJ_REF
],
1642 add_token_bytestring(&err
, dev
, user_uid
, OPAL_UID_LENGTH
);
1643 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1646 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1647 add_token_bytestring(&err
, dev
, opaluid
[OPAL_HALF_UID_BOOLEAN_ACE
],
1649 add_token_u8(&err
, dev
, 1);
1650 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1653 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1654 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1655 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1656 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1657 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1660 pr_err("Error building add user to locking range command.\n");
1664 return finalize_and_send(dev
, parse_and_check_status
);
1667 static int lock_unlock_locking_range(struct opal_dev
*dev
, void *data
)
1669 u8 lr_buffer
[OPAL_UID_LENGTH
];
1670 struct opal_lock_unlock
*lkul
= data
;
1671 u8 read_locked
= 1, write_locked
= 1;
1674 clear_opal_cmd(dev
);
1675 set_comid(dev
, dev
->comid
);
1677 if (build_locking_range(lr_buffer
, sizeof(lr_buffer
),
1678 lkul
->session
.opal_key
.lr
) < 0)
1681 switch (lkul
->l_state
) {
1691 /* vars are initalized to locked */
1694 pr_err("Tried to set an invalid locking state... returning to uland\n");
1695 return OPAL_INVAL_PARAM
;
1698 add_token_u8(&err
, dev
, OPAL_CALL
);
1699 add_token_bytestring(&err
, dev
, lr_buffer
, OPAL_UID_LENGTH
);
1700 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_SET
], OPAL_UID_LENGTH
);
1701 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1702 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1703 add_token_u8(&err
, dev
, OPAL_VALUES
);
1704 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1706 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1707 add_token_u8(&err
, dev
, OPAL_READLOCKED
);
1708 add_token_u8(&err
, dev
, read_locked
);
1709 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1711 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1712 add_token_u8(&err
, dev
, OPAL_WRITELOCKED
);
1713 add_token_u8(&err
, dev
, write_locked
);
1714 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1716 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1717 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1718 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1721 pr_err("Error building SET command.\n");
1724 return finalize_and_send(dev
, parse_and_check_status
);
1728 static int lock_unlock_locking_range_sum(struct opal_dev
*dev
, void *data
)
1730 u8 lr_buffer
[OPAL_UID_LENGTH
];
1731 u8 read_locked
= 1, write_locked
= 1;
1732 struct opal_lock_unlock
*lkul
= data
;
1735 clear_opal_cmd(dev
);
1736 set_comid(dev
, dev
->comid
);
1738 if (build_locking_range(lr_buffer
, sizeof(lr_buffer
),
1739 lkul
->session
.opal_key
.lr
) < 0)
1742 switch (lkul
->l_state
) {
1752 /* vars are initalized to locked */
1755 pr_err("Tried to set an invalid locking state.\n");
1756 return OPAL_INVAL_PARAM
;
1758 ret
= generic_lr_enable_disable(dev
, lr_buffer
, 1, 1,
1759 read_locked
, write_locked
);
1762 pr_err("Error building SET command.\n");
1765 return finalize_and_send(dev
, parse_and_check_status
);
1768 static int activate_lsp(struct opal_dev
*dev
, void *data
)
1770 struct opal_lr_act
*opal_act
= data
;
1771 u8 user_lr
[OPAL_UID_LENGTH
];
1775 clear_opal_cmd(dev
);
1776 set_comid(dev
, dev
->comid
);
1778 add_token_u8(&err
, dev
, OPAL_CALL
);
1779 add_token_bytestring(&err
, dev
, opaluid
[OPAL_LOCKINGSP_UID
],
1781 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_ACTIVATE
],
1785 if (opal_act
->sum
) {
1786 err
= build_locking_range(user_lr
, sizeof(user_lr
),
1791 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1792 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1793 add_token_u8(&err
, dev
, uint_3
);
1794 add_token_u8(&err
, dev
, 6);
1795 add_token_u8(&err
, dev
, 0);
1796 add_token_u8(&err
, dev
, 0);
1798 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1799 add_token_bytestring(&err
, dev
, user_lr
, OPAL_UID_LENGTH
);
1800 for (i
= 1; i
< opal_act
->num_lrs
; i
++) {
1801 user_lr
[7] = opal_act
->lr
[i
];
1802 add_token_bytestring(&err
, dev
, user_lr
, OPAL_UID_LENGTH
);
1804 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1805 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1806 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1809 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1810 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1814 pr_err("Error building Activate LockingSP command.\n");
1818 return finalize_and_send(dev
, parse_and_check_status
);
1821 static int get_lsp_lifecycle_cont(struct opal_dev
*dev
)
1826 error
= parse_and_check_status(dev
);
1830 lc_status
= response_get_u64(&dev
->parsed
, 4);
1831 /* 0x08 is Manufacured Inactive */
1832 /* 0x09 is Manufactured */
1833 if (lc_status
!= OPAL_MANUFACTURED_INACTIVE
) {
1834 pr_err("Couldn't determine the status of the Lifcycle state\n");
1841 /* Determine if we're in the Manufactured Inactive or Active state */
1842 static int get_lsp_lifecycle(struct opal_dev
*dev
, void *data
)
1846 clear_opal_cmd(dev
);
1847 set_comid(dev
, dev
->comid
);
1849 add_token_u8(&err
, dev
, OPAL_CALL
);
1850 add_token_bytestring(&err
, dev
, opaluid
[OPAL_LOCKINGSP_UID
],
1852 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_GET
], OPAL_UID_LENGTH
);
1854 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1855 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1857 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1858 add_token_u8(&err
, dev
, 3); /* Start Column */
1859 add_token_u8(&err
, dev
, 6); /* Lifecycle Column */
1860 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1862 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1863 add_token_u8(&err
, dev
, 4); /* End Column */
1864 add_token_u8(&err
, dev
, 6); /* Lifecycle Column */
1865 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1867 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1868 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1871 pr_err("Error Building GET Lifecycle Status command\n");
1875 return finalize_and_send(dev
, get_lsp_lifecycle_cont
);
1878 static int get_msid_cpin_pin_cont(struct opal_dev
*dev
)
1880 const char *msid_pin
;
1884 error
= parse_and_check_status(dev
);
1888 strlen
= response_get_string(&dev
->parsed
, 4, &msid_pin
);
1890 pr_err("%s: Couldn't extract PIN from response\n", __func__
);
1891 return OPAL_INVAL_PARAM
;
1894 dev
->prev_data
= kmemdup(msid_pin
, strlen
, GFP_KERNEL
);
1895 if (!dev
->prev_data
)
1898 dev
->prev_d_len
= strlen
;
1903 static int get_msid_cpin_pin(struct opal_dev
*dev
, void *data
)
1907 clear_opal_cmd(dev
);
1908 set_comid(dev
, dev
->comid
);
1910 add_token_u8(&err
, dev
, OPAL_CALL
);
1911 add_token_bytestring(&err
, dev
, opaluid
[OPAL_C_PIN_MSID
],
1913 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_GET
], OPAL_UID_LENGTH
);
1915 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1916 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1918 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1919 add_token_u8(&err
, dev
, 3); /* Start Column */
1920 add_token_u8(&err
, dev
, 3); /* PIN */
1921 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1923 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1924 add_token_u8(&err
, dev
, 4); /* End Column */
1925 add_token_u8(&err
, dev
, 3); /* Lifecycle Column */
1926 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1928 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1929 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1932 pr_err("Error building Get MSID CPIN PIN command.\n");
1936 return finalize_and_send(dev
, get_msid_cpin_pin_cont
);
1939 static int end_opal_session(struct opal_dev
*dev
, void *data
)
1943 clear_opal_cmd(dev
);
1944 set_comid(dev
, dev
->comid
);
1945 add_token_u8(&err
, dev
, OPAL_ENDOFSESSION
);
1949 return finalize_and_send(dev
, end_session_cont
);
1952 static int end_opal_session_error(struct opal_dev
*dev
)
1954 const struct opal_step error_end_session
[] = {
1955 { end_opal_session
, },
1958 dev
->steps
= error_end_session
;
1962 static inline void setup_opal_dev(struct opal_dev
*dev
,
1963 const struct opal_step
*steps
)
1968 dev
->prev_data
= NULL
;
1971 static int check_opal_support(struct opal_dev
*dev
)
1973 const struct opal_step steps
[] = {
1974 { opal_discovery0
, },
1979 mutex_lock(&dev
->dev_lock
);
1980 setup_opal_dev(dev
, steps
);
1982 dev
->supported
= !ret
;
1983 mutex_unlock(&dev
->dev_lock
);
1987 static void clean_opal_dev(struct opal_dev
*dev
)
1990 struct opal_suspend_data
*suspend
, *next
;
1992 mutex_lock(&dev
->dev_lock
);
1993 list_for_each_entry_safe(suspend
, next
, &dev
->unlk_lst
, node
) {
1994 list_del(&suspend
->node
);
1997 mutex_unlock(&dev
->dev_lock
);
2000 void free_opal_dev(struct opal_dev
*dev
)
2004 clean_opal_dev(dev
);
2007 EXPORT_SYMBOL(free_opal_dev
);
2009 struct opal_dev
*init_opal_dev(void *data
, sec_send_recv
*send_recv
)
2011 struct opal_dev
*dev
;
2013 dev
= kmalloc(sizeof(*dev
), GFP_KERNEL
);
2017 INIT_LIST_HEAD(&dev
->unlk_lst
);
2018 mutex_init(&dev
->dev_lock
);
2020 dev
->send_recv
= send_recv
;
2021 if (check_opal_support(dev
) != 0) {
2022 pr_debug("Opal is not supported on this device\n");
2028 EXPORT_SYMBOL(init_opal_dev
);
2030 static int opal_secure_erase_locking_range(struct opal_dev
*dev
,
2031 struct opal_session_info
*opal_session
)
2033 const struct opal_step erase_steps
[] = {
2034 { opal_discovery0
, },
2035 { start_auth_opal_session
, opal_session
},
2036 { get_active_key
, &opal_session
->opal_key
.lr
},
2038 { end_opal_session
, },
2043 mutex_lock(&dev
->dev_lock
);
2044 setup_opal_dev(dev
, erase_steps
);
2046 mutex_unlock(&dev
->dev_lock
);
2050 static int opal_erase_locking_range(struct opal_dev
*dev
,
2051 struct opal_session_info
*opal_session
)
2053 const struct opal_step erase_steps
[] = {
2054 { opal_discovery0
, },
2055 { start_auth_opal_session
, opal_session
},
2056 { erase_locking_range
, opal_session
},
2057 { end_opal_session
, },
2062 mutex_lock(&dev
->dev_lock
);
2063 setup_opal_dev(dev
, erase_steps
);
2065 mutex_unlock(&dev
->dev_lock
);
2069 static int opal_enable_disable_shadow_mbr(struct opal_dev
*dev
,
2070 struct opal_mbr_data
*opal_mbr
)
2072 const struct opal_step mbr_steps
[] = {
2073 { opal_discovery0
, },
2074 { start_admin1LSP_opal_session
, &opal_mbr
->key
},
2075 { set_mbr_done
, &opal_mbr
->enable_disable
},
2076 { end_opal_session
, },
2077 { start_admin1LSP_opal_session
, &opal_mbr
->key
},
2078 { set_mbr_enable_disable
, &opal_mbr
->enable_disable
},
2079 { end_opal_session
, },
2084 if (opal_mbr
->enable_disable
!= OPAL_MBR_ENABLE
&&
2085 opal_mbr
->enable_disable
!= OPAL_MBR_DISABLE
)
2088 mutex_lock(&dev
->dev_lock
);
2089 setup_opal_dev(dev
, mbr_steps
);
2091 mutex_unlock(&dev
->dev_lock
);
2095 static int opal_save(struct opal_dev
*dev
, struct opal_lock_unlock
*lk_unlk
)
2097 struct opal_suspend_data
*suspend
;
2099 suspend
= kzalloc(sizeof(*suspend
), GFP_KERNEL
);
2103 suspend
->unlk
= *lk_unlk
;
2104 suspend
->lr
= lk_unlk
->session
.opal_key
.lr
;
2106 mutex_lock(&dev
->dev_lock
);
2107 setup_opal_dev(dev
, NULL
);
2108 add_suspend_info(dev
, suspend
);
2109 mutex_unlock(&dev
->dev_lock
);
2113 static int opal_add_user_to_lr(struct opal_dev
*dev
,
2114 struct opal_lock_unlock
*lk_unlk
)
2116 const struct opal_step steps
[] = {
2117 { opal_discovery0
, },
2118 { start_admin1LSP_opal_session
, &lk_unlk
->session
.opal_key
},
2119 { add_user_to_lr
, lk_unlk
},
2120 { end_opal_session
, },
2125 if (lk_unlk
->l_state
!= OPAL_RO
&&
2126 lk_unlk
->l_state
!= OPAL_RW
) {
2127 pr_err("Locking state was not RO or RW\n");
2130 if (lk_unlk
->session
.who
< OPAL_USER1
||
2131 lk_unlk
->session
.who
> OPAL_USER9
) {
2132 pr_err("Authority was not within the range of users: %d\n",
2133 lk_unlk
->session
.who
);
2136 if (lk_unlk
->session
.sum
) {
2137 pr_err("%s not supported in sum. Use setup locking range\n",
2142 mutex_lock(&dev
->dev_lock
);
2143 setup_opal_dev(dev
, steps
);
2145 mutex_unlock(&dev
->dev_lock
);
2149 static int opal_reverttper(struct opal_dev
*dev
, struct opal_key
*opal
)
2151 const struct opal_step revert_steps
[] = {
2152 { opal_discovery0
, },
2153 { start_SIDASP_opal_session
, opal
},
2154 { revert_tper
, }, /* controller will terminate session */
2159 mutex_lock(&dev
->dev_lock
);
2160 setup_opal_dev(dev
, revert_steps
);
2162 mutex_unlock(&dev
->dev_lock
);
2165 * If we successfully reverted lets clean
2166 * any saved locking ranges.
2169 clean_opal_dev(dev
);
2174 static int __opal_lock_unlock(struct opal_dev
*dev
,
2175 struct opal_lock_unlock
*lk_unlk
)
2177 const struct opal_step unlock_steps
[] = {
2178 { opal_discovery0
, },
2179 { start_auth_opal_session
, &lk_unlk
->session
},
2180 { lock_unlock_locking_range
, lk_unlk
},
2181 { end_opal_session
, },
2184 const struct opal_step unlock_sum_steps
[] = {
2185 { opal_discovery0
, },
2186 { start_auth_opal_session
, &lk_unlk
->session
},
2187 { lock_unlock_locking_range_sum
, lk_unlk
},
2188 { end_opal_session
, },
2192 dev
->steps
= lk_unlk
->session
.sum
? unlock_sum_steps
: unlock_steps
;
2196 static int opal_lock_unlock(struct opal_dev
*dev
,
2197 struct opal_lock_unlock
*lk_unlk
)
2201 if (lk_unlk
->session
.who
< OPAL_ADMIN1
||
2202 lk_unlk
->session
.who
> OPAL_USER9
)
2205 mutex_lock(&dev
->dev_lock
);
2206 ret
= __opal_lock_unlock(dev
, lk_unlk
);
2207 mutex_unlock(&dev
->dev_lock
);
2211 static int opal_take_ownership(struct opal_dev
*dev
, struct opal_key
*opal
)
2213 const struct opal_step owner_steps
[] = {
2214 { opal_discovery0
, },
2215 { start_anybodyASP_opal_session
, },
2216 { get_msid_cpin_pin
, },
2217 { end_opal_session
, },
2218 { start_SIDASP_opal_session
, opal
},
2219 { set_sid_cpin_pin
, opal
},
2220 { end_opal_session
, },
2228 mutex_lock(&dev
->dev_lock
);
2229 setup_opal_dev(dev
, owner_steps
);
2231 mutex_unlock(&dev
->dev_lock
);
2235 static int opal_activate_lsp(struct opal_dev
*dev
, struct opal_lr_act
*opal_lr_act
)
2237 const struct opal_step active_steps
[] = {
2238 { opal_discovery0
, },
2239 { start_SIDASP_opal_session
, &opal_lr_act
->key
},
2240 { get_lsp_lifecycle
, },
2241 { activate_lsp
, opal_lr_act
},
2242 { end_opal_session
, },
2247 if (!opal_lr_act
->num_lrs
|| opal_lr_act
->num_lrs
> OPAL_MAX_LRS
)
2250 mutex_lock(&dev
->dev_lock
);
2251 setup_opal_dev(dev
, active_steps
);
2253 mutex_unlock(&dev
->dev_lock
);
2257 static int opal_setup_locking_range(struct opal_dev
*dev
,
2258 struct opal_user_lr_setup
*opal_lrs
)
2260 const struct opal_step lr_steps
[] = {
2261 { opal_discovery0
, },
2262 { start_auth_opal_session
, &opal_lrs
->session
},
2263 { setup_locking_range
, opal_lrs
},
2264 { end_opal_session
, },
2269 mutex_lock(&dev
->dev_lock
);
2270 setup_opal_dev(dev
, lr_steps
);
2272 mutex_unlock(&dev
->dev_lock
);
2276 static int opal_set_new_pw(struct opal_dev
*dev
, struct opal_new_pw
*opal_pw
)
2278 const struct opal_step pw_steps
[] = {
2279 { opal_discovery0
, },
2280 { start_auth_opal_session
, &opal_pw
->session
},
2281 { set_new_pw
, &opal_pw
->new_user_pw
},
2282 { end_opal_session
, },
2287 if (opal_pw
->session
.who
< OPAL_ADMIN1
||
2288 opal_pw
->session
.who
> OPAL_USER9
||
2289 opal_pw
->new_user_pw
.who
< OPAL_ADMIN1
||
2290 opal_pw
->new_user_pw
.who
> OPAL_USER9
)
2293 mutex_lock(&dev
->dev_lock
);
2294 setup_opal_dev(dev
, pw_steps
);
2296 mutex_unlock(&dev
->dev_lock
);
2300 static int opal_activate_user(struct opal_dev
*dev
,
2301 struct opal_session_info
*opal_session
)
2303 const struct opal_step act_steps
[] = {
2304 { opal_discovery0
, },
2305 { start_admin1LSP_opal_session
, &opal_session
->opal_key
},
2306 { internal_activate_user
, opal_session
},
2307 { end_opal_session
, },
2312 /* We can't activate Admin1 it's active as manufactured */
2313 if (opal_session
->who
< OPAL_USER1
||
2314 opal_session
->who
> OPAL_USER9
) {
2315 pr_err("Who was not a valid user: %d\n", opal_session
->who
);
2319 mutex_lock(&dev
->dev_lock
);
2320 setup_opal_dev(dev
, act_steps
);
2322 mutex_unlock(&dev
->dev_lock
);
2326 bool opal_unlock_from_suspend(struct opal_dev
*dev
)
2328 struct opal_suspend_data
*suspend
;
2329 bool was_failure
= false;
2334 if (!dev
->supported
)
2337 mutex_lock(&dev
->dev_lock
);
2338 setup_opal_dev(dev
, NULL
);
2340 list_for_each_entry(suspend
, &dev
->unlk_lst
, node
) {
2344 ret
= __opal_lock_unlock(dev
, &suspend
->unlk
);
2346 pr_warn("Failed to unlock LR %hhu with sum %d\n",
2347 suspend
->unlk
.session
.opal_key
.lr
,
2348 suspend
->unlk
.session
.sum
);
2352 mutex_unlock(&dev
->dev_lock
);
2355 EXPORT_SYMBOL(opal_unlock_from_suspend
);
2357 int sed_ioctl(struct opal_dev
*dev
, unsigned int cmd
, void __user
*arg
)
2362 if (!capable(CAP_SYS_ADMIN
))
2366 if (!dev
->supported
) {
2367 pr_err("Not supported\n");
2371 p
= memdup_user(arg
, _IOC_SIZE(cmd
));
2377 ret
= opal_save(dev
, p
);
2379 case IOC_OPAL_LOCK_UNLOCK
:
2380 ret
= opal_lock_unlock(dev
, p
);
2382 case IOC_OPAL_TAKE_OWNERSHIP
:
2383 ret
= opal_take_ownership(dev
, p
);
2385 case IOC_OPAL_ACTIVATE_LSP
:
2386 ret
= opal_activate_lsp(dev
, p
);
2388 case IOC_OPAL_SET_PW
:
2389 ret
= opal_set_new_pw(dev
, p
);
2391 case IOC_OPAL_ACTIVATE_USR
:
2392 ret
= opal_activate_user(dev
, p
);
2394 case IOC_OPAL_REVERT_TPR
:
2395 ret
= opal_reverttper(dev
, p
);
2397 case IOC_OPAL_LR_SETUP
:
2398 ret
= opal_setup_locking_range(dev
, p
);
2400 case IOC_OPAL_ADD_USR_TO_LR
:
2401 ret
= opal_add_user_to_lr(dev
, p
);
2403 case IOC_OPAL_ENABLE_DISABLE_MBR
:
2404 ret
= opal_enable_disable_shadow_mbr(dev
, p
);
2406 case IOC_OPAL_ERASE_LR
:
2407 ret
= opal_erase_locking_range(dev
, p
);
2409 case IOC_OPAL_SECURE_ERASE_LR
:
2410 ret
= opal_secure_erase_locking_range(dev
, p
);
2413 pr_warn("No such Opal Ioctl %u\n", cmd
);
2419 EXPORT_SYMBOL_GPL(sed_ioctl
);