summaryrefslogtreecommitdiff
path: root/data/org.freedesktop.udisks2.policy.in
blob: 5ad2bbb83b192c3bab0c9ee61ea75516c746e083 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
<?xml version="1.0" encoding="utf-8"?>

<!DOCTYPE policyconfig PUBLIC
 "-//freedesktop//DTD PolicyKit Policy Configuration 1.0//EN"
 "http://www.freedesktop.org/standards/PolicyKit/1.0/policyconfig.dtd">

<policyconfig>
  <vendor>The udisks Project</vendor>
  <vendor_url>http://udisks.freedesktop.org/</vendor_url>
  <icon_name>drive-removable-media</icon_name>

  <!-- ###################################################################### -->
  <!-- Mounting filesystems -->

  <action id="org.freedesktop.udisks2.filesystem-mount">
    <_description>Mount a filesystem</_description>
    <_message>Authentication is required to mount the filesystem</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>yes</allow_active>
    </defaults>
  </action>

  <!-- mount a device considered a "system device" -->
  <action id="org.freedesktop.udisks2.filesystem-mount-system">
    <_description>Mount a filesystem on a system device</_description>
    <_message>Authentication is required to mount the filesystem</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>auth_admin_keep</allow_active>
    </defaults>
  </action>

  <!-- mount a device attached to another seat -->
  <action id="org.freedesktop.udisks2.filesystem-mount-other-seat">
    <_description>Mount a filesystem from a device plugged into another seat</_description>
    <_message>Authentication is required to mount the filesystem</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>auth_admin_keep</allow_active>
    </defaults>
  </action>

  <!-- mount a device referenced in the /etc/fstab file with the x-udisks-auth option -->
  <action id="org.freedesktop.udisks2.filesystem-fstab">
    <_description>Mount/unmount filesystems defined in the fstab file with the x-udisks-auth option</_description>
    <_message>Authentication is required to mount/unmount the filesystem</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>auth_admin_keep</allow_active>
    </defaults>
  </action>

  <!-- ###################################################################### -->
  <!-- Unmounting filesystems -->

  <!-- unmount a filesystem mounted by another user -->
  <action id="org.freedesktop.udisks2.filesystem-unmount-others">
    <_description>Unmount a device mounted by another user</_description>
    <_message>Authentication is required to unmount a filesystem mounted by another user</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>auth_admin_keep</allow_active>
    </defaults>
  </action>

  <!-- unmount a filesystem mounted by another user, on a drive shared by all seats -->
  <action id="org.freedesktop.udisks2.filesystem-unmount-others-shared">
    <_description>Unmount a shared device mounted by another user</_description>
    <_message>Authentication is required to unmount a filesystem mounted by another user</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>yes</allow_active>
    </defaults>
  </action>

  <!-- ###################################################################### -->
  <!-- Unlocking encrypted devices -->

  <action id="org.freedesktop.udisks2.encrypted-unlock">
    <_description>Unlock an encrypted device</_description>
    <_message>Authentication is required to unlock an encrypted device</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>yes</allow_active>
    </defaults>
  </action>

  <!-- unlock a device considered a "system device" -->
  <action id="org.freedesktop.udisks2.encrypted-unlock-system">
    <_description>Unlock an encrypted system device</_description>
    <_message>Authentication is required to unlock an encrypted device</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>auth_admin_keep</allow_active>
    </defaults>
  </action>

  <!-- mount a device attached to another seat -->
  <action id="org.freedesktop.udisks2.encrypted-unlock-other-seat">
    <_description>Unlock an encrypted device plugged into another seat</_description>
    <_message>Authentication is required to unlock an encrypted device</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>auth_admin_keep</allow_active>
    </defaults>
  </action>

  <!-- unlock a device referenced in the /etc/crypttab file with the x-udisks-auth option -->
  <action id="org.freedesktop.udisks2.encrypted-unlock-crypttab">
    <_description>Unlock an encrypted device specified in the crypttab file with the x-udisks-auth option</_description>
    <_message>Authentication is required to unlock an encrypted device</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>auth_admin_keep</allow_active>
    </defaults>
  </action>

  <!-- ###################################################################### -->
  <!-- Locking encrypted devices -->

  <!-- lock a device unlocked by another user -->
  <action id="org.freedesktop.udisks2.encrypted-lock-others">
    <_description>Lock an encrypted device unlocked by another user</_description>
    <_message>Authentication is required to lock an encrypted device unlocked by another user</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>auth_admin_keep</allow_active>
    </defaults>
  </action>

  <!-- ###################################################################### -->
  <!-- Changing passphrases on encrypted devices -->

  <action id="org.freedesktop.udisks2.encrypted-change-passphrase">
    <_description>Change passphrase for an encrypted device</_description>
    <_message>Authentication is required to change the passphrase for an encrypted device</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>yes</allow_active>
    </defaults>
  </action>

  <!-- change passphrase on a device considered a "system device" -->
  <action id="org.freedesktop.udisks2.encrypted-change-passphrase-system">
    <_description>Change passphrase for an encrypted device</_description>
    <_message>Authentication is required to change the passphrase for an encrypted device</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>auth_admin_keep</allow_active>
    </defaults>
  </action>

  <!-- ###################################################################### -->
  <!-- Setting up loop devices -->

  <action id="org.freedesktop.udisks2.loop-setup">
    <_description>Manage loop devices</_description>
    <_message>Authentication is required to set up a loop device</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <!-- NOTE: this is not a DoS because we are using /dev/loop-control -->
      <allow_active>yes</allow_active>
    </defaults>
  </action>

  <!-- ###################################################################### -->
  <!-- Deleting loop devices -->

  <action id="org.freedesktop.udisks2.loop-delete-others">
    <_description>Manage loop devices</_description>
    <_message>Authentication is required to delete a loop device set up by another user</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>auth_admin_keep</allow_active>
    </defaults>
  </action>

  <!-- ###################################################################### -->
  <!-- Manage (start/stop) swapspace -->

  <action id="org.freedesktop.udisks2.manage-swapspace">
    <_description>Manage swapspace</_description>
    <_message>Authentication is required to manage swapspace</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>auth_admin_keep</allow_active>
    </defaults>
  </action>

  <!-- ###################################################################### -->
  <!-- Eject media from a drive -->

  <action id="org.freedesktop.udisks2.eject-media">
    <_description>Eject media</_description>
    <_message>Authentication is required to eject media</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>yes</allow_active>
    </defaults>
  </action>

  <!-- eject media from a drive considered a "system device" -->
  <action id="org.freedesktop.udisks2.eject-media-system">
    <_description>Eject media from a system drive</_description>
    <_message>Authentication is required to eject media</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>auth_admin_keep</allow_active>
    </defaults>
  </action>

  <!-- eject media from a drive attached to another seat -->
  <action id="org.freedesktop.udisks2.eject-media-other-seat">
    <_description>Eject media attached to another seat</_description>
    <_message>Authentication is required to eject media from a drive plugged into another seat</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>auth_admin_keep</allow_active>
    </defaults>
  </action>

  <!-- ###################################################################### -->
  <!-- Modify a device (create new filesystem, partitioning, change FS label etc.) -->

  <action id="org.freedesktop.udisks2.modify-device">
    <_description>Modify a device</_description>
    <_message>Authentication is required to modify a device</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>yes</allow_active>
    </defaults>
  </action>

  <!-- modify a device considered a "system device" -->
  <action id="org.freedesktop.udisks2.modify-device-system">
    <_description>Modify a system device</_description>
    <_message>Authentication is required to modify a device</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>auth_admin_keep</allow_active>
    </defaults>
  </action>

  <!-- modify a device attached to another seat -->
  <action id="org.freedesktop.udisks2.modify-device-other-seat">
    <_description>Modify a device</_description>
    <_message>Authentication is required to modify a device plugged into another seat</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>auth_admin_keep</allow_active>
    </defaults>
  </action>

  <!-- ###################################################################### -->
  <!-- Open a device for reading (for creating / restoring disk images) -->

  <action id="org.freedesktop.udisks2.open-device">
    <_description>Open a device</_description>
    <_message>Authentication is required to open a device</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>auth_admin_keep</allow_active>
    </defaults>
  </action>

  <action id="org.freedesktop.udisks2.open-device-system">
    <_description>Open a system device</_description>
    <_message>Authentication is required to open a device</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>auth_admin_keep</allow_active>
    </defaults>
  </action>

  <!-- ###################################################################### -->
  <!-- Manage system-wide configuration files such as /etc/fstab or
       /etc/crypttab ... including files referenced by these files.

       IMPORTANT: It is not secure to automatically grant authority
       for this action to groups of users. Neither is it secure to
       to allow a process to retain the authorization (e.g. don't
       use the _keep variants).
  -->

  <action id="org.freedesktop.udisks2.modify-system-configuration">
    <_description>Modify system-wide configuration</_description>
    <_message>Authentication is required to modify system-wide configuration</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>auth_admin</allow_active>
    </defaults>
  </action>

  <!-- Get secrets from system-wide configuration files -->
  <action id="org.freedesktop.udisks2.read-system-configuration-secrets">
    <_description>Modify system-wide configuration</_description>
    <_message>Authentication is required to retrieve secrets from system-wide configuration</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>auth_admin</allow_active>
    </defaults>
  </action>

  <!-- ###################################################################### -->
  <!-- ATA SMART -->

  <!-- Update/refresh SMART data -->
  <action id="org.freedesktop.udisks2.ata-smart-update">
    <_description>Update SMART data</_description>
    <_message>Authentication is required to update SMART data</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>yes</allow_active>
    </defaults>
  </action>

  <!-- Start and abort SMART self-tests -->
  <action id="org.freedesktop.udisks2.ata-smart-selftest">
    <_description>Run SMART self-test</_description>
    <_message>Authentication is required to run a SMART self-test</_message>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>auth_admin_keep</allow_active>
    </defaults>
  </action>

</policyconfig>