2 * Copyright © 2007 Intel Corporation
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
24 * Eric Anholt <eric@anholt.net>
29 * Tests various potential failures of the DRM locking mechanisms
43 unsigned int lock1
= 0x00001111;
44 unsigned int lock2
= 0x00002222;
46 /* return time in milliseconds */
52 gettimeofday(&tv
, NULL
);
53 return tv
.tv_sec
* 1000 + tv
.tv_usec
/ 1000;
57 wait_event(int pipe
, enum auth_event expected_event
)
60 enum auth_event event
;
63 ret
= read(commfd
[pipe
], &in
, 1);
68 if (event
!= expected_event
)
69 errx(1, "unexpected event: %d\n", event
);
73 send_event(int pipe
, enum auth_event send_event
)
79 ret
= write(commfd
[pipe
], &event
, 1);
81 err(1, "failed to send event %d", event
);
85 client_auth(int drmfd
)
90 /* Get a client magic number and pass it to the master for auth. */
91 ret
= ioctl(drmfd
, DRM_IOCTL_GET_MAGIC
, &auth
);
93 err(1, "Couldn't get client magic");
94 send_event(0, CLIENT_MAGIC
);
95 ret
= write(commfd
[0], &auth
.magic
, sizeof(auth
.magic
));
97 err(1, "Couldn't write auth data");
101 server_auth(int drmfd
)
103 struct drm_auth auth
;
106 send_event(1, SERVER_READY
);
107 wait_event(1, CLIENT_MAGIC
);
108 ret
= read(commfd
[1], &auth
.magic
, sizeof(auth
.magic
));
110 err(1, "Failure to read client magic");
112 ret
= ioctl(drmfd
, DRM_IOCTL_AUTH_MAGIC
, &auth
);
114 err(1, "Failure to authenticate client magic\n");
117 /** Tests that locking is successful in normal conditions */
119 test_lock_unlock(int drmfd
)
123 ret
= drmGetLock(drmfd
, lock1
, 0);
125 err(1, "Locking failed");
126 ret
= drmUnlock(drmfd
, lock1
);
128 err(1, "Unlocking failed");
131 /** Tests that unlocking the lock while it's not held works correctly */
133 test_unlock_unlocked(int drmfd
)
137 ret
= drmUnlock(drmfd
, lock1
);
139 err(1, "Unlocking unlocked lock succeeded");
142 /** Tests that unlocking a lock held by another context fails appropriately */
144 test_unlock_unowned(int drmfd
)
148 ret
= drmGetLock(drmfd
, lock1
, 0);
150 ret
= drmUnlock(drmfd
, lock2
);
152 errx(1, "Unlocking other context's lock succeeded");
153 ret
= drmUnlock(drmfd
, lock1
);
158 * Tests that an open/close by the same process doesn't result in the lock
161 static void test_open_close_locked(drmfd
)
165 ret
= drmGetLock(drmfd
, lock1
, 0);
167 /* XXX: Need to make sure that this is the same device as drmfd */
168 tempfd
= drm_open_any();
170 ret
= drmUnlock(drmfd
, lock1
);
172 errx(1, "lock lost during open/close by same pid");
180 wait_event(0, SERVER_READY
);
182 /* XXX: Should make sure we open the same DRM as the master */
183 drmfd
= drm_open_any();
187 /* Wait for the server to grab the lock, then grab it ourselves (to
188 * contest it). Hopefully we hit it within the window of when the
191 wait_event(0, SERVER_LOCKED
);
192 ret
= drmGetLock(drmfd
, lock2
, 0);
195 err(1, "Failed to get lock on client\n");
196 drmUnlock(drmfd
, lock2
);
198 /* Tell the server that our locking completed, and when it did */
199 send_event(0, CLIENT_LOCKED
);
200 ret
= write(commfd
[0], &time
, sizeof(time
));
208 int drmfd
, tempfd
, ret
;
209 unsigned int client_time
, unlock_time
;
211 drmfd
= drm_open_any_master();
213 test_lock_unlock(drmfd
);
214 test_unlock_unlocked(drmfd
);
215 test_unlock_unowned(drmfd
);
216 test_open_close_locked(drmfd
);
218 /* Perform the authentication sequence with the client. */
221 /* Now, test that the client attempting to lock while the server
222 * holds the lock works correctly.
224 ret
= drmGetLock(drmfd
, lock1
, 0);
226 send_event(1, SERVER_LOCKED
);
227 /* Wait a while for the client to do its thing */
229 ret
= drmUnlock(drmfd
, lock1
);
231 unlock_time
= get_millis();
233 wait_event(1, CLIENT_LOCKED
);
234 ret
= read(commfd
[1], &client_time
, sizeof(client_time
));
236 err(1, "Failure to read client magic");
238 if (client_time
< unlock_time
)
239 errx(1, "Client took lock before server released it");
244 int main(int argc
, char **argv
)
251 err(1, "Couldn't create pipe");
255 err(1, "failure to fork client");