OSDN Git Service

f690762277629763609a7d2091ae4bdf8ee3bad2
[linuxjm/LDP_man-pages.git] / original / man2 / add_key.2
1 .\" Copyright (C) 2006 Red Hat, Inc. All Rights Reserved.
2 .\" Written by David Howells (dhowells@redhat.com)
3 .\"
4 .\" %%%LICENSE_START(GPLv2+_SW_ONEPARA)
5 .\" This program is free software; you can redistribute it and/or
6 .\" modify it under the terms of the GNU General Public License
7 .\" as published by the Free Software Foundation; either version
8 .\" 2 of the License, or (at your option) any later version.
9 .\" %%%LICENSE_END
10 .\"
11 .TH ADD_KEY 2 2010-02-25 Linux "Linux Key Management Calls"
12 .SH NAME
13 add_key \- add a key to the kernel's key management facility
14 .SH SYNOPSIS
15 .nf
16 .B #include <keyutils.h>
17 .sp
18 .BI "key_serial_t add_key(const char *" type ", const char *" description ,
19 .BI "                     const void *" payload ", size_t " plen ,
20 .BI "                     key_serial_t " keyring ");"
21 .fi
22 .SH DESCRIPTION
23 .BR add_key ()
24 asks the kernel to create or update a key of the given
25 .I type
26 and
27 .IR description ,
28 instantiate it with the
29 .I payload
30 of length
31 .IR plen ,
32 and to attach it to the nominated
33 .I keyring
34 and to return its serial number.
35 .P
36 The key type may reject the data if it's in the wrong format or in some other
37 way invalid.
38 .P
39 If the destination
40 .I keyring
41 already contains a key that matches the specified
42 .IR type " and " description,
43 then, if the key type supports it, that key will be updated rather than a new
44 key being created; if not, a new key will be created and it will displace the
45 link to the extant key from the keyring.
46 .P
47 The destination
48 .I keyring
49 serial number may be that of a valid keyring to which the caller has write
50 permission, or it may be a special keyring ID:
51 .TP
52 .B KEY_SPEC_THREAD_KEYRING
53 This specifies the caller's thread-specific keyring.
54 .TP
55 .B KEY_SPEC_PROCESS_KEYRING
56 This specifies the caller's process-specific keyring.
57 .TP
58 .B KEY_SPEC_SESSION_KEYRING
59 This specifies the caller's session-specific keyring.
60 .TP
61 .B KEY_SPEC_USER_KEYRING
62 This specifies the caller's UID-specific keyring.
63 .TP
64 .B KEY_SPEC_USER_SESSION_KEYRING
65 This specifies the caller's UID-session keyring.
66 .SH KEY TYPES
67 There are a number of key types available in the core key management code, and
68 these can be specified to this function:
69 .TP
70 .B \*(lquser\*(rq
71 Keys of the user-defined key type may contain a blob of arbitrary data, and the
72 .I description
73 may be any valid string, though it is preferred that the description be
74 prefixed with a string representing the service to which the key is of interest
75 and a colon (for instance
76 .RB \*(lq afs:mykey \*(rq).
77 The
78 .I payload
79 may be empty or NULL for keys of this type.
80 .TP
81 .B \*(lqkeyring\*(rq
82 Keyrings are special key types that may contain links to sequences of other
83 keys of any type.
84 If this interface is used to create a keyring, then a NULL
85 .I payload
86 should be specified, and
87 .I plen
88 should be zero.
89 .SH RETURN VALUE
90 On success
91 .BR add_key ()
92 returns the serial number of the key it created or updated.
93 On error, the value \-1
94 will be returned and errno will have been set to an appropriate error.
95 .SH ERRORS
96 .TP
97 .B ENOKEY
98 The keyring doesn't exist.
99 .TP
100 .B EKEYEXPIRED
101 The keyring has expired.
102 .TP
103 .B EKEYREVOKED
104 The keyring has been revoked.
105 .TP
106 .B EINVAL
107 The payload data was invalid.
108 .TP
109 .B ENOMEM
110 Insufficient memory to create a key.
111 .TP
112 .B EDQUOT
113 The key quota for this user would be exceeded by creating this key or linking
114 it to the keyring.
115 .TP
116 .B EACCES
117 The keyring wasn't available for modification by the user.
118 .SH LINKING
119 Although this is a Linux system call, it is not present in
120 .I libc
121 but can be found rather in
122 .IR libkeyutils .
123 When linking,
124 .B -lkeyutils
125 should be specified to the linker.
126 .SH SEE ALSO
127 .BR keyctl (1),
128 .BR keyctl (2),
129 .BR request_key (2)
130 .SH COLOPHON
131 This page is part of release 3.67 of the Linux
132 .I man-pages
133 project.
134 A description of the project,
135 information about reporting bugs,
136 and the latest version of this page,
137 can be found at
138 \%http://www.kernel.org/doc/man\-pages/.