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_debug("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_debug("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_debug("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_debug("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_debug("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_debug("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_debug("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_debug("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_debug("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_debug("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_debug("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_debug("Token number doesn't exist: %d, resp: %d\n",
684 return ERR_PTR(-EINVAL
);
687 tok
= &resp
->toks
[n
];
689 pr_debug("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_debug("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_debug("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_debug("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_debug("Response is NULL\n");
869 pr_debug("Response has %d tokens. Can't access %d\n",
874 if (resp
->toks
[n
].type
!= OPAL_DTA_TOKENID_BYTESTRING
) {
875 pr_debug("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_debug("Response is NULL\n");
891 pr_debug("Response has %d tokens. Can't access %d\n",
896 if (resp
->toks
[n
].type
!= OPAL_DTA_TOKENID_UINT
) {
897 pr_debug("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_debug("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_debug("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_debug("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_debug("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_debug("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_debug("%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_debug("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_debug("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_debug("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 return OPAL_INVAL_PARAM
;
1240 clear_opal_cmd(dev
);
1242 set_comid(dev
, dev
->comid
);
1243 hsn
= GENERIC_HOST_SESSION_NUM
;
1245 add_token_u8(&err
, dev
, OPAL_CALL
);
1246 add_token_bytestring(&err
, dev
, opaluid
[OPAL_SMUID_UID
],
1248 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_STARTSESSION
],
1250 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1251 add_token_u64(&err
, dev
, hsn
);
1252 add_token_bytestring(&err
, dev
, opaluid
[sp_type
], OPAL_UID_LENGTH
);
1253 add_token_u8(&err
, dev
, 1);
1256 case OPAL_ANYBODY_UID
:
1257 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1259 case OPAL_ADMIN1_UID
:
1261 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1262 add_token_u8(&err
, dev
, 0); /* HostChallenge */
1263 add_token_bytestring(&err
, dev
, key
, key_len
);
1264 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1265 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1266 add_token_u8(&err
, dev
, 3); /* HostSignAuth */
1267 add_token_bytestring(&err
, dev
, opaluid
[auth
],
1269 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1270 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1273 pr_debug("Cannot start Admin SP session with auth %d\n", auth
);
1274 return OPAL_INVAL_PARAM
;
1278 pr_debug("Error building start adminsp session command.\n");
1282 return finalize_and_send(dev
, start_opal_session_cont
);
1285 static int start_anybodyASP_opal_session(struct opal_dev
*dev
, void *data
)
1287 return start_generic_opal_session(dev
, OPAL_ANYBODY_UID
,
1288 OPAL_ADMINSP_UID
, NULL
, 0);
1291 static int start_SIDASP_opal_session(struct opal_dev
*dev
, void *data
)
1294 const u8
*key
= dev
->prev_data
;
1297 const struct opal_key
*okey
= data
;
1298 ret
= start_generic_opal_session(dev
, OPAL_SID_UID
,
1303 ret
= start_generic_opal_session(dev
, OPAL_SID_UID
,
1305 key
, dev
->prev_d_len
);
1307 dev
->prev_data
= NULL
;
1312 static int start_admin1LSP_opal_session(struct opal_dev
*dev
, void *data
)
1314 struct opal_key
*key
= data
;
1315 return start_generic_opal_session(dev
, OPAL_ADMIN1_UID
,
1317 key
->key
, key
->key_len
);
1320 static int start_auth_opal_session(struct opal_dev
*dev
, void *data
)
1322 struct opal_session_info
*session
= data
;
1323 u8 lk_ul_user
[OPAL_UID_LENGTH
];
1324 size_t keylen
= session
->opal_key
.key_len
;
1327 u8
*key
= session
->opal_key
.key
;
1328 u32 hsn
= GENERIC_HOST_SESSION_NUM
;
1330 clear_opal_cmd(dev
);
1331 set_comid(dev
, dev
->comid
);
1334 err
= build_locking_user(lk_ul_user
, sizeof(lk_ul_user
),
1335 session
->opal_key
.lr
);
1339 } else if (session
->who
!= OPAL_ADMIN1
&& !session
->sum
) {
1340 err
= build_locking_user(lk_ul_user
, sizeof(lk_ul_user
),
1345 memcpy(lk_ul_user
, opaluid
[OPAL_ADMIN1_UID
], OPAL_UID_LENGTH
);
1347 add_token_u8(&err
, dev
, OPAL_CALL
);
1348 add_token_bytestring(&err
, dev
, opaluid
[OPAL_SMUID_UID
],
1350 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_STARTSESSION
],
1353 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1354 add_token_u64(&err
, dev
, hsn
);
1355 add_token_bytestring(&err
, dev
, opaluid
[OPAL_LOCKINGSP_UID
],
1357 add_token_u8(&err
, dev
, 1);
1358 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1359 add_token_u8(&err
, dev
, 0);
1360 add_token_bytestring(&err
, dev
, key
, keylen
);
1361 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1362 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1363 add_token_u8(&err
, dev
, 3);
1364 add_token_bytestring(&err
, dev
, lk_ul_user
, OPAL_UID_LENGTH
);
1365 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1366 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1369 pr_debug("Error building STARTSESSION command.\n");
1373 return finalize_and_send(dev
, start_opal_session_cont
);
1376 static int revert_tper(struct opal_dev
*dev
, void *data
)
1380 clear_opal_cmd(dev
);
1381 set_comid(dev
, dev
->comid
);
1383 add_token_u8(&err
, dev
, OPAL_CALL
);
1384 add_token_bytestring(&err
, dev
, opaluid
[OPAL_ADMINSP_UID
],
1386 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_REVERT
],
1388 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1389 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1391 pr_debug("Error building REVERT TPER command.\n");
1395 return finalize_and_send(dev
, parse_and_check_status
);
1398 static int internal_activate_user(struct opal_dev
*dev
, void *data
)
1400 struct opal_session_info
*session
= data
;
1401 u8 uid
[OPAL_UID_LENGTH
];
1404 clear_opal_cmd(dev
);
1405 set_comid(dev
, dev
->comid
);
1407 memcpy(uid
, opaluid
[OPAL_USER1_UID
], OPAL_UID_LENGTH
);
1408 uid
[7] = session
->who
;
1410 add_token_u8(&err
, dev
, OPAL_CALL
);
1411 add_token_bytestring(&err
, dev
, uid
, OPAL_UID_LENGTH
);
1412 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_SET
], OPAL_UID_LENGTH
);
1413 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1414 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1415 add_token_u8(&err
, dev
, OPAL_VALUES
);
1416 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1417 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1418 add_token_u8(&err
, dev
, 5); /* Enabled */
1419 add_token_u8(&err
, dev
, OPAL_TRUE
);
1420 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1421 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1422 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1423 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1426 pr_debug("Error building Activate UserN command.\n");
1430 return finalize_and_send(dev
, parse_and_check_status
);
1433 static int erase_locking_range(struct opal_dev
*dev
, void *data
)
1435 struct opal_session_info
*session
= data
;
1436 u8 uid
[OPAL_UID_LENGTH
];
1439 clear_opal_cmd(dev
);
1440 set_comid(dev
, dev
->comid
);
1442 if (build_locking_range(uid
, sizeof(uid
), session
->opal_key
.lr
) < 0)
1445 add_token_u8(&err
, dev
, OPAL_CALL
);
1446 add_token_bytestring(&err
, dev
, uid
, OPAL_UID_LENGTH
);
1447 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_ERASE
],
1449 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1450 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1453 pr_debug("Error building Erase Locking Range Command.\n");
1456 return finalize_and_send(dev
, parse_and_check_status
);
1459 static int set_mbr_done(struct opal_dev
*dev
, void *data
)
1461 u8
*mbr_done_tf
= data
;
1464 clear_opal_cmd(dev
);
1465 set_comid(dev
, dev
->comid
);
1467 add_token_u8(&err
, dev
, OPAL_CALL
);
1468 add_token_bytestring(&err
, dev
, opaluid
[OPAL_MBRCONTROL
],
1470 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_SET
], OPAL_UID_LENGTH
);
1471 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1472 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1473 add_token_u8(&err
, dev
, OPAL_VALUES
);
1474 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1475 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1476 add_token_u8(&err
, dev
, 2); /* Done */
1477 add_token_u8(&err
, dev
, *mbr_done_tf
); /* Done T or F */
1478 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1479 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1480 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1481 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1484 pr_debug("Error Building set MBR Done command\n");
1488 return finalize_and_send(dev
, parse_and_check_status
);
1491 static int set_mbr_enable_disable(struct opal_dev
*dev
, void *data
)
1493 u8
*mbr_en_dis
= data
;
1496 clear_opal_cmd(dev
);
1497 set_comid(dev
, dev
->comid
);
1499 add_token_u8(&err
, dev
, OPAL_CALL
);
1500 add_token_bytestring(&err
, dev
, opaluid
[OPAL_MBRCONTROL
],
1502 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_SET
], OPAL_UID_LENGTH
);
1503 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1504 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1505 add_token_u8(&err
, dev
, OPAL_VALUES
);
1506 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1507 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1508 add_token_u8(&err
, dev
, 1);
1509 add_token_u8(&err
, dev
, *mbr_en_dis
);
1510 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1511 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1512 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1513 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1516 pr_debug("Error Building set MBR done command\n");
1520 return finalize_and_send(dev
, parse_and_check_status
);
1523 static int generic_pw_cmd(u8
*key
, size_t key_len
, u8
*cpin_uid
,
1524 struct opal_dev
*dev
)
1528 clear_opal_cmd(dev
);
1529 set_comid(dev
, dev
->comid
);
1531 add_token_u8(&err
, dev
, OPAL_CALL
);
1532 add_token_bytestring(&err
, dev
, cpin_uid
, OPAL_UID_LENGTH
);
1533 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_SET
],
1535 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1536 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1537 add_token_u8(&err
, dev
, OPAL_VALUES
);
1538 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1539 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1540 add_token_u8(&err
, dev
, 3); /* PIN */
1541 add_token_bytestring(&err
, dev
, key
, key_len
);
1542 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1543 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1544 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1545 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1550 static int set_new_pw(struct opal_dev
*dev
, void *data
)
1552 u8 cpin_uid
[OPAL_UID_LENGTH
];
1553 struct opal_session_info
*usr
= data
;
1555 memcpy(cpin_uid
, opaluid
[OPAL_C_PIN_ADMIN1
], OPAL_UID_LENGTH
);
1557 if (usr
->who
!= OPAL_ADMIN1
) {
1560 cpin_uid
[7] = usr
->opal_key
.lr
+ 1;
1562 cpin_uid
[7] = usr
->who
;
1565 if (generic_pw_cmd(usr
->opal_key
.key
, usr
->opal_key
.key_len
,
1567 pr_debug("Error building set password command.\n");
1571 return finalize_and_send(dev
, parse_and_check_status
);
1574 static int set_sid_cpin_pin(struct opal_dev
*dev
, void *data
)
1576 u8 cpin_uid
[OPAL_UID_LENGTH
];
1577 struct opal_key
*key
= data
;
1579 memcpy(cpin_uid
, opaluid
[OPAL_C_PIN_SID
], OPAL_UID_LENGTH
);
1581 if (generic_pw_cmd(key
->key
, key
->key_len
, cpin_uid
, dev
)) {
1582 pr_debug("Error building Set SID cpin\n");
1585 return finalize_and_send(dev
, parse_and_check_status
);
1588 static int add_user_to_lr(struct opal_dev
*dev
, void *data
)
1590 u8 lr_buffer
[OPAL_UID_LENGTH
];
1591 u8 user_uid
[OPAL_UID_LENGTH
];
1592 struct opal_lock_unlock
*lkul
= data
;
1595 clear_opal_cmd(dev
);
1596 set_comid(dev
, dev
->comid
);
1598 memcpy(lr_buffer
, opaluid
[OPAL_LOCKINGRANGE_ACE_RDLOCKED
],
1601 if (lkul
->l_state
== OPAL_RW
)
1602 memcpy(lr_buffer
, opaluid
[OPAL_LOCKINGRANGE_ACE_WRLOCKED
],
1605 lr_buffer
[7] = lkul
->session
.opal_key
.lr
;
1607 memcpy(user_uid
, opaluid
[OPAL_USER1_UID
], OPAL_UID_LENGTH
);
1609 user_uid
[7] = lkul
->session
.who
;
1611 add_token_u8(&err
, dev
, OPAL_CALL
);
1612 add_token_bytestring(&err
, dev
, lr_buffer
, OPAL_UID_LENGTH
);
1613 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_SET
],
1616 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1617 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1618 add_token_u8(&err
, dev
, OPAL_VALUES
);
1620 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1621 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1622 add_token_u8(&err
, dev
, 3);
1624 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1627 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1628 add_token_bytestring(&err
, dev
,
1629 opaluid
[OPAL_HALF_UID_AUTHORITY_OBJ_REF
],
1631 add_token_bytestring(&err
, dev
, user_uid
, OPAL_UID_LENGTH
);
1632 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1635 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1636 add_token_bytestring(&err
, dev
,
1637 opaluid
[OPAL_HALF_UID_AUTHORITY_OBJ_REF
],
1639 add_token_bytestring(&err
, dev
, user_uid
, OPAL_UID_LENGTH
);
1640 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1643 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1644 add_token_bytestring(&err
, dev
, opaluid
[OPAL_HALF_UID_BOOLEAN_ACE
],
1646 add_token_u8(&err
, dev
, 1);
1647 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1650 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1651 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1652 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1653 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1654 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1657 pr_debug("Error building add user to locking range command.\n");
1661 return finalize_and_send(dev
, parse_and_check_status
);
1664 static int lock_unlock_locking_range(struct opal_dev
*dev
, void *data
)
1666 u8 lr_buffer
[OPAL_UID_LENGTH
];
1667 struct opal_lock_unlock
*lkul
= data
;
1668 u8 read_locked
= 1, write_locked
= 1;
1671 clear_opal_cmd(dev
);
1672 set_comid(dev
, dev
->comid
);
1674 if (build_locking_range(lr_buffer
, sizeof(lr_buffer
),
1675 lkul
->session
.opal_key
.lr
) < 0)
1678 switch (lkul
->l_state
) {
1688 /* vars are initalized to locked */
1691 pr_debug("Tried to set an invalid locking state... returning to uland\n");
1692 return OPAL_INVAL_PARAM
;
1695 add_token_u8(&err
, dev
, OPAL_CALL
);
1696 add_token_bytestring(&err
, dev
, lr_buffer
, OPAL_UID_LENGTH
);
1697 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_SET
], OPAL_UID_LENGTH
);
1698 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1699 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1700 add_token_u8(&err
, dev
, OPAL_VALUES
);
1701 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1703 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1704 add_token_u8(&err
, dev
, OPAL_READLOCKED
);
1705 add_token_u8(&err
, dev
, read_locked
);
1706 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1708 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1709 add_token_u8(&err
, dev
, OPAL_WRITELOCKED
);
1710 add_token_u8(&err
, dev
, write_locked
);
1711 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1713 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1714 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1715 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1718 pr_debug("Error building SET command.\n");
1721 return finalize_and_send(dev
, parse_and_check_status
);
1725 static int lock_unlock_locking_range_sum(struct opal_dev
*dev
, void *data
)
1727 u8 lr_buffer
[OPAL_UID_LENGTH
];
1728 u8 read_locked
= 1, write_locked
= 1;
1729 struct opal_lock_unlock
*lkul
= data
;
1732 clear_opal_cmd(dev
);
1733 set_comid(dev
, dev
->comid
);
1735 if (build_locking_range(lr_buffer
, sizeof(lr_buffer
),
1736 lkul
->session
.opal_key
.lr
) < 0)
1739 switch (lkul
->l_state
) {
1749 /* vars are initalized to locked */
1752 pr_debug("Tried to set an invalid locking state.\n");
1753 return OPAL_INVAL_PARAM
;
1755 ret
= generic_lr_enable_disable(dev
, lr_buffer
, 1, 1,
1756 read_locked
, write_locked
);
1759 pr_debug("Error building SET command.\n");
1762 return finalize_and_send(dev
, parse_and_check_status
);
1765 static int activate_lsp(struct opal_dev
*dev
, void *data
)
1767 struct opal_lr_act
*opal_act
= data
;
1768 u8 user_lr
[OPAL_UID_LENGTH
];
1772 clear_opal_cmd(dev
);
1773 set_comid(dev
, dev
->comid
);
1775 add_token_u8(&err
, dev
, OPAL_CALL
);
1776 add_token_bytestring(&err
, dev
, opaluid
[OPAL_LOCKINGSP_UID
],
1778 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_ACTIVATE
],
1782 if (opal_act
->sum
) {
1783 err
= build_locking_range(user_lr
, sizeof(user_lr
),
1788 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1789 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1790 add_token_u8(&err
, dev
, uint_3
);
1791 add_token_u8(&err
, dev
, 6);
1792 add_token_u8(&err
, dev
, 0);
1793 add_token_u8(&err
, dev
, 0);
1795 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1796 add_token_bytestring(&err
, dev
, user_lr
, OPAL_UID_LENGTH
);
1797 for (i
= 1; i
< opal_act
->num_lrs
; i
++) {
1798 user_lr
[7] = opal_act
->lr
[i
];
1799 add_token_bytestring(&err
, dev
, user_lr
, OPAL_UID_LENGTH
);
1801 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1802 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1803 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1806 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1807 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1811 pr_debug("Error building Activate LockingSP command.\n");
1815 return finalize_and_send(dev
, parse_and_check_status
);
1818 static int get_lsp_lifecycle_cont(struct opal_dev
*dev
)
1823 error
= parse_and_check_status(dev
);
1827 lc_status
= response_get_u64(&dev
->parsed
, 4);
1828 /* 0x08 is Manufacured Inactive */
1829 /* 0x09 is Manufactured */
1830 if (lc_status
!= OPAL_MANUFACTURED_INACTIVE
) {
1831 pr_debug("Couldn't determine the status of the Lifecycle state\n");
1838 /* Determine if we're in the Manufactured Inactive or Active state */
1839 static int get_lsp_lifecycle(struct opal_dev
*dev
, void *data
)
1843 clear_opal_cmd(dev
);
1844 set_comid(dev
, dev
->comid
);
1846 add_token_u8(&err
, dev
, OPAL_CALL
);
1847 add_token_bytestring(&err
, dev
, opaluid
[OPAL_LOCKINGSP_UID
],
1849 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_GET
], OPAL_UID_LENGTH
);
1851 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1852 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1854 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1855 add_token_u8(&err
, dev
, 3); /* Start Column */
1856 add_token_u8(&err
, dev
, 6); /* Lifecycle Column */
1857 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1859 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1860 add_token_u8(&err
, dev
, 4); /* End Column */
1861 add_token_u8(&err
, dev
, 6); /* Lifecycle Column */
1862 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1864 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1865 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1868 pr_debug("Error Building GET Lifecycle Status command\n");
1872 return finalize_and_send(dev
, get_lsp_lifecycle_cont
);
1875 static int get_msid_cpin_pin_cont(struct opal_dev
*dev
)
1877 const char *msid_pin
;
1881 error
= parse_and_check_status(dev
);
1885 strlen
= response_get_string(&dev
->parsed
, 4, &msid_pin
);
1887 pr_debug("%s: Couldn't extract PIN from response\n", __func__
);
1888 return OPAL_INVAL_PARAM
;
1891 dev
->prev_data
= kmemdup(msid_pin
, strlen
, GFP_KERNEL
);
1892 if (!dev
->prev_data
)
1895 dev
->prev_d_len
= strlen
;
1900 static int get_msid_cpin_pin(struct opal_dev
*dev
, void *data
)
1904 clear_opal_cmd(dev
);
1905 set_comid(dev
, dev
->comid
);
1907 add_token_u8(&err
, dev
, OPAL_CALL
);
1908 add_token_bytestring(&err
, dev
, opaluid
[OPAL_C_PIN_MSID
],
1910 add_token_bytestring(&err
, dev
, opalmethod
[OPAL_GET
], OPAL_UID_LENGTH
);
1912 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1913 add_token_u8(&err
, dev
, OPAL_STARTLIST
);
1915 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1916 add_token_u8(&err
, dev
, 3); /* Start Column */
1917 add_token_u8(&err
, dev
, 3); /* PIN */
1918 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1920 add_token_u8(&err
, dev
, OPAL_STARTNAME
);
1921 add_token_u8(&err
, dev
, 4); /* End Column */
1922 add_token_u8(&err
, dev
, 3); /* Lifecycle Column */
1923 add_token_u8(&err
, dev
, OPAL_ENDNAME
);
1925 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1926 add_token_u8(&err
, dev
, OPAL_ENDLIST
);
1929 pr_debug("Error building Get MSID CPIN PIN command.\n");
1933 return finalize_and_send(dev
, get_msid_cpin_pin_cont
);
1936 static int end_opal_session(struct opal_dev
*dev
, void *data
)
1940 clear_opal_cmd(dev
);
1941 set_comid(dev
, dev
->comid
);
1942 add_token_u8(&err
, dev
, OPAL_ENDOFSESSION
);
1946 return finalize_and_send(dev
, end_session_cont
);
1949 static int end_opal_session_error(struct opal_dev
*dev
)
1951 const struct opal_step error_end_session
[] = {
1952 { end_opal_session
, },
1955 dev
->steps
= error_end_session
;
1959 static inline void setup_opal_dev(struct opal_dev
*dev
,
1960 const struct opal_step
*steps
)
1965 dev
->prev_data
= NULL
;
1968 static int check_opal_support(struct opal_dev
*dev
)
1970 const struct opal_step steps
[] = {
1971 { opal_discovery0
, },
1976 mutex_lock(&dev
->dev_lock
);
1977 setup_opal_dev(dev
, steps
);
1979 dev
->supported
= !ret
;
1980 mutex_unlock(&dev
->dev_lock
);
1984 static void clean_opal_dev(struct opal_dev
*dev
)
1987 struct opal_suspend_data
*suspend
, *next
;
1989 mutex_lock(&dev
->dev_lock
);
1990 list_for_each_entry_safe(suspend
, next
, &dev
->unlk_lst
, node
) {
1991 list_del(&suspend
->node
);
1994 mutex_unlock(&dev
->dev_lock
);
1997 void free_opal_dev(struct opal_dev
*dev
)
2001 clean_opal_dev(dev
);
2004 EXPORT_SYMBOL(free_opal_dev
);
2006 struct opal_dev
*init_opal_dev(void *data
, sec_send_recv
*send_recv
)
2008 struct opal_dev
*dev
;
2010 dev
= kmalloc(sizeof(*dev
), GFP_KERNEL
);
2014 INIT_LIST_HEAD(&dev
->unlk_lst
);
2015 mutex_init(&dev
->dev_lock
);
2017 dev
->send_recv
= send_recv
;
2018 if (check_opal_support(dev
) != 0) {
2019 pr_debug("Opal is not supported on this device\n");
2025 EXPORT_SYMBOL(init_opal_dev
);
2027 static int opal_secure_erase_locking_range(struct opal_dev
*dev
,
2028 struct opal_session_info
*opal_session
)
2030 const struct opal_step erase_steps
[] = {
2031 { opal_discovery0
, },
2032 { start_auth_opal_session
, opal_session
},
2033 { get_active_key
, &opal_session
->opal_key
.lr
},
2035 { end_opal_session
, },
2040 mutex_lock(&dev
->dev_lock
);
2041 setup_opal_dev(dev
, erase_steps
);
2043 mutex_unlock(&dev
->dev_lock
);
2047 static int opal_erase_locking_range(struct opal_dev
*dev
,
2048 struct opal_session_info
*opal_session
)
2050 const struct opal_step erase_steps
[] = {
2051 { opal_discovery0
, },
2052 { start_auth_opal_session
, opal_session
},
2053 { erase_locking_range
, opal_session
},
2054 { end_opal_session
, },
2059 mutex_lock(&dev
->dev_lock
);
2060 setup_opal_dev(dev
, erase_steps
);
2062 mutex_unlock(&dev
->dev_lock
);
2066 static int opal_enable_disable_shadow_mbr(struct opal_dev
*dev
,
2067 struct opal_mbr_data
*opal_mbr
)
2069 const struct opal_step mbr_steps
[] = {
2070 { opal_discovery0
, },
2071 { start_admin1LSP_opal_session
, &opal_mbr
->key
},
2072 { set_mbr_done
, &opal_mbr
->enable_disable
},
2073 { end_opal_session
, },
2074 { start_admin1LSP_opal_session
, &opal_mbr
->key
},
2075 { set_mbr_enable_disable
, &opal_mbr
->enable_disable
},
2076 { end_opal_session
, },
2081 if (opal_mbr
->enable_disable
!= OPAL_MBR_ENABLE
&&
2082 opal_mbr
->enable_disable
!= OPAL_MBR_DISABLE
)
2085 mutex_lock(&dev
->dev_lock
);
2086 setup_opal_dev(dev
, mbr_steps
);
2088 mutex_unlock(&dev
->dev_lock
);
2092 static int opal_save(struct opal_dev
*dev
, struct opal_lock_unlock
*lk_unlk
)
2094 struct opal_suspend_data
*suspend
;
2096 suspend
= kzalloc(sizeof(*suspend
), GFP_KERNEL
);
2100 suspend
->unlk
= *lk_unlk
;
2101 suspend
->lr
= lk_unlk
->session
.opal_key
.lr
;
2103 mutex_lock(&dev
->dev_lock
);
2104 setup_opal_dev(dev
, NULL
);
2105 add_suspend_info(dev
, suspend
);
2106 mutex_unlock(&dev
->dev_lock
);
2110 static int opal_add_user_to_lr(struct opal_dev
*dev
,
2111 struct opal_lock_unlock
*lk_unlk
)
2113 const struct opal_step steps
[] = {
2114 { opal_discovery0
, },
2115 { start_admin1LSP_opal_session
, &lk_unlk
->session
.opal_key
},
2116 { add_user_to_lr
, lk_unlk
},
2117 { end_opal_session
, },
2122 if (lk_unlk
->l_state
!= OPAL_RO
&&
2123 lk_unlk
->l_state
!= OPAL_RW
) {
2124 pr_debug("Locking state was not RO or RW\n");
2127 if (lk_unlk
->session
.who
< OPAL_USER1
||
2128 lk_unlk
->session
.who
> OPAL_USER9
) {
2129 pr_debug("Authority was not within the range of users: %d\n",
2130 lk_unlk
->session
.who
);
2133 if (lk_unlk
->session
.sum
) {
2134 pr_debug("%s not supported in sum. Use setup locking range\n",
2139 mutex_lock(&dev
->dev_lock
);
2140 setup_opal_dev(dev
, steps
);
2142 mutex_unlock(&dev
->dev_lock
);
2146 static int opal_reverttper(struct opal_dev
*dev
, struct opal_key
*opal
)
2148 const struct opal_step revert_steps
[] = {
2149 { opal_discovery0
, },
2150 { start_SIDASP_opal_session
, opal
},
2151 { revert_tper
, }, /* controller will terminate session */
2156 mutex_lock(&dev
->dev_lock
);
2157 setup_opal_dev(dev
, revert_steps
);
2159 mutex_unlock(&dev
->dev_lock
);
2162 * If we successfully reverted lets clean
2163 * any saved locking ranges.
2166 clean_opal_dev(dev
);
2171 static int __opal_lock_unlock(struct opal_dev
*dev
,
2172 struct opal_lock_unlock
*lk_unlk
)
2174 const struct opal_step unlock_steps
[] = {
2175 { opal_discovery0
, },
2176 { start_auth_opal_session
, &lk_unlk
->session
},
2177 { lock_unlock_locking_range
, lk_unlk
},
2178 { end_opal_session
, },
2181 const struct opal_step unlock_sum_steps
[] = {
2182 { opal_discovery0
, },
2183 { start_auth_opal_session
, &lk_unlk
->session
},
2184 { lock_unlock_locking_range_sum
, lk_unlk
},
2185 { end_opal_session
, },
2189 dev
->steps
= lk_unlk
->session
.sum
? unlock_sum_steps
: unlock_steps
;
2193 static int opal_lock_unlock(struct opal_dev
*dev
,
2194 struct opal_lock_unlock
*lk_unlk
)
2198 if (lk_unlk
->session
.who
< OPAL_ADMIN1
||
2199 lk_unlk
->session
.who
> OPAL_USER9
)
2202 mutex_lock(&dev
->dev_lock
);
2203 ret
= __opal_lock_unlock(dev
, lk_unlk
);
2204 mutex_unlock(&dev
->dev_lock
);
2208 static int opal_take_ownership(struct opal_dev
*dev
, struct opal_key
*opal
)
2210 const struct opal_step owner_steps
[] = {
2211 { opal_discovery0
, },
2212 { start_anybodyASP_opal_session
, },
2213 { get_msid_cpin_pin
, },
2214 { end_opal_session
, },
2215 { start_SIDASP_opal_session
, opal
},
2216 { set_sid_cpin_pin
, opal
},
2217 { end_opal_session
, },
2225 mutex_lock(&dev
->dev_lock
);
2226 setup_opal_dev(dev
, owner_steps
);
2228 mutex_unlock(&dev
->dev_lock
);
2232 static int opal_activate_lsp(struct opal_dev
*dev
, struct opal_lr_act
*opal_lr_act
)
2234 const struct opal_step active_steps
[] = {
2235 { opal_discovery0
, },
2236 { start_SIDASP_opal_session
, &opal_lr_act
->key
},
2237 { get_lsp_lifecycle
, },
2238 { activate_lsp
, opal_lr_act
},
2239 { end_opal_session
, },
2244 if (!opal_lr_act
->num_lrs
|| opal_lr_act
->num_lrs
> OPAL_MAX_LRS
)
2247 mutex_lock(&dev
->dev_lock
);
2248 setup_opal_dev(dev
, active_steps
);
2250 mutex_unlock(&dev
->dev_lock
);
2254 static int opal_setup_locking_range(struct opal_dev
*dev
,
2255 struct opal_user_lr_setup
*opal_lrs
)
2257 const struct opal_step lr_steps
[] = {
2258 { opal_discovery0
, },
2259 { start_auth_opal_session
, &opal_lrs
->session
},
2260 { setup_locking_range
, opal_lrs
},
2261 { end_opal_session
, },
2266 mutex_lock(&dev
->dev_lock
);
2267 setup_opal_dev(dev
, lr_steps
);
2269 mutex_unlock(&dev
->dev_lock
);
2273 static int opal_set_new_pw(struct opal_dev
*dev
, struct opal_new_pw
*opal_pw
)
2275 const struct opal_step pw_steps
[] = {
2276 { opal_discovery0
, },
2277 { start_auth_opal_session
, &opal_pw
->session
},
2278 { set_new_pw
, &opal_pw
->new_user_pw
},
2279 { end_opal_session
, },
2284 if (opal_pw
->session
.who
< OPAL_ADMIN1
||
2285 opal_pw
->session
.who
> OPAL_USER9
||
2286 opal_pw
->new_user_pw
.who
< OPAL_ADMIN1
||
2287 opal_pw
->new_user_pw
.who
> OPAL_USER9
)
2290 mutex_lock(&dev
->dev_lock
);
2291 setup_opal_dev(dev
, pw_steps
);
2293 mutex_unlock(&dev
->dev_lock
);
2297 static int opal_activate_user(struct opal_dev
*dev
,
2298 struct opal_session_info
*opal_session
)
2300 const struct opal_step act_steps
[] = {
2301 { opal_discovery0
, },
2302 { start_admin1LSP_opal_session
, &opal_session
->opal_key
},
2303 { internal_activate_user
, opal_session
},
2304 { end_opal_session
, },
2309 /* We can't activate Admin1 it's active as manufactured */
2310 if (opal_session
->who
< OPAL_USER1
||
2311 opal_session
->who
> OPAL_USER9
) {
2312 pr_debug("Who was not a valid user: %d\n", opal_session
->who
);
2316 mutex_lock(&dev
->dev_lock
);
2317 setup_opal_dev(dev
, act_steps
);
2319 mutex_unlock(&dev
->dev_lock
);
2323 bool opal_unlock_from_suspend(struct opal_dev
*dev
)
2325 struct opal_suspend_data
*suspend
;
2326 bool was_failure
= false;
2331 if (!dev
->supported
)
2334 mutex_lock(&dev
->dev_lock
);
2335 setup_opal_dev(dev
, NULL
);
2337 list_for_each_entry(suspend
, &dev
->unlk_lst
, node
) {
2341 ret
= __opal_lock_unlock(dev
, &suspend
->unlk
);
2343 pr_debug("Failed to unlock LR %hhu with sum %d\n",
2344 suspend
->unlk
.session
.opal_key
.lr
,
2345 suspend
->unlk
.session
.sum
);
2349 mutex_unlock(&dev
->dev_lock
);
2352 EXPORT_SYMBOL(opal_unlock_from_suspend
);
2354 int sed_ioctl(struct opal_dev
*dev
, unsigned int cmd
, void __user
*arg
)
2359 if (!capable(CAP_SYS_ADMIN
))
2363 if (!dev
->supported
)
2366 p
= memdup_user(arg
, _IOC_SIZE(cmd
));
2372 ret
= opal_save(dev
, p
);
2374 case IOC_OPAL_LOCK_UNLOCK
:
2375 ret
= opal_lock_unlock(dev
, p
);
2377 case IOC_OPAL_TAKE_OWNERSHIP
:
2378 ret
= opal_take_ownership(dev
, p
);
2380 case IOC_OPAL_ACTIVATE_LSP
:
2381 ret
= opal_activate_lsp(dev
, p
);
2383 case IOC_OPAL_SET_PW
:
2384 ret
= opal_set_new_pw(dev
, p
);
2386 case IOC_OPAL_ACTIVATE_USR
:
2387 ret
= opal_activate_user(dev
, p
);
2389 case IOC_OPAL_REVERT_TPR
:
2390 ret
= opal_reverttper(dev
, p
);
2392 case IOC_OPAL_LR_SETUP
:
2393 ret
= opal_setup_locking_range(dev
, p
);
2395 case IOC_OPAL_ADD_USR_TO_LR
:
2396 ret
= opal_add_user_to_lr(dev
, p
);
2398 case IOC_OPAL_ENABLE_DISABLE_MBR
:
2399 ret
= opal_enable_disable_shadow_mbr(dev
, p
);
2401 case IOC_OPAL_ERASE_LR
:
2402 ret
= opal_erase_locking_range(dev
, p
);
2404 case IOC_OPAL_SECURE_ERASE_LR
:
2405 ret
= opal_secure_erase_locking_range(dev
, p
);
2414 EXPORT_SYMBOL_GPL(sed_ioctl
);