~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/crypto/ccp/dbc.c

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /tools/crypto/ccp/dbc.c (Version linux-6.11-rc3) and /tools/crypto/ccp/dbc.c (Version linux-6.10.4)


  1 // SPDX-License-Identifier: GPL-2.0-only            1 // SPDX-License-Identifier: GPL-2.0-only
  2 /*                                                  2 /*
  3  * AMD Secure Processor Dynamic Boost Control       3  * AMD Secure Processor Dynamic Boost Control sample library
  4  *                                                  4  *
  5  * Copyright (C) 2023 Advanced Micro Devices,       5  * Copyright (C) 2023 Advanced Micro Devices, Inc.
  6  *                                                  6  *
  7  * Author: Mario Limonciello <mario.limonciell      7  * Author: Mario Limonciello <mario.limonciello@amd.com>
  8  */                                                 8  */
  9                                                     9 
 10 #include <assert.h>                                10 #include <assert.h>
 11 #include <errno.h>                                 11 #include <errno.h>
 12 #include <string.h>                                12 #include <string.h>
 13 #include <sys/ioctl.h>                             13 #include <sys/ioctl.h>
 14                                                    14 
 15 /* if uapi header isn't installed, this might      15 /* if uapi header isn't installed, this might not yet exist */
 16 #ifndef __packed                                   16 #ifndef __packed
 17 #define __packed __attribute__((packed))           17 #define __packed __attribute__((packed))
 18 #endif                                             18 #endif
 19 #include <linux/psp-dbc.h>                         19 #include <linux/psp-dbc.h>
 20                                                    20 
 21 int get_nonce(int fd, void *nonce_out, void *s     21 int get_nonce(int fd, void *nonce_out, void *signature)
 22 {                                                  22 {
 23         struct dbc_user_nonce tmp = {              23         struct dbc_user_nonce tmp = {
 24                 .auth_needed = !!signature,        24                 .auth_needed = !!signature,
 25         };                                         25         };
 26                                                    26 
 27         assert(nonce_out);                         27         assert(nonce_out);
 28                                                    28 
 29         if (signature)                             29         if (signature)
 30                 memcpy(tmp.signature, signatur     30                 memcpy(tmp.signature, signature, sizeof(tmp.signature));
 31                                                    31 
 32         if (ioctl(fd, DBCIOCNONCE, &tmp))          32         if (ioctl(fd, DBCIOCNONCE, &tmp))
 33                 return errno;                      33                 return errno;
 34         memcpy(nonce_out, tmp.nonce, sizeof(tm     34         memcpy(nonce_out, tmp.nonce, sizeof(tmp.nonce));
 35                                                    35 
 36         return 0;                                  36         return 0;
 37 }                                                  37 }
 38                                                    38 
 39 int set_uid(int fd, __u8 *uid, __u8 *signature     39 int set_uid(int fd, __u8 *uid, __u8 *signature)
 40 {                                                  40 {
 41         struct dbc_user_setuid tmp;                41         struct dbc_user_setuid tmp;
 42                                                    42 
 43         assert(uid);                               43         assert(uid);
 44         assert(signature);                         44         assert(signature);
 45                                                    45 
 46         memcpy(tmp.uid, uid, sizeof(tmp.uid));     46         memcpy(tmp.uid, uid, sizeof(tmp.uid));
 47         memcpy(tmp.signature, signature, sizeo     47         memcpy(tmp.signature, signature, sizeof(tmp.signature));
 48                                                    48 
 49         if (ioctl(fd, DBCIOCUID, &tmp))            49         if (ioctl(fd, DBCIOCUID, &tmp))
 50                 return errno;                      50                 return errno;
 51         return 0;                                  51         return 0;
 52 }                                                  52 }
 53                                                    53 
 54 int process_param(int fd, int msg_index, __u8      54 int process_param(int fd, int msg_index, __u8 *signature, int *data)
 55 {                                                  55 {
 56         struct dbc_user_param tmp = {              56         struct dbc_user_param tmp = {
 57                 .msg_index = msg_index,            57                 .msg_index = msg_index,
 58                 .param = *data,                    58                 .param = *data,
 59         };                                         59         };
 60         int ret;                                   60         int ret;
 61                                                    61 
 62         assert(signature);                         62         assert(signature);
 63         assert(data);                              63         assert(data);
 64                                                    64 
 65         memcpy(tmp.signature, signature, sizeo     65         memcpy(tmp.signature, signature, sizeof(tmp.signature));
 66                                                    66 
 67         if (ioctl(fd, DBCIOCPARAM, &tmp))          67         if (ioctl(fd, DBCIOCPARAM, &tmp))
 68                 return errno;                      68                 return errno;
 69                                                    69 
 70         *data = tmp.param;                         70         *data = tmp.param;
 71         memcpy(signature, tmp.signature, sizeo     71         memcpy(signature, tmp.signature, sizeof(tmp.signature));
 72         return 0;                                  72         return 0;
 73 }                                                  73 }
 74                                                    74 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php