1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* dbus-auth-script.c Test DBusAuth using a special script file (internal to D-Bus implementation)
4 * Copyright (C) 2003 Red Hat, Inc.
6 * Licensed under the Academic Free License version 2.1
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25 #ifdef DBUS_BUILD_TESTS
27 #include "dbus-auth-script.h"
28 #include "dbus-auth.h"
29 #include "dbus-string.h"
30 #include "dbus-hash.h"
31 #include "dbus-credentials.h"
32 #include "dbus-internals.h"
35 * @defgroup DBusAuthScript code for running unit test scripts for DBusAuth
36 * @ingroup DBusInternals
37 * @brief DBusAuth unit test scripting
39 * The code in here is used for unit testing, it loads
40 * up a script that tests DBusAuth.
45 /* this is slightly different from the other append_quoted_string
46 * in dbus-message-builder.c
49 append_quoted_string (DBusString *dest,
50 const DBusString *quoted)
52 dbus_bool_t in_quotes = FALSE;
53 dbus_bool_t in_backslash = FALSE;
57 while (i < _dbus_string_get_length (quoted))
61 b = _dbus_string_get_byte (quoted, i);
75 _dbus_warn ("bad backslashed byte %c\n", b);
79 if (!_dbus_string_append_byte (dest, a))
94 if (!_dbus_string_append_byte (dest, b))
102 else if (b == ' ' || b == '\n' || b == '\t')
103 break; /* end on whitespace if not quoted */
106 if (!_dbus_string_append_byte (dest, b))
118 same_first_word (const DBusString *a,
121 int first_a_blank, first_b_blank;
123 _dbus_string_find_blank (a, 0, &first_a_blank);
124 _dbus_string_find_blank (b, 0, &first_b_blank);
126 if (first_a_blank != first_b_blank)
129 return _dbus_string_equal_len (a, b, first_a_blank);
133 auth_state_from_string (const DBusString *str)
135 if (_dbus_string_starts_with_c_str (str, "WAITING_FOR_INPUT"))
136 return DBUS_AUTH_STATE_WAITING_FOR_INPUT;
137 else if (_dbus_string_starts_with_c_str (str, "WAITING_FOR_MEMORY"))
138 return DBUS_AUTH_STATE_WAITING_FOR_MEMORY;
139 else if (_dbus_string_starts_with_c_str (str, "HAVE_BYTES_TO_SEND"))
140 return DBUS_AUTH_STATE_HAVE_BYTES_TO_SEND;
141 else if (_dbus_string_starts_with_c_str (str, "NEED_DISCONNECT"))
142 return DBUS_AUTH_STATE_NEED_DISCONNECT;
143 else if (_dbus_string_starts_with_c_str (str, "AUTHENTICATED"))
144 return DBUS_AUTH_STATE_AUTHENTICATED;
150 auth_state_to_string (DBusAuthState state)
154 case DBUS_AUTH_STATE_WAITING_FOR_INPUT:
155 return "WAITING_FOR_INPUT";
156 case DBUS_AUTH_STATE_WAITING_FOR_MEMORY:
157 return "WAITING_FOR_MEMORY";
158 case DBUS_AUTH_STATE_HAVE_BYTES_TO_SEND:
159 return "HAVE_BYTES_TO_SEND";
160 case DBUS_AUTH_STATE_NEED_DISCONNECT:
161 return "NEED_DISCONNECT";
162 case DBUS_AUTH_STATE_AUTHENTICATED:
163 return "AUTHENTICATED";
170 split_string (DBusString *str)
172 int i, j, k, count, end;
175 end = _dbus_string_get_length (str);
178 _dbus_string_skip_blank (str, i, &i);
179 for (count = 0; i < end; count++)
181 _dbus_string_find_blank (str, i, &i);
182 _dbus_string_skip_blank (str, i, &i);
185 array = dbus_new0 (char *, count + 1);
190 _dbus_string_skip_blank (str, i, &i);
191 for (k = 0; k < count; k++)
193 _dbus_string_find_blank (str, i, &j);
195 array[k] = dbus_malloc (j - i + 1);
196 if (array[k] == NULL)
198 dbus_free_string_array (array);
202 _dbus_string_get_const_data_len (str, i, j - i), j - i);
203 array[k][j - i] = '\0';
205 _dbus_string_skip_blank (str, j, &i);
213 auth_set_unix_credentials(DBusAuth *auth,
217 DBusCredentials *credentials;
219 credentials = _dbus_credentials_new ();
220 if (credentials == NULL)
221 _dbus_assert_not_reached ("no memory");
223 if (uid != DBUS_UID_UNSET)
224 _dbus_credentials_add_unix_uid (credentials, uid);
225 if (pid != DBUS_PID_UNSET)
226 _dbus_credentials_add_unix_pid (credentials, pid);
228 _dbus_auth_set_credentials (auth, credentials);
230 _dbus_credentials_unref (credentials);
234 * Runs an "auth script" which is a script for testing the
235 * authentication protocol. Scripts send and receive data, and then
236 * include assertions about the state of both ends of the connection
237 * after processing the data. A script succeeds if these assertions
240 * @param filename the file containing the script to run
241 * @returns #TRUE if the script succeeds, #FALSE otherwise
244 _dbus_auth_script_run (const DBusString *filename)
247 DBusError error = DBUS_ERROR_INIT;
252 DBusString from_auth;
260 _dbus_string_init_const (&guid, "5fa01f4202cd837709a3274ca0df9d00");
261 _dbus_string_init_const (&context, "org_freedesktop_test");
263 if (!_dbus_string_init (&file))
266 if (!_dbus_string_init (&line))
268 _dbus_string_free (&file);
272 if (!_dbus_string_init (&from_auth))
274 _dbus_string_free (&file);
275 _dbus_string_free (&line);
279 if (!_dbus_file_get_contents (&file, filename, &error)) {
280 _dbus_warn ("Getting contents of %s failed: %s\n",
281 _dbus_string_get_const_data (filename), error.message);
282 dbus_error_free (&error);
286 state = DBUS_AUTH_STATE_NEED_DISCONNECT;
290 while (_dbus_string_pop_line (&file, &line))
294 /* _dbus_warn ("%s\n", _dbus_string_get_const_data (&line)); */
296 _dbus_string_delete_leading_blanks (&line);
300 while ((state = _dbus_auth_do_work (auth)) ==
301 DBUS_AUTH_STATE_HAVE_BYTES_TO_SEND)
303 const DBusString *tmp;
304 if (_dbus_auth_get_bytes_to_send (auth, &tmp))
306 int count = _dbus_string_get_length (tmp);
308 if (_dbus_string_copy (tmp, 0, &from_auth,
309 _dbus_string_get_length (&from_auth)))
310 _dbus_auth_bytes_sent (auth, count);
315 if (_dbus_string_get_length (&line) == 0)
320 else if (_dbus_string_starts_with_c_str (&line,
323 /* Ignore this comment */
327 else if (_dbus_string_starts_with_c_str (&line,
330 /* Ignore this line */
333 else if (_dbus_string_starts_with_c_str (&line,
337 _dbus_warn ("skipping unix only auth script\n");
343 else if (_dbus_string_starts_with_c_str (&line,
346 /* Ignore this line */
349 else if (_dbus_string_starts_with_c_str (&line,
353 _dbus_warn ("skipping windows only auth script\n");
358 else if (_dbus_string_starts_with_c_str (&line,
361 DBusCredentials *creds;
365 _dbus_warn ("already created a DBusAuth (CLIENT or SERVER given twice)\n");
369 auth = _dbus_auth_client_new ();
372 _dbus_warn ("no memory to create DBusAuth\n");
377 _dbus_auth_ref (auth);
378 _dbus_auth_unref (auth);
380 creds = _dbus_credentials_new_from_current_process ();
383 _dbus_warn ("no memory for credentials\n");
384 _dbus_auth_unref (auth);
389 if (!_dbus_auth_set_credentials (auth, creds))
391 _dbus_warn ("no memory for setting credentials\n");
392 _dbus_auth_unref (auth);
394 _dbus_credentials_unref (creds);
398 _dbus_credentials_unref (creds);
400 else if (_dbus_string_starts_with_c_str (&line,
403 DBusCredentials *creds;
407 _dbus_warn ("already created a DBusAuth (CLIENT or SERVER given twice)\n");
411 auth = _dbus_auth_server_new (&guid);
414 _dbus_warn ("no memory to create DBusAuth\n");
419 _dbus_auth_ref (auth);
420 _dbus_auth_unref (auth);
422 creds = _dbus_credentials_new_from_current_process ();
425 _dbus_warn ("no memory for credentials\n");
426 _dbus_auth_unref (auth);
431 if (!_dbus_auth_set_credentials (auth, creds))
433 _dbus_warn ("no memory for setting credentials\n");
434 _dbus_auth_unref (auth);
436 _dbus_credentials_unref (creds);
440 _dbus_credentials_unref (creds);
442 _dbus_auth_set_context (auth, &context);
444 else if (auth == NULL)
446 _dbus_warn ("must specify CLIENT or SERVER\n");
450 else if (_dbus_string_starts_with_c_str (&line,
453 auth_set_unix_credentials (auth, DBUS_UID_UNSET, DBUS_PID_UNSET);
455 else if (_dbus_string_starts_with_c_str (&line,
458 auth_set_unix_credentials (auth, 0, DBUS_PID_UNSET);
460 else if (_dbus_string_starts_with_c_str (&line,
461 "SILLY_CREDENTIALS"))
463 auth_set_unix_credentials (auth, 4312, DBUS_PID_UNSET);
465 else if (_dbus_string_starts_with_c_str (&line,
470 _dbus_string_delete_first_word (&line);
471 mechs = split_string (&line);
472 _dbus_auth_set_mechanisms (auth, (const char **) mechs);
473 dbus_free_string_array (mechs);
475 else if (_dbus_string_starts_with_c_str (&line,
480 _dbus_string_delete_first_word (&line);
482 if (!_dbus_string_init (&to_send))
484 _dbus_warn ("no memory to allocate string\n");
488 if (!append_quoted_string (&to_send, &line))
490 _dbus_warn ("failed to append quoted string line %d\n",
492 _dbus_string_free (&to_send);
496 _dbus_verbose ("Sending '%s'\n", _dbus_string_get_const_data (&to_send));
498 if (!_dbus_string_append (&to_send, "\r\n"))
500 _dbus_warn ("failed to append \r\n from line %d\n",
502 _dbus_string_free (&to_send);
506 /* Replace USERID_HEX with our username in hex */
510 if (_dbus_string_find (&to_send, 0,
511 "USERID_HEX", &where))
515 if (!_dbus_string_init (&username))
517 _dbus_warn ("no memory for userid\n");
518 _dbus_string_free (&to_send);
522 if (!_dbus_append_user_from_current_process (&username))
524 _dbus_warn ("no memory for userid\n");
525 _dbus_string_free (&username);
526 _dbus_string_free (&to_send);
530 _dbus_string_delete (&to_send, where, strlen ("USERID_HEX"));
532 if (!_dbus_string_hex_encode (&username, 0,
535 _dbus_warn ("no memory to subst USERID_HEX\n");
536 _dbus_string_free (&username);
537 _dbus_string_free (&to_send);
541 _dbus_string_free (&username);
543 else if (_dbus_string_find (&to_send, 0,
544 "USERNAME_HEX", &where))
548 if (!_dbus_string_init (&username))
550 _dbus_warn ("no memory for username\n");
551 _dbus_string_free (&to_send);
555 if (!_dbus_append_user_from_current_process (&username))
557 _dbus_warn ("no memory for username\n");
558 _dbus_string_free (&username);
559 _dbus_string_free (&to_send);
563 _dbus_string_delete (&to_send, where, strlen ("USERNAME_HEX"));
565 if (!_dbus_string_hex_encode (&username, 0,
568 _dbus_warn ("no memory to subst USERNAME_HEX\n");
569 _dbus_string_free (&username);
570 _dbus_string_free (&to_send);
574 _dbus_string_free (&username);
581 _dbus_auth_get_buffer (auth, &buffer);
582 if (!_dbus_string_copy (&to_send, 0,
583 buffer, _dbus_string_get_length (buffer)))
585 _dbus_warn ("not enough memory to call bytes_received, or can't add bytes to auth object already in end state\n");
586 _dbus_string_free (&to_send);
587 _dbus_auth_return_buffer (auth, buffer, 0);
591 _dbus_auth_return_buffer (auth, buffer, _dbus_string_get_length (&to_send));
594 _dbus_string_free (&to_send);
596 else if (_dbus_string_starts_with_c_str (&line,
599 DBusAuthState expected;
601 _dbus_string_delete_first_word (&line);
603 expected = auth_state_from_string (&line);
606 _dbus_warn ("bad auth state given to EXPECT_STATE\n");
610 if (expected != state)
612 _dbus_warn ("expected auth state %s but got %s on line %d\n",
613 auth_state_to_string (expected),
614 auth_state_to_string (state),
619 else if (_dbus_string_starts_with_c_str (&line,
624 _dbus_string_delete_first_word (&line);
626 if (!_dbus_string_init (&received))
628 _dbus_warn ("no mem to allocate string received\n");
632 if (!_dbus_string_pop_line (&from_auth, &received))
634 _dbus_warn ("no line popped from the DBusAuth being tested, expected command %s on line %d\n",
635 _dbus_string_get_const_data (&line), line_no);
636 _dbus_string_free (&received);
640 if (!same_first_word (&received, &line))
642 _dbus_warn ("line %d expected command '%s' and got '%s'\n",
644 _dbus_string_get_const_data (&line),
645 _dbus_string_get_const_data (&received));
646 _dbus_string_free (&received);
650 _dbus_string_free (&received);
652 else if (_dbus_string_starts_with_c_str (&line,
656 const DBusString *unused;
658 _dbus_string_delete_first_word (&line);
660 if (!_dbus_string_init (&expected))
662 _dbus_warn ("no mem to allocate string expected\n");
666 if (!append_quoted_string (&expected, &line))
668 _dbus_warn ("failed to append quoted string line %d\n",
670 _dbus_string_free (&expected);
674 _dbus_auth_get_unused_bytes (auth, &unused);
676 if (_dbus_string_equal (&expected, unused))
678 _dbus_auth_delete_unused_bytes (auth);
679 _dbus_string_free (&expected);
683 _dbus_warn ("Expected unused bytes '%s' and have '%s'\n",
684 _dbus_string_get_const_data (&expected),
685 _dbus_string_get_const_data (unused));
686 _dbus_string_free (&expected);
690 else if (_dbus_string_starts_with_c_str (&line,
691 "EXPECT_HAVE_NO_CREDENTIALS"))
693 DBusCredentials *authorized_identity;
695 authorized_identity = _dbus_auth_get_identity (auth);
696 if (!_dbus_credentials_are_anonymous (authorized_identity))
698 _dbus_warn ("Expected anonymous login or failed login, but some credentials were authorized\n");
702 else if (_dbus_string_starts_with_c_str (&line,
703 "EXPECT_HAVE_SOME_CREDENTIALS"))
705 DBusCredentials *authorized_identity;
707 authorized_identity = _dbus_auth_get_identity (auth);
708 if (_dbus_credentials_are_anonymous (authorized_identity))
710 _dbus_warn ("Expected to have some credentials, but we don't\n");
714 else if (_dbus_string_starts_with_c_str (&line,
719 _dbus_string_delete_first_word (&line);
721 if (!_dbus_string_init (&expected))
723 _dbus_warn ("no mem to allocate string expected\n");
727 if (!append_quoted_string (&expected, &line))
729 _dbus_warn ("failed to append quoted string line %d\n",
731 _dbus_string_free (&expected);
735 if (_dbus_string_equal_len (&expected, &from_auth,
736 _dbus_string_get_length (&expected)))
738 _dbus_string_delete (&from_auth, 0,
739 _dbus_string_get_length (&expected));
740 _dbus_string_free (&expected);
744 _dbus_warn ("Expected exact string '%s' and have '%s'\n",
745 _dbus_string_get_const_data (&expected),
746 _dbus_string_get_const_data (&from_auth));
747 _dbus_string_free (&expected);
754 goto next_iteration; /* skip parse_failed */
758 _dbus_warn ("couldn't process line %d \"%s\"\n",
759 line_no, _dbus_string_get_const_data (&line));
766 _dbus_warn ("Auth script is bogus, did not even have CLIENT or SERVER\n");
769 else if (state == DBUS_AUTH_STATE_AUTHENTICATED)
771 const DBusString *unused;
773 _dbus_auth_get_unused_bytes (auth, &unused);
775 if (_dbus_string_get_length (unused) > 0)
777 _dbus_warn ("did not expect unused bytes (scripts must specify explicitly if they are expected)\n");
782 if (_dbus_string_get_length (&from_auth) > 0)
784 _dbus_warn ("script did not have EXPECT_ statements for all the data received from the DBusAuth\n");
785 _dbus_warn ("Leftover data: %s\n", _dbus_string_get_const_data (&from_auth));
793 _dbus_auth_unref (auth);
795 _dbus_string_free (&file);
796 _dbus_string_free (&line);
797 _dbus_string_free (&from_auth);
803 #endif /* DBUS_BUILD_TESTS */