2003-09-07 Havoc Pennington <hp@pobox.com>
[platform/upstream/dbus.git] / dbus / dbus-auth.c
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-auth.c Authentication
3  *
4  * Copyright (C) 2002, 2003 Red Hat Inc.
5  *
6  * Licensed under the Academic Free License version 1.2
7  * 
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.
12  *
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.
17  * 
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  *
22  */
23 #include "dbus-auth.h"
24 #include "dbus-string.h"
25 #include "dbus-list.h"
26 #include "dbus-internals.h"
27 #include "dbus-keyring.h"
28 #include "dbus-sha.h"
29 #include "dbus-userdb.h"
30
31 /**
32  * @defgroup DBusAuth Authentication
33  * @ingroup  DBusInternals
34  * @brief DBusAuth object
35  *
36  * DBusAuth manages the authentication negotiation when a connection
37  * is first established, and also manage any encryption used over a
38  * connection.
39  *
40  * @todo some SASL profiles require sending the empty string as a
41  * challenge/response, but we don't currently allow that in our
42  * protocol.
43  *
44  * @todo DBusAuth really needs to be rewritten as an explicit state
45  * machine. Right now it's too hard to prove to yourself by inspection
46  * that it works.
47  *
48  * @todo right now sometimes both ends will block waiting for input
49  * from the other end, e.g. if there's an error during
50  * DBUS_COOKIE_SHA1.
51  *
52  * @todo the cookie keyring needs to be cached globally not just
53  * per-auth (which raises threadsafety issues too)
54  * 
55  * @todo grep FIXME in dbus-auth.c
56  */
57
58 /**
59  * @defgroup DBusAuthInternals Authentication implementation details
60  * @ingroup  DBusInternals
61  * @brief DBusAuth implementation details
62  *
63  * Private details of authentication code.
64  *
65  * @{
66  */
67
68 /**
69  * Processes a command. Returns whether we had enough memory to
70  * complete the operation.
71  */
72 typedef dbus_bool_t (* DBusProcessAuthCommandFunction) (DBusAuth         *auth,
73                                                         const DBusString *command,
74                                                         const DBusString *args);
75
76 /**
77  * Handler for a given auth protocol command
78  */
79 typedef struct
80 {
81   const char *command; /**< Name of the command */
82   DBusProcessAuthCommandFunction func; /**< Function to handle the command */
83 } DBusAuthCommandHandler;
84
85 /**
86  * This function appends an initial client response to the given string
87  */
88 typedef dbus_bool_t (* DBusInitialResponseFunction)  (DBusAuth         *auth,
89                                                       DBusString       *response);
90
91 /**
92  * This function processes a block of data received from the peer.
93  * i.e. handles a DATA command.
94  */
95 typedef dbus_bool_t (* DBusAuthDataFunction)     (DBusAuth         *auth,
96                                                   const DBusString *data);
97
98 /**
99  * This function encodes a block of data from the peer.
100  */
101 typedef dbus_bool_t (* DBusAuthEncodeFunction)   (DBusAuth         *auth,
102                                                   const DBusString *data,
103                                                   DBusString       *encoded);
104
105 /**
106  * This function decodes a block of data from the peer.
107  */
108 typedef dbus_bool_t (* DBusAuthDecodeFunction)   (DBusAuth         *auth,
109                                                   const DBusString *data,
110                                                   DBusString       *decoded);
111
112 /**
113  * This function is called when the mechanism is abandoned.
114  */
115 typedef void        (* DBusAuthShutdownFunction) (DBusAuth       *auth);
116
117 /**
118  * Virtual table representing a particular auth mechanism.
119  */
120 typedef struct
121 {
122   const char *mechanism; /**< Name of the mechanism */
123   DBusAuthDataFunction server_data_func; /**< Function on server side for DATA */
124   DBusAuthEncodeFunction server_encode_func; /**< Function on server side to encode */
125   DBusAuthDecodeFunction server_decode_func; /**< Function on server side to decode */
126   DBusAuthShutdownFunction server_shutdown_func; /**< Function on server side to shut down */
127   DBusInitialResponseFunction client_initial_response_func; /**< Function on client side to handle initial response */
128   DBusAuthDataFunction client_data_func; /**< Function on client side for DATA */
129   DBusAuthEncodeFunction client_encode_func; /**< Function on client side for encode */
130   DBusAuthDecodeFunction client_decode_func; /**< Function on client side for decode */
131   DBusAuthShutdownFunction client_shutdown_func; /**< Function on client side for shutdown */
132 } DBusAuthMechanismHandler;
133
134 /**
135  * Internal members of DBusAuth.
136  */
137 struct DBusAuth
138 {
139   int refcount;           /**< reference count */
140
141   DBusString incoming;    /**< Incoming data buffer */
142   DBusString outgoing;    /**< Outgoing data buffer */
143   
144   const DBusAuthCommandHandler *handlers; /**< Handlers for commands */
145
146   const DBusAuthMechanismHandler *mech;   /**< Current auth mechanism */
147
148   DBusString identity;                   /**< Current identity we're authorizing
149                                           *   as.
150                                           */
151   
152   DBusCredentials credentials;      /**< Credentials read from socket,
153                                      * fields may be -1
154                                      */
155
156   DBusCredentials authorized_identity; /**< Credentials that are authorized */
157
158   DBusCredentials desired_identity;    /**< Identity client has requested */
159   
160   DBusString context;               /**< Cookie scope */
161   DBusKeyring *keyring;             /**< Keyring for cookie mechanism. */
162   int cookie_id;                    /**< ID of cookie to use */
163   DBusString challenge;             /**< Challenge sent to client */
164
165   char **allowed_mechs;             /**< Mechanisms we're allowed to use,
166                                      * or #NULL if we can use any
167                                      */
168   
169   unsigned int needed_memory : 1;   /**< We needed memory to continue since last
170                                      * successful getting something done
171                                      */
172   unsigned int need_disconnect : 1; /**< We've given up, time to disconnect */
173   unsigned int authenticated : 1;   /**< We are authenticated */
174   unsigned int authenticated_pending_output : 1; /**< Authenticated once we clear outgoing buffer */
175   unsigned int authenticated_pending_begin : 1;  /**< Authenticated once we get BEGIN */
176   unsigned int already_got_mechanisms : 1;       /**< Client already got mech list */
177   unsigned int already_asked_for_initial_response : 1; /**< Already sent a blank challenge to get an initial response */
178   unsigned int buffer_outstanding : 1; /**< Buffer is "checked out" for reading data into */
179 };
180
181 /**
182  * "Subclass" of DBusAuth for client side
183  */
184 typedef struct
185 {
186   DBusAuth base;    /**< Parent class */
187
188   DBusList *mechs_to_try; /**< Mechanisms we got from the server that we're going to try using */
189   
190 } DBusAuthClient;
191
192 /**
193  * "Subclass" of DBusAuth for server side.
194  */
195 typedef struct
196 {
197   DBusAuth base;    /**< Parent class */
198
199   int failures;     /**< Number of times client has been rejected */
200   int max_failures; /**< Number of times we reject before disconnect */
201   
202 } DBusAuthServer;
203
204 static dbus_bool_t process_auth         (DBusAuth         *auth,
205                                          const DBusString *command,
206                                          const DBusString *args);
207 static dbus_bool_t process_cancel       (DBusAuth         *auth,
208                                          const DBusString *command,
209                                          const DBusString *args);
210 static dbus_bool_t process_begin        (DBusAuth         *auth,
211                                          const DBusString *command,
212                                          const DBusString *args);
213 static dbus_bool_t process_data_server  (DBusAuth         *auth,
214                                          const DBusString *command,
215                                          const DBusString *args);
216 static dbus_bool_t process_error_server (DBusAuth         *auth,
217                                          const DBusString *command,
218                                          const DBusString *args);
219 static dbus_bool_t process_rejected     (DBusAuth         *auth,
220                                          const DBusString *command,
221                                          const DBusString *args);
222 static dbus_bool_t process_ok           (DBusAuth         *auth,
223                                          const DBusString *command,
224                                          const DBusString *args);
225 static dbus_bool_t process_data_client  (DBusAuth         *auth,
226                                          const DBusString *command,
227                                          const DBusString *args);
228 static dbus_bool_t process_error_client (DBusAuth         *auth,
229                                          const DBusString *command,
230                                          const DBusString *args);
231
232
233 static dbus_bool_t client_try_next_mechanism (DBusAuth *auth);
234 static dbus_bool_t send_rejected             (DBusAuth *auth);
235
236 static DBusAuthCommandHandler
237 server_handlers[] = {
238   { "AUTH", process_auth },
239   { "CANCEL", process_cancel },
240   { "BEGIN", process_begin },
241   { "DATA", process_data_server },
242   { "ERROR", process_error_server },
243   { NULL, NULL }
244 };
245
246 static DBusAuthCommandHandler
247 client_handlers[] = {
248   { "REJECTED", process_rejected },
249   { "OK", process_ok },
250   { "DATA", process_data_client },
251   { "ERROR", process_error_client },
252   { NULL, NULL }
253 };
254
255 /**
256  * @param auth the auth conversation
257  * @returns #TRUE if the conversation is the server side
258  */
259 #define DBUS_AUTH_IS_SERVER(auth) ((auth)->handlers == server_handlers)
260 /**
261  * @param auth the auth conversation
262  * @returns #TRUE if the conversation is the client side
263  */
264 #define DBUS_AUTH_IS_CLIENT(auth) ((auth)->handlers == client_handlers)
265 /**
266  * @param auth the auth conversation
267  * @returns auth cast to DBusAuthClient
268  */
269 #define DBUS_AUTH_CLIENT(auth)    ((DBusAuthClient*)(auth))
270 /**
271  * @param auth the auth conversation
272  * @returns auth cast to DBusAuthServer
273  */
274 #define DBUS_AUTH_SERVER(auth)    ((DBusAuthServer*)(auth))
275
276 /**
277  * The name of the auth ("client" or "server")
278  * @param auth the auth conversation
279  * @returns a string
280  */
281 #define DBUS_AUTH_NAME(auth)      (DBUS_AUTH_IS_SERVER(auth) ? "server" : "client")
282
283 static DBusAuth*
284 _dbus_auth_new (int size)
285 {
286   DBusAuth *auth;
287   
288   auth = dbus_malloc0 (size);
289   if (auth == NULL)
290     return NULL;
291   
292   auth->refcount = 1;
293
294   _dbus_credentials_clear (&auth->credentials);
295   _dbus_credentials_clear (&auth->authorized_identity);
296   _dbus_credentials_clear (&auth->desired_identity);
297   
298   auth->keyring = NULL;
299   auth->cookie_id = -1;
300   
301   /* note that we don't use the max string length feature,
302    * because you can't use that feature if you're going to
303    * try to recover from out-of-memory (it creates
304    * what looks like unrecoverable inability to alloc
305    * more space in the string). But we do handle
306    * overlong buffers in _dbus_auth_do_work().
307    */
308   
309   if (!_dbus_string_init (&auth->incoming))
310     goto enomem_0;
311
312   if (!_dbus_string_init (&auth->outgoing))
313     goto enomem_1;
314     
315   if (!_dbus_string_init (&auth->identity))
316     goto enomem_2;
317
318   if (!_dbus_string_init (&auth->context))
319     goto enomem_3;
320
321   if (!_dbus_string_init (&auth->challenge))
322     goto enomem_4;
323
324   /* default context if none is specified */
325   if (!_dbus_string_append (&auth->context, "org_freedesktop_general"))
326     goto enomem_5;
327   
328   return auth;
329
330  enomem_5:
331   _dbus_string_free (&auth->challenge);
332  enomem_4:
333   _dbus_string_free (&auth->context);
334  enomem_3:
335   _dbus_string_free (&auth->identity);
336  enomem_2:
337   _dbus_string_free (&auth->outgoing);
338  enomem_1:
339   _dbus_string_free (&auth->incoming);
340  enomem_0:
341   dbus_free (auth);
342   return NULL;
343 }
344
345 static void
346 shutdown_mech (DBusAuth *auth)
347 {
348   /* Cancel any auth */
349   auth->authenticated_pending_begin = FALSE;
350   auth->authenticated = FALSE;
351   auth->already_asked_for_initial_response = FALSE;
352   _dbus_string_set_length (&auth->identity, 0);
353
354   _dbus_credentials_clear (&auth->authorized_identity);
355   _dbus_credentials_clear (&auth->desired_identity);
356   
357   if (auth->mech != NULL)
358     {
359       _dbus_verbose ("%s: Shutting down mechanism %s\n",
360                      DBUS_AUTH_NAME (auth), auth->mech->mechanism);
361       
362       if (DBUS_AUTH_IS_CLIENT (auth))
363         (* auth->mech->client_shutdown_func) (auth);
364       else
365         (* auth->mech->server_shutdown_func) (auth);
366       
367       auth->mech = NULL;
368     }
369 }
370
371 /* Returns TRUE but with an empty string hash if the
372  * cookie_id isn't known. As with all this code
373  * TRUE just means we had enough memory.
374  */
375 static dbus_bool_t
376 sha1_compute_hash (DBusAuth         *auth,
377                    int               cookie_id,
378                    const DBusString *server_challenge,
379                    const DBusString *client_challenge,
380                    DBusString       *hash)
381 {
382   DBusString cookie;
383   DBusString to_hash;
384   dbus_bool_t retval;
385   
386   _dbus_assert (auth->keyring != NULL);
387
388   retval = FALSE;
389   
390   if (!_dbus_string_init (&cookie))
391     return FALSE;
392
393   if (!_dbus_keyring_get_hex_key (auth->keyring, cookie_id,
394                                   &cookie))
395     goto out_0;
396
397   if (_dbus_string_get_length (&cookie) == 0)
398     {
399       retval = TRUE;
400       goto out_0;
401     }
402
403   if (!_dbus_string_init (&to_hash))
404     goto out_0;
405   
406   if (!_dbus_string_copy (server_challenge, 0,
407                           &to_hash, _dbus_string_get_length (&to_hash)))
408     goto out_1;
409
410   if (!_dbus_string_append (&to_hash, ":"))
411     goto out_1;
412   
413   if (!_dbus_string_copy (client_challenge, 0,
414                           &to_hash, _dbus_string_get_length (&to_hash)))
415     goto out_1;
416
417   if (!_dbus_string_append (&to_hash, ":"))
418     goto out_1;
419
420   if (!_dbus_string_copy (&cookie, 0,
421                           &to_hash, _dbus_string_get_length (&to_hash)))
422     goto out_1;
423
424   if (!_dbus_sha_compute (&to_hash, hash))
425     goto out_1;
426   
427   retval = TRUE;
428
429  out_1:
430   _dbus_string_zero (&to_hash);
431   _dbus_string_free (&to_hash);
432  out_0:
433   _dbus_string_zero (&cookie);
434   _dbus_string_free (&cookie);
435   return retval;
436 }
437
438 /** http://www.ietf.org/rfc/rfc2831.txt suggests at least 64 bits of
439  * entropy, we use 128. This is the number of bytes in the random
440  * challenge.
441  */
442 #define N_CHALLENGE_BYTES (128/8)
443
444 static dbus_bool_t
445 sha1_handle_first_client_response (DBusAuth         *auth,
446                                    const DBusString *data)
447 {
448   /* We haven't sent a challenge yet, we're expecting a desired
449    * username from the client.
450    */
451   DBusString tmp;
452   DBusString tmp2;
453   dbus_bool_t retval;
454   int old_len;
455   DBusError error;
456   
457   retval = FALSE;
458
459   _dbus_string_set_length (&auth->challenge, 0);
460   
461   if (_dbus_string_get_length (data) > 0)
462     {
463       if (_dbus_string_get_length (&auth->identity) > 0)
464         {
465           /* Tried to send two auth identities, wtf */
466           _dbus_verbose ("%s: client tried to send auth identity, but we already have one\n",
467                          DBUS_AUTH_NAME (auth));
468           return send_rejected (auth);
469         }
470       else
471         {
472           /* this is our auth identity */
473           if (!_dbus_string_copy (data, 0, &auth->identity, 0))
474             return FALSE;
475         }
476     }
477       
478   if (!_dbus_credentials_from_username (data, &auth->desired_identity))
479     {
480       _dbus_verbose ("%s: Did not get a valid username from client\n",
481                      DBUS_AUTH_NAME (auth));
482       return send_rejected (auth);
483     }
484       
485   if (!_dbus_string_init (&tmp))
486     return FALSE;
487
488   if (!_dbus_string_init (&tmp2))
489     {
490       _dbus_string_free (&tmp);
491       return FALSE;
492     }
493
494   old_len = _dbus_string_get_length (&auth->outgoing);
495   
496   /* we cache the keyring for speed, so here we drop it if it's the
497    * wrong one. FIXME caching the keyring here is useless since we use
498    * a different DBusAuth for every connection.
499    */
500   if (auth->keyring &&
501       !_dbus_keyring_is_for_user (auth->keyring,
502                                   data))
503     {
504       _dbus_keyring_unref (auth->keyring);
505       auth->keyring = NULL;
506     }
507   
508   if (auth->keyring == NULL)
509     {
510       DBusError error;
511
512       dbus_error_init (&error);
513       auth->keyring = _dbus_keyring_new_homedir (data,
514                                                  &auth->context,
515                                                  &error);
516
517       if (auth->keyring == NULL)
518         {
519           if (dbus_error_has_name (&error,
520                                    DBUS_ERROR_NO_MEMORY))
521             {
522               dbus_error_free (&error);
523               goto out;
524             }
525           else
526             {
527               _DBUS_ASSERT_ERROR_IS_SET (&error);
528               _dbus_verbose ("%s: Error loading keyring: %s\n",
529                              DBUS_AUTH_NAME (auth), error.message);
530               if (send_rejected (auth))
531                 retval = TRUE; /* retval is only about mem */
532               dbus_error_free (&error);
533               goto out;
534             }
535         }
536       else
537         {
538           _dbus_assert (!dbus_error_is_set (&error));
539         }
540     }
541
542   _dbus_assert (auth->keyring != NULL);
543
544   dbus_error_init (&error);
545   auth->cookie_id = _dbus_keyring_get_best_key (auth->keyring, &error);
546   if (auth->cookie_id < 0)
547     {
548       _DBUS_ASSERT_ERROR_IS_SET (&error);
549       _dbus_verbose ("%s: Could not get a cookie ID to send to client: %s\n",
550                      DBUS_AUTH_NAME (auth), error.message);
551       if (send_rejected (auth))
552         retval = TRUE;
553       dbus_error_free (&error);
554       goto out;
555     }
556   else
557     {
558       _dbus_assert (!dbus_error_is_set (&error));
559     }
560
561   if (!_dbus_string_copy (&auth->context, 0,
562                           &tmp2, _dbus_string_get_length (&tmp2)))
563     goto out;
564
565   if (!_dbus_string_append (&tmp2, " "))
566     goto out;
567
568   if (!_dbus_string_append_int (&tmp2, auth->cookie_id))
569     goto out;
570
571   if (!_dbus_string_append (&tmp2, " "))
572     goto out;  
573   
574   if (!_dbus_generate_random_bytes (&tmp, N_CHALLENGE_BYTES))
575     goto out;
576
577   _dbus_string_set_length (&auth->challenge, 0);
578   if (!_dbus_string_hex_encode (&tmp, 0, &auth->challenge, 0))
579     goto out;
580   
581   if (!_dbus_string_hex_encode (&tmp, 0, &tmp2,
582                                 _dbus_string_get_length (&tmp2)))
583     goto out;
584
585   if (!_dbus_string_append (&auth->outgoing,
586                             "DATA "))
587     goto out;
588   
589   if (!_dbus_string_base64_encode (&tmp2, 0, &auth->outgoing,
590                                    _dbus_string_get_length (&auth->outgoing)))
591     goto out;
592
593   if (!_dbus_string_append (&auth->outgoing,
594                             "\r\n"))
595     goto out;
596       
597   retval = TRUE;
598   
599  out:
600   _dbus_string_zero (&tmp);
601   _dbus_string_free (&tmp);
602   _dbus_string_zero (&tmp2);
603   _dbus_string_free (&tmp2);
604   if (!retval)
605     _dbus_string_set_length (&auth->outgoing, old_len);
606   return retval;
607 }
608
609 static dbus_bool_t
610 sha1_handle_second_client_response (DBusAuth         *auth,
611                                     const DBusString *data)
612 {
613   /* We are expecting a response which is the hex-encoded client
614    * challenge, space, then SHA-1 hash of the concatenation of our
615    * challenge, ":", client challenge, ":", secret key, all
616    * hex-encoded.
617    */
618   int i;
619   DBusString client_challenge;
620   DBusString client_hash;
621   dbus_bool_t retval;
622   DBusString correct_hash;
623   
624   retval = FALSE;
625   
626   if (!_dbus_string_find_blank (data, 0, &i))
627     {
628       _dbus_verbose ("%s: no space separator in client response\n",
629                      DBUS_AUTH_NAME (auth));
630       return send_rejected (auth);
631     }
632   
633   if (!_dbus_string_init (&client_challenge))
634     goto out_0;
635
636   if (!_dbus_string_init (&client_hash))
637     goto out_1;  
638
639   if (!_dbus_string_copy_len (data, 0, i, &client_challenge,
640                               0))
641     goto out_2;
642
643   _dbus_string_skip_blank (data, i, &i);
644   
645   if (!_dbus_string_copy_len (data, i,
646                               _dbus_string_get_length (data) - i,
647                               &client_hash,
648                               0))
649     goto out_2;
650
651   if (_dbus_string_get_length (&client_challenge) == 0 ||
652       _dbus_string_get_length (&client_hash) == 0)
653     {
654       _dbus_verbose ("%s: zero-length client challenge or hash\n",
655                      DBUS_AUTH_NAME (auth));
656       if (send_rejected (auth))
657         retval = TRUE;
658       goto out_2;
659     }
660
661   if (!_dbus_string_init (&correct_hash))
662     goto out_2;
663
664   if (!sha1_compute_hash (auth, auth->cookie_id,
665                           &auth->challenge, 
666                           &client_challenge,
667                           &correct_hash))
668     goto out_3;
669
670   /* if cookie_id was invalid, then we get an empty hash */
671   if (_dbus_string_get_length (&correct_hash) == 0)
672     {
673       if (send_rejected (auth))
674         retval = TRUE;
675       goto out_3;
676     }
677   
678   if (!_dbus_string_equal (&client_hash, &correct_hash))
679     {
680       if (send_rejected (auth))
681         retval = TRUE;
682       goto out_3;
683     }
684       
685   if (!_dbus_string_append (&auth->outgoing,
686                             "OK\r\n"))
687     goto out_3;
688
689   _dbus_verbose ("%s: authenticated client with UID "DBUS_UID_FORMAT" using DBUS_COOKIE_SHA1\n",
690                  DBUS_AUTH_NAME (auth), auth->desired_identity.uid);
691   
692   auth->authorized_identity = auth->desired_identity;
693   auth->authenticated_pending_begin = TRUE;
694   retval = TRUE;
695   
696  out_3:
697   _dbus_string_zero (&correct_hash);
698   _dbus_string_free (&correct_hash);
699  out_2:
700   _dbus_string_zero (&client_hash);
701   _dbus_string_free (&client_hash);
702  out_1:
703   _dbus_string_free (&client_challenge);
704  out_0:
705   return retval;
706 }
707
708 static dbus_bool_t
709 handle_server_data_cookie_sha1_mech (DBusAuth         *auth,
710                                      const DBusString *data)
711 {
712   if (auth->cookie_id < 0)
713     return sha1_handle_first_client_response (auth, data);
714   else
715     return sha1_handle_second_client_response (auth, data);
716 }
717
718 static void
719 handle_server_shutdown_cookie_sha1_mech (DBusAuth *auth)
720 {
721   auth->cookie_id = -1;  
722   _dbus_string_set_length (&auth->challenge, 0);
723 }
724
725 static dbus_bool_t
726 handle_client_initial_response_cookie_sha1_mech (DBusAuth   *auth,
727                                                  DBusString *response)
728 {
729   const DBusString *username;
730   dbus_bool_t retval;
731
732   retval = FALSE;
733
734   if (!_dbus_username_from_current_process (&username))
735     goto out_0;
736
737   if (!_dbus_string_base64_encode (username, 0,
738                                    response,
739                                    _dbus_string_get_length (response)))
740     goto out_0;
741
742   retval = TRUE;
743   
744  out_0:
745   return retval;
746 }
747
748 static dbus_bool_t
749 handle_client_data_cookie_sha1_mech (DBusAuth         *auth,
750                                      const DBusString *data)
751 {
752   /* The data we get from the server should be the cookie context
753    * name, the cookie ID, and the server challenge, separated by
754    * spaces. We send back our challenge string and the correct hash.
755    */
756   dbus_bool_t retval;
757   DBusString context;
758   DBusString cookie_id_str;
759   DBusString server_challenge;
760   DBusString client_challenge;
761   DBusString correct_hash;
762   DBusString tmp;
763   int i, j;
764   long val;
765   int old_len;
766   
767   retval = FALSE;                 
768   
769   if (!_dbus_string_find_blank (data, 0, &i))
770     {
771       if (_dbus_string_append (&auth->outgoing,
772                                "ERROR \"Server did not send context/ID/challenge properly\"\r\n"))
773         retval = TRUE;
774       goto out_0;
775     }
776
777   if (!_dbus_string_init (&context))
778     goto out_0;
779
780   if (!_dbus_string_copy_len (data, 0, i,
781                               &context, 0))
782     goto out_1;
783   
784   _dbus_string_skip_blank (data, i, &i);
785   if (!_dbus_string_find_blank (data, i, &j))
786     {
787       if (_dbus_string_append (&auth->outgoing,
788                                "ERROR \"Server did not send context/ID/challenge properly\"\r\n"))
789         retval = TRUE;
790       goto out_1;
791     }
792
793   if (!_dbus_string_init (&cookie_id_str))
794     goto out_1;
795   
796   if (!_dbus_string_copy_len (data, i, j - i,
797                               &cookie_id_str, 0))
798     goto out_2;  
799
800   if (!_dbus_string_init (&server_challenge))
801     goto out_2;
802
803   i = j;
804   _dbus_string_skip_blank (data, i, &i);
805   j = _dbus_string_get_length (data);
806
807   if (!_dbus_string_copy_len (data, i, j - i,
808                               &server_challenge, 0))
809     goto out_3;
810
811   if (!_dbus_keyring_validate_context (&context))
812     {
813       if (_dbus_string_append (&auth->outgoing,
814                                "ERROR \"Server sent invalid cookie context\"\r\n"))
815         retval = TRUE;
816       goto out_3;
817     }
818
819   if (!_dbus_string_parse_int (&cookie_id_str, 0, &val, NULL))
820     {
821       if (_dbus_string_append (&auth->outgoing,
822                                "ERROR \"Could not parse cookie ID as an integer\"\r\n"))
823         retval = TRUE;
824       goto out_3;
825     }
826
827   if (_dbus_string_get_length (&server_challenge) == 0)
828     {
829       if (_dbus_string_append (&auth->outgoing,
830                                "ERROR \"Empty server challenge string\"\r\n"))
831         retval = TRUE;
832       goto out_3;
833     }
834
835   if (auth->keyring == NULL)
836     {
837       DBusError error;
838
839       dbus_error_init (&error);
840       auth->keyring = _dbus_keyring_new_homedir (NULL,
841                                                  &context,
842                                                  &error);
843
844       if (auth->keyring == NULL)
845         {
846           if (dbus_error_has_name (&error,
847                                    DBUS_ERROR_NO_MEMORY))
848             {
849               dbus_error_free (&error);
850               goto out_3;
851             }
852           else
853             {
854               _DBUS_ASSERT_ERROR_IS_SET (&error);
855
856               _dbus_verbose ("%s: Error loading keyring: %s\n",
857                              DBUS_AUTH_NAME (auth), error.message);
858               
859               if (_dbus_string_append (&auth->outgoing,
860                                        "ERROR \"Could not load cookie file\"\r\n"))
861                 retval = TRUE; /* retval is only about mem */
862               
863               dbus_error_free (&error);
864               goto out_3;
865             }
866         }
867       else
868         {
869           _dbus_assert (!dbus_error_is_set (&error));
870         }
871     }
872   
873   _dbus_assert (auth->keyring != NULL);
874   
875   if (!_dbus_string_init (&tmp))
876     goto out_3;
877   
878   if (!_dbus_generate_random_bytes (&tmp, N_CHALLENGE_BYTES))
879     goto out_4;
880
881   if (!_dbus_string_init (&client_challenge))
882     goto out_4;
883
884   if (!_dbus_string_hex_encode (&tmp, 0, &client_challenge, 0))
885     goto out_5;
886
887   if (!_dbus_string_init (&correct_hash))
888     goto out_5;
889   
890   if (!sha1_compute_hash (auth, val,
891                           &server_challenge,
892                           &client_challenge,
893                           &correct_hash))
894     goto out_6;
895
896   if (_dbus_string_get_length (&correct_hash) == 0)
897     {
898       /* couldn't find the cookie ID or something */
899       if (_dbus_string_append (&auth->outgoing,
900                                "ERROR \"Don't have the requested cookie ID\"\r\n"))
901         retval = TRUE;
902       goto out_6;
903     }
904   
905   _dbus_string_set_length (&tmp, 0);
906   
907   if (!_dbus_string_copy (&client_challenge, 0, &tmp,
908                           _dbus_string_get_length (&tmp)))
909     goto out_6;
910
911   if (!_dbus_string_append (&tmp, " "))
912     goto out_6;
913
914   if (!_dbus_string_copy (&correct_hash, 0, &tmp,
915                           _dbus_string_get_length (&tmp)))
916     goto out_6;
917
918   old_len = _dbus_string_get_length (&auth->outgoing);
919   if (!_dbus_string_append (&auth->outgoing, "DATA "))
920     goto out_6;
921
922   if (!_dbus_string_base64_encode (&tmp, 0,
923                                    &auth->outgoing,
924                                    _dbus_string_get_length (&auth->outgoing)))
925     {
926       _dbus_string_set_length (&auth->outgoing, old_len);
927       goto out_6;
928     }
929
930   if (!_dbus_string_append (&auth->outgoing, "\r\n"))
931     {
932       _dbus_string_set_length (&auth->outgoing, old_len);
933       goto out_6;
934     }
935   
936   retval = TRUE;
937
938  out_6:
939   _dbus_string_zero (&correct_hash);
940   _dbus_string_free (&correct_hash);
941  out_5:
942   _dbus_string_free (&client_challenge);
943  out_4:
944   _dbus_string_zero (&tmp);
945   _dbus_string_free (&tmp);
946  out_3:
947   _dbus_string_free (&server_challenge);
948  out_2:
949   _dbus_string_free (&cookie_id_str);
950  out_1:
951   _dbus_string_free (&context);
952  out_0:
953   return retval;
954 }
955
956 static void
957 handle_client_shutdown_cookie_sha1_mech (DBusAuth *auth)
958 {
959   auth->cookie_id = -1;  
960   _dbus_string_set_length (&auth->challenge, 0);
961 }
962
963 static dbus_bool_t
964 handle_server_data_external_mech (DBusAuth         *auth,
965                                   const DBusString *data)
966 {
967   if (auth->credentials.uid == DBUS_UID_UNSET)
968     {
969       _dbus_verbose ("%s: no credentials, mechanism EXTERNAL can't authenticate\n",
970                      DBUS_AUTH_NAME (auth));
971       return send_rejected (auth);
972     }
973   
974   if (_dbus_string_get_length (data) > 0)
975     {
976       if (_dbus_string_get_length (&auth->identity) > 0)
977         {
978           /* Tried to send two auth identities, wtf */
979           _dbus_verbose ("%s: client tried to send auth identity, but we already have one\n",
980                          DBUS_AUTH_NAME (auth));
981           return send_rejected (auth);
982         }
983       else
984         {
985           /* this is our auth identity */
986           if (!_dbus_string_copy (data, 0, &auth->identity, 0))
987             return FALSE;
988         }
989     }
990
991   /* Poke client for an auth identity, if none given */
992   if (_dbus_string_get_length (&auth->identity) == 0 &&
993       !auth->already_asked_for_initial_response)
994     {
995       if (_dbus_string_append (&auth->outgoing,
996                                "DATA\r\n"))
997         {
998           _dbus_verbose ("%s: sending empty challenge asking client for auth identity\n",
999                          DBUS_AUTH_NAME (auth));
1000           auth->already_asked_for_initial_response = TRUE;
1001           return TRUE;
1002         }
1003       else
1004         return FALSE;
1005     }
1006
1007   _dbus_credentials_clear (&auth->desired_identity);
1008   
1009   /* If auth->identity is still empty here, then client
1010    * responded with an empty string after we poked it for
1011    * an initial response. This means to try to auth the
1012    * identity provided in the credentials.
1013    */
1014   if (_dbus_string_get_length (&auth->identity) == 0)
1015     {
1016       auth->desired_identity.uid = auth->credentials.uid;
1017     }
1018   else
1019     {
1020       if (!_dbus_uid_from_string (&auth->identity,
1021                                   &auth->desired_identity.uid))
1022         {
1023           _dbus_verbose ("%s: could not get credentials from uid string\n",
1024                          DBUS_AUTH_NAME (auth));
1025           return send_rejected (auth);
1026         }
1027     }
1028
1029   if (auth->desired_identity.uid == DBUS_UID_UNSET)
1030     {
1031       _dbus_verbose ("%s: desired user %s is no good\n",
1032                      DBUS_AUTH_NAME (auth),
1033                      _dbus_string_get_const_data (&auth->identity));
1034       return send_rejected (auth);
1035     }
1036   
1037   if (_dbus_credentials_match (&auth->desired_identity,
1038                                &auth->credentials))
1039     {
1040       /* client has authenticated */      
1041       if (!_dbus_string_append (&auth->outgoing,
1042                                 "OK\r\n"))
1043         return FALSE;
1044
1045       _dbus_verbose ("%s: authenticated client with UID "DBUS_UID_FORMAT
1046                      " matching socket credentials UID "DBUS_UID_FORMAT"\n",
1047                      DBUS_AUTH_NAME (auth),
1048                      auth->desired_identity.uid,
1049                      auth->credentials.uid);
1050       
1051       auth->authorized_identity.uid = auth->desired_identity.uid;
1052       
1053       auth->authenticated_pending_begin = TRUE;
1054       
1055       return TRUE;
1056     }
1057   else
1058     {
1059       _dbus_verbose ("%s: credentials uid="DBUS_UID_FORMAT
1060                      " gid="DBUS_GID_FORMAT
1061                      " do not allow uid="DBUS_UID_FORMAT
1062                      " gid="DBUS_GID_FORMAT"\n",
1063                      DBUS_AUTH_NAME (auth),
1064                      auth->credentials.uid, auth->credentials.gid,
1065                      auth->desired_identity.uid, auth->desired_identity.gid);
1066       return send_rejected (auth);
1067     }
1068 }
1069
1070 static void
1071 handle_server_shutdown_external_mech (DBusAuth *auth)
1072 {
1073
1074 }
1075
1076 static dbus_bool_t
1077 handle_client_initial_response_external_mech (DBusAuth         *auth,
1078                                               DBusString       *response)
1079 {
1080   /* We always append our UID as an initial response, so the server
1081    * doesn't have to send back an empty challenge to check whether we
1082    * want to specify an identity. i.e. this avoids a round trip that
1083    * the spec for the EXTERNAL mechanism otherwise requires.
1084    */
1085   DBusString plaintext;
1086
1087   if (!_dbus_string_init (&plaintext))
1088     return FALSE;
1089   
1090   if (!_dbus_string_append_uint (&plaintext,
1091                                  _dbus_getuid ()))
1092     goto failed;
1093
1094   if (!_dbus_string_base64_encode (&plaintext, 0,
1095                                    response,
1096                                    _dbus_string_get_length (response)))
1097     goto failed;
1098
1099   _dbus_string_free (&plaintext);
1100   
1101   return TRUE;
1102
1103  failed:
1104   _dbus_string_free (&plaintext);
1105   return FALSE;  
1106 }
1107
1108 static dbus_bool_t
1109 handle_client_data_external_mech (DBusAuth         *auth,
1110                                   const DBusString *data)
1111 {
1112   
1113   return TRUE;
1114 }
1115
1116 static void
1117 handle_client_shutdown_external_mech (DBusAuth *auth)
1118 {
1119
1120 }
1121
1122 /* Put mechanisms here in order of preference.
1123  * What I eventually want to have is:
1124  *
1125  *  - a mechanism that checks UNIX domain socket credentials
1126  *  - a simple magic cookie mechanism like X11 or ICE
1127  *  - mechanisms that chain to Cyrus SASL, so we can use anything it
1128  *    offers such as Kerberos, X509, whatever.
1129  * 
1130  */
1131 static const DBusAuthMechanismHandler
1132 all_mechanisms[] = {
1133   { "EXTERNAL",
1134     handle_server_data_external_mech,
1135     NULL, NULL,
1136     handle_server_shutdown_external_mech,
1137     handle_client_initial_response_external_mech,
1138     handle_client_data_external_mech,
1139     NULL, NULL,
1140     handle_client_shutdown_external_mech },
1141   { "DBUS_COOKIE_SHA1",
1142     handle_server_data_cookie_sha1_mech,
1143     NULL, NULL,
1144     handle_server_shutdown_cookie_sha1_mech,
1145     handle_client_initial_response_cookie_sha1_mech,
1146     handle_client_data_cookie_sha1_mech,
1147     NULL, NULL,
1148     handle_client_shutdown_cookie_sha1_mech },
1149   { NULL, NULL }
1150 };
1151
1152 static const DBusAuthMechanismHandler*
1153 find_mech (const DBusString  *name,
1154            char             **allowed_mechs)
1155 {
1156   int i;
1157   
1158   if (allowed_mechs != NULL &&
1159       !_dbus_string_array_contains ((const char**) allowed_mechs,
1160                                     _dbus_string_get_const_data (name)))
1161     return NULL;
1162   
1163   i = 0;
1164   while (all_mechanisms[i].mechanism != NULL)
1165     {      
1166       if (_dbus_string_equal_c_str (name,
1167                                     all_mechanisms[i].mechanism))
1168
1169         return &all_mechanisms[i];
1170       
1171       ++i;
1172     }
1173   
1174   return NULL;
1175 }
1176
1177 static dbus_bool_t
1178 send_rejected (DBusAuth *auth)
1179 {
1180   DBusString command;
1181   DBusAuthServer *server_auth;
1182   int i;
1183   
1184   if (!_dbus_string_init (&command))
1185     return FALSE;
1186   
1187   if (!_dbus_string_append (&command,
1188                             "REJECTED"))
1189     goto nomem;
1190
1191   i = 0;
1192   while (all_mechanisms[i].mechanism != NULL)
1193     {
1194       if (!_dbus_string_append (&command,
1195                                 " "))
1196         goto nomem;
1197
1198       if (!_dbus_string_append (&command,
1199                                 all_mechanisms[i].mechanism))
1200         goto nomem;
1201       
1202       ++i;
1203     }
1204   
1205   if (!_dbus_string_append (&command, "\r\n"))
1206     goto nomem;
1207
1208   if (!_dbus_string_copy (&command, 0, &auth->outgoing,
1209                           _dbus_string_get_length (&auth->outgoing)))
1210     goto nomem;
1211
1212   shutdown_mech (auth);
1213   
1214   _dbus_assert (DBUS_AUTH_IS_SERVER (auth));
1215   server_auth = DBUS_AUTH_SERVER (auth);
1216   server_auth->failures += 1;
1217
1218   _dbus_string_free (&command);
1219   
1220   return TRUE;
1221
1222  nomem:
1223   _dbus_string_free (&command);
1224   return FALSE;
1225 }
1226
1227 static dbus_bool_t
1228 process_auth (DBusAuth         *auth,
1229               const DBusString *command,
1230               const DBusString *args)
1231 {
1232   if (auth->mech)
1233     {
1234       /* We are already using a mechanism, client is on crack */
1235       if (!_dbus_string_append (&auth->outgoing,
1236                                 "ERROR \"Sent AUTH while another AUTH in progress\"\r\n"))
1237         return FALSE;
1238
1239       return TRUE;
1240     }
1241   else if (_dbus_string_get_length (args) == 0)
1242     {
1243       /* No args to the auth, send mechanisms */
1244       if (!send_rejected (auth))
1245         return FALSE;
1246
1247       return TRUE;
1248     }
1249   else
1250     {
1251       int i;
1252       DBusString mech;
1253       DBusString base64_response;
1254       DBusString decoded_response;
1255       
1256       _dbus_string_find_blank (args, 0, &i);
1257
1258       if (!_dbus_string_init (&mech))
1259         return FALSE;
1260
1261       if (!_dbus_string_init (&base64_response))
1262         {
1263           _dbus_string_free (&mech);
1264           return FALSE;
1265         }
1266       
1267       if (!_dbus_string_init (&decoded_response))
1268         {
1269           _dbus_string_free (&mech);
1270           _dbus_string_free (&base64_response);
1271           return FALSE;
1272         }
1273
1274       if (!_dbus_string_copy_len (args, 0, i, &mech, 0))
1275         goto failed;
1276
1277       if (!_dbus_string_copy (args, i, &base64_response, 0))
1278         goto failed;
1279
1280       if (!_dbus_string_base64_decode (&base64_response, 0,
1281                                        &decoded_response, 0))
1282         goto failed;
1283       
1284       auth->mech = find_mech (&mech, auth->allowed_mechs);
1285       if (auth->mech != NULL)
1286         {
1287           _dbus_verbose ("%s: Trying mechanism %s with initial response of %d bytes\n",
1288                          DBUS_AUTH_NAME (auth),
1289                          auth->mech->mechanism,
1290                          _dbus_string_get_length (&decoded_response));
1291           
1292           if (!(* auth->mech->server_data_func) (auth,
1293                                                  &decoded_response))
1294             goto failed;
1295         }
1296       else
1297         {
1298           /* Unsupported mechanism */
1299           if (!send_rejected (auth))
1300             goto failed;
1301         }
1302
1303       _dbus_string_free (&mech);      
1304       _dbus_string_free (&base64_response);
1305       _dbus_string_free (&decoded_response);
1306
1307       return TRUE;
1308       
1309     failed:
1310       auth->mech = NULL;
1311       _dbus_string_free (&mech);
1312       _dbus_string_free (&base64_response);
1313       _dbus_string_free (&decoded_response);
1314       return FALSE;
1315     }
1316 }
1317
1318 static dbus_bool_t
1319 process_cancel (DBusAuth         *auth,
1320                 const DBusString *command,
1321                 const DBusString *args)
1322 {
1323   if (!send_rejected (auth))
1324     return FALSE;
1325   
1326   return TRUE;
1327 }
1328
1329 static dbus_bool_t
1330 process_begin (DBusAuth         *auth,
1331                const DBusString *command,
1332                const DBusString *args)
1333 {
1334   if (auth->authenticated_pending_begin)
1335     auth->authenticated = TRUE;
1336   else
1337     {
1338       auth->need_disconnect = TRUE; /* client trying to send data before auth,
1339                                      * kick it
1340                                      */
1341       shutdown_mech (auth);
1342     }
1343   
1344   return TRUE;
1345 }
1346
1347 static dbus_bool_t
1348 process_data_server (DBusAuth         *auth,
1349                      const DBusString *command,
1350                      const DBusString *args)
1351 {
1352   if (auth->mech != NULL)
1353     {
1354       DBusString decoded;
1355
1356       if (!_dbus_string_init (&decoded))
1357         return FALSE;
1358
1359       if (!_dbus_string_base64_decode (args, 0, &decoded, 0))
1360         {
1361           _dbus_string_free (&decoded);
1362           return FALSE;
1363         }
1364
1365 #ifdef DBUS_ENABLE_VERBOSE_MODE
1366       if (_dbus_string_validate_ascii (&decoded, 0,
1367                                        _dbus_string_get_length (&decoded)))
1368         _dbus_verbose ("%s: data: '%s'\n",
1369                        DBUS_AUTH_NAME (auth),
1370                        _dbus_string_get_const_data (&decoded));
1371 #endif
1372       
1373       if (!(* auth->mech->server_data_func) (auth, &decoded))
1374         {
1375           _dbus_string_free (&decoded);
1376           return FALSE;
1377         }
1378
1379       _dbus_string_free (&decoded);
1380     }
1381   else
1382     {
1383       if (!_dbus_string_append (&auth->outgoing,
1384                                 "ERROR \"Not currently in an auth conversation\"\r\n"))
1385         return FALSE;
1386     }
1387   
1388   return TRUE;
1389 }
1390
1391 static dbus_bool_t
1392 process_error_server (DBusAuth         *auth,
1393                       const DBusString *command,
1394                       const DBusString *args)
1395 {
1396   /* Server got error from client, reject the auth,
1397    * as we don't have anything more intelligent to do.
1398    */
1399   if (!send_rejected (auth))
1400     return FALSE;
1401   
1402   return TRUE;
1403 }
1404
1405 /* return FALSE if no memory, TRUE if all OK */
1406 static dbus_bool_t
1407 get_word (const DBusString *str,
1408           int              *start,
1409           DBusString       *word)
1410 {
1411   int i;
1412
1413   _dbus_string_skip_blank (str, *start, start);
1414   _dbus_string_find_blank (str, *start, &i);
1415   
1416   if (i > *start)
1417     {
1418       if (!_dbus_string_copy_len (str, *start, i - *start, word, 0))
1419         return FALSE;
1420       
1421       *start = i;
1422     }
1423
1424   return TRUE;
1425 }
1426
1427 static dbus_bool_t
1428 record_mechanisms (DBusAuth         *auth,
1429                    const DBusString *command,
1430                    const DBusString *args)
1431 {
1432   int next;
1433   int len;
1434
1435   if (auth->already_got_mechanisms)
1436     return TRUE;
1437   
1438   len = _dbus_string_get_length (args);
1439   
1440   next = 0;
1441   while (next < len)
1442     {
1443       DBusString m;
1444       const DBusAuthMechanismHandler *mech;
1445       
1446       if (!_dbus_string_init (&m))
1447         goto nomem;
1448       
1449       if (!get_word (args, &next, &m))
1450         {
1451           _dbus_string_free (&m);
1452           goto nomem;
1453         }
1454
1455       mech = find_mech (&m, auth->allowed_mechs);
1456
1457       if (mech != NULL)
1458         {
1459           /* FIXME right now we try mechanisms in the order
1460            * the server lists them; should we do them in
1461            * some more deterministic order?
1462            *
1463            * Probably in all_mechanisms order, our order of
1464            * preference. Of course when the server is us,
1465            * it lists things in that order anyhow.
1466            */
1467
1468           _dbus_verbose ("%s: Adding mechanism %s to list we will try\n",
1469                          DBUS_AUTH_NAME (auth), mech->mechanism);
1470           
1471           if (!_dbus_list_append (& DBUS_AUTH_CLIENT (auth)->mechs_to_try,
1472                                   (void*) mech))
1473             {
1474               _dbus_string_free (&m);
1475               goto nomem;
1476             }
1477         }
1478       else
1479         {
1480           _dbus_verbose ("%s: Server offered mechanism \"%s\" that we don't know how to use\n",
1481                          DBUS_AUTH_NAME (auth),
1482                          _dbus_string_get_const_data (&m));
1483         }
1484
1485       _dbus_string_free (&m);
1486     }
1487   
1488   auth->already_got_mechanisms = TRUE;
1489   
1490   return TRUE;
1491
1492  nomem:
1493   _dbus_list_clear (& DBUS_AUTH_CLIENT (auth)->mechs_to_try);
1494   
1495   return FALSE;
1496 }
1497
1498 static dbus_bool_t
1499 client_try_next_mechanism (DBusAuth *auth)
1500 {
1501   const DBusAuthMechanismHandler *mech;
1502   DBusString auth_command;
1503   DBusAuthClient *client;
1504
1505   client = DBUS_AUTH_CLIENT (auth);
1506   
1507   /* Pop any mechs not in the list of allowed mechanisms */
1508   mech = NULL;
1509   while (client->mechs_to_try != NULL)
1510     {
1511       mech = client->mechs_to_try->data;
1512
1513       if (auth->allowed_mechs != NULL && 
1514           !_dbus_string_array_contains ((const char**) auth->allowed_mechs,
1515                                         mech->mechanism))
1516         {
1517           /* don't try this one after all */
1518           _dbus_verbose ("%s: Mechanism %s isn't in the list of allowed mechanisms\n",
1519                          DBUS_AUTH_NAME (auth), mech->mechanism);
1520           mech = NULL;
1521           _dbus_list_pop_first (& client->mechs_to_try);
1522         }
1523       else
1524         break; /* we'll try this one */
1525     }
1526   
1527   if (mech == NULL)
1528     return FALSE;
1529
1530   if (!_dbus_string_init (&auth_command))
1531     return FALSE;
1532       
1533   if (!_dbus_string_append (&auth_command,
1534                             "AUTH "))
1535     {
1536       _dbus_string_free (&auth_command);
1537       return FALSE;
1538     }  
1539   
1540   if (!_dbus_string_append (&auth_command,
1541                             mech->mechanism))
1542     {
1543       _dbus_string_free (&auth_command);
1544       return FALSE;
1545     }
1546
1547   if (mech->client_initial_response_func != NULL)
1548     {
1549       if (!_dbus_string_append (&auth_command, " "))
1550         {
1551           _dbus_string_free (&auth_command);
1552           return FALSE;
1553         }
1554       
1555       if (!(* mech->client_initial_response_func) (auth, &auth_command))
1556         {
1557           _dbus_string_free (&auth_command);
1558           return FALSE;
1559         }
1560     }
1561   
1562   if (!_dbus_string_append (&auth_command,
1563                             "\r\n"))
1564     {
1565       _dbus_string_free (&auth_command);
1566       return FALSE;
1567     }
1568
1569   if (!_dbus_string_copy (&auth_command, 0,
1570                           &auth->outgoing,
1571                           _dbus_string_get_length (&auth->outgoing)))
1572     {
1573       _dbus_string_free (&auth_command);
1574       return FALSE;
1575     }
1576
1577   auth->mech = mech;      
1578   _dbus_list_pop_first (& DBUS_AUTH_CLIENT (auth)->mechs_to_try);
1579
1580   _dbus_verbose ("%s: Trying mechanism %s\n",
1581                  DBUS_AUTH_NAME (auth),
1582                  auth->mech->mechanism);
1583
1584   _dbus_string_free (&auth_command);
1585   
1586   return TRUE;
1587 }
1588
1589 static dbus_bool_t
1590 process_rejected (DBusAuth         *auth,
1591                   const DBusString *command,
1592                   const DBusString *args)
1593 {
1594   shutdown_mech (auth);
1595   
1596   if (!auth->already_got_mechanisms)
1597     {
1598       if (!record_mechanisms (auth, command, args))
1599         return FALSE;
1600     }
1601   
1602   if (DBUS_AUTH_CLIENT (auth)->mechs_to_try != NULL)
1603     {
1604       if (!client_try_next_mechanism (auth))
1605         return FALSE;
1606     }
1607   else
1608     {
1609       /* Give up */
1610       auth->need_disconnect = TRUE;
1611     }
1612   
1613   return TRUE;
1614 }
1615
1616 static dbus_bool_t
1617 process_ok (DBusAuth         *auth,
1618             const DBusString *command,
1619             const DBusString *args)
1620 {
1621   if (!_dbus_string_append (&auth->outgoing,
1622                             "BEGIN\r\n"))
1623     return FALSE;
1624   
1625   auth->authenticated_pending_output = TRUE;
1626   
1627   return TRUE;
1628 }
1629
1630 static dbus_bool_t
1631 process_data_client (DBusAuth         *auth,
1632                      const DBusString *command,
1633                      const DBusString *args)
1634 {
1635   if (auth->mech != NULL)
1636     {
1637       DBusString decoded;
1638
1639       if (!_dbus_string_init (&decoded))
1640         return FALSE;
1641
1642       if (!_dbus_string_base64_decode (args, 0, &decoded, 0))
1643         {
1644           _dbus_string_free (&decoded);
1645           return FALSE;
1646         }
1647
1648 #ifdef DBUS_ENABLE_VERBOSE_MODE
1649       if (_dbus_string_validate_ascii (&decoded, 0,
1650                                        _dbus_string_get_length (&decoded)))
1651         {
1652           _dbus_verbose ("%s: data: '%s'\n",
1653                          DBUS_AUTH_NAME (auth),
1654                          _dbus_string_get_const_data (&decoded));
1655         }
1656 #endif
1657       
1658       if (!(* auth->mech->client_data_func) (auth, &decoded))
1659         {
1660           _dbus_string_free (&decoded);
1661           return FALSE;
1662         }
1663
1664       _dbus_string_free (&decoded);
1665     }
1666   else
1667     {
1668       if (!_dbus_string_append (&auth->outgoing,
1669                                 "ERROR \"Got DATA when not in an auth exchange\"\r\n"))
1670         return FALSE;
1671     }
1672   
1673   return TRUE;
1674 }
1675
1676 static dbus_bool_t
1677 process_error_client (DBusAuth         *auth,
1678                       const DBusString *command,
1679                       const DBusString *args)
1680 {
1681   /* Cancel current mechanism, as we don't have anything
1682    * more clever to do.
1683    */
1684   if (!_dbus_string_append (&auth->outgoing,
1685                             "CANCEL\r\n"))
1686     return FALSE;
1687   
1688   return TRUE;
1689 }
1690
1691 static dbus_bool_t
1692 process_unknown (DBusAuth         *auth,
1693                  const DBusString *command,
1694                  const DBusString *args)
1695 {
1696   if (!_dbus_string_append (&auth->outgoing,
1697                             "ERROR \"Unknown command\"\r\n"))
1698     return FALSE;
1699
1700   return TRUE;
1701 }
1702
1703 /* returns whether to call it again right away */
1704 static dbus_bool_t
1705 process_command (DBusAuth *auth)
1706 {
1707   DBusString command;
1708   DBusString args;
1709   int eol;
1710   int i, j;
1711   dbus_bool_t retval;
1712
1713   /* _dbus_verbose ("%s:   trying process_command()\n"); */
1714   
1715   retval = FALSE;
1716   
1717   eol = 0;
1718   if (!_dbus_string_find (&auth->incoming, 0, "\r\n", &eol))
1719     return FALSE;
1720   
1721   if (!_dbus_string_init (&command))
1722     {
1723       auth->needed_memory = TRUE;
1724       return FALSE;
1725     }
1726
1727   if (!_dbus_string_init (&args))
1728     {
1729       _dbus_string_free (&command);
1730       auth->needed_memory = TRUE;
1731       return FALSE;
1732     }
1733   
1734   if (eol > _DBUS_ONE_MEGABYTE)
1735     {
1736       /* This is a giant line, someone is trying to hose us. */
1737       if (!_dbus_string_append (&auth->outgoing, "ERROR \"Command too long\"\r\n"))
1738         goto out;
1739       else
1740         goto next_command;
1741     }
1742
1743   if (!_dbus_string_copy_len (&auth->incoming, 0, eol, &command, 0))
1744     goto out;
1745
1746   if (!_dbus_string_validate_ascii (&command, 0,
1747                                     _dbus_string_get_length (&command)))
1748     {
1749       _dbus_verbose ("%s: Command contained non-ASCII chars or embedded nul\n",
1750                      DBUS_AUTH_NAME (auth));
1751       if (!_dbus_string_append (&auth->outgoing, "ERROR \"Command contained non-ASCII\"\r\n"))
1752         goto out;
1753       else
1754         goto next_command;
1755     }
1756   
1757   _dbus_verbose ("%s: got command \"%s\"\n",
1758                  DBUS_AUTH_NAME (auth),
1759                  _dbus_string_get_const_data (&command));
1760   
1761   _dbus_string_find_blank (&command, 0, &i);
1762   _dbus_string_skip_blank (&command, i, &j);
1763
1764   if (j > i)
1765     _dbus_string_delete (&command, i, j - i);
1766   
1767   if (!_dbus_string_move (&command, i, &args, 0))
1768     goto out;
1769   
1770   i = 0;
1771   while (auth->handlers[i].command != NULL)
1772     {
1773       if (_dbus_string_equal_c_str (&command,
1774                                     auth->handlers[i].command))
1775         {
1776           _dbus_verbose ("%s: Processing auth command %s\n",
1777                          DBUS_AUTH_NAME (auth),
1778                          auth->handlers[i].command);
1779           
1780           if (!(* auth->handlers[i].func) (auth, &command, &args))
1781             goto out;
1782
1783           break;
1784         }
1785       ++i;
1786     }
1787
1788   if (auth->handlers[i].command == NULL)
1789     {
1790       if (!process_unknown (auth, &command, &args))
1791         goto out;
1792     }
1793
1794  next_command:
1795   
1796   /* We've succeeded in processing the whole command so drop it out
1797    * of the incoming buffer and return TRUE to try another command.
1798    */
1799
1800   _dbus_string_delete (&auth->incoming, 0, eol);
1801   
1802   /* kill the \r\n */
1803   _dbus_string_delete (&auth->incoming, 0, 2);
1804
1805   retval = TRUE;
1806   
1807  out:
1808   _dbus_string_free (&args);
1809   _dbus_string_free (&command);
1810
1811   if (!retval)
1812     auth->needed_memory = TRUE;
1813   else
1814     auth->needed_memory = FALSE;
1815   
1816   return retval;
1817 }
1818
1819
1820 /** @} */
1821
1822 /**
1823  * @addtogroup DBusAuth
1824  * @{
1825  */
1826
1827 /**
1828  * Creates a new auth conversation object for the server side.
1829  * See doc/dbus-sasl-profile.txt for full details on what
1830  * this object does.
1831  *
1832  * @returns the new object or #NULL if no memory
1833  */
1834 DBusAuth*
1835 _dbus_auth_server_new (void)
1836 {
1837   DBusAuth *auth;
1838   DBusAuthServer *server_auth;
1839
1840   auth = _dbus_auth_new (sizeof (DBusAuthServer));
1841   if (auth == NULL)
1842     return NULL;
1843
1844   auth->handlers = server_handlers;
1845
1846   server_auth = DBUS_AUTH_SERVER (auth);
1847
1848   /* perhaps this should be per-mechanism with a lower
1849    * max
1850    */
1851   server_auth->failures = 0;
1852   server_auth->max_failures = 6;
1853   
1854   return auth;
1855 }
1856
1857 /**
1858  * Creates a new auth conversation object for the client side.
1859  * See doc/dbus-sasl-profile.txt for full details on what
1860  * this object does.
1861  *
1862  * @returns the new object or #NULL if no memory
1863  */
1864 DBusAuth*
1865 _dbus_auth_client_new (void)
1866 {
1867   DBusAuth *auth;
1868
1869   auth = _dbus_auth_new (sizeof (DBusAuthClient));
1870   if (auth == NULL)
1871     return NULL;
1872
1873   auth->handlers = client_handlers;
1874
1875   /* Add a default mechanism to try */
1876   if (!_dbus_list_append (& DBUS_AUTH_CLIENT (auth)->mechs_to_try,
1877                           (void*) &all_mechanisms[0]))
1878     {
1879       _dbus_auth_unref (auth);
1880       return NULL;
1881     }
1882
1883   /* Now try the mechanism we just added */
1884   if (!client_try_next_mechanism (auth))
1885     {
1886       _dbus_auth_unref (auth);
1887       return NULL;
1888     }
1889   
1890   return auth;
1891 }
1892
1893 /**
1894  * Increments the refcount of an auth object.
1895  *
1896  * @param auth the auth conversation
1897  */
1898 void
1899 _dbus_auth_ref (DBusAuth *auth)
1900 {
1901   _dbus_assert (auth != NULL);
1902   
1903   auth->refcount += 1;
1904 }
1905
1906 /**
1907  * Decrements the refcount of an auth object.
1908  *
1909  * @param auth the auth conversation
1910  */
1911 void
1912 _dbus_auth_unref (DBusAuth *auth)
1913 {
1914   _dbus_assert (auth != NULL);
1915   _dbus_assert (auth->refcount > 0);
1916
1917   auth->refcount -= 1;
1918   if (auth->refcount == 0)
1919     {
1920       shutdown_mech (auth);
1921
1922       if (DBUS_AUTH_IS_CLIENT (auth))
1923         {
1924           _dbus_list_clear (& DBUS_AUTH_CLIENT (auth)->mechs_to_try);
1925         }
1926
1927       if (auth->keyring)
1928         _dbus_keyring_unref (auth->keyring);
1929
1930       _dbus_string_free (&auth->context);
1931       _dbus_string_free (&auth->challenge);
1932       _dbus_string_free (&auth->identity);
1933       _dbus_string_free (&auth->incoming);
1934       _dbus_string_free (&auth->outgoing);
1935
1936       dbus_free_string_array (auth->allowed_mechs);
1937       
1938       dbus_free (auth);
1939     }
1940 }
1941
1942 /**
1943  * Sets an array of authentication mechanism names
1944  * that we are willing to use.
1945  *
1946  * @param auth the auth conversation
1947  * @param mechanisms #NULL-terminated array of mechanism names
1948  * @returns #FALSE if no memory
1949  */
1950 dbus_bool_t
1951 _dbus_auth_set_mechanisms (DBusAuth    *auth,
1952                            const char **mechanisms)
1953 {
1954   char **copy;
1955
1956   if (mechanisms != NULL)
1957     {
1958       copy = _dbus_dup_string_array (mechanisms);
1959       if (copy == NULL)
1960         return FALSE;
1961     }
1962   else
1963     copy = NULL;
1964   
1965   dbus_free_string_array (auth->allowed_mechs);
1966
1967   auth->allowed_mechs = copy;
1968
1969   return TRUE;
1970 }
1971
1972 /**
1973  * @param auth the auth conversation object
1974  * @returns #TRUE if we're in a final state
1975  */
1976 #define DBUS_AUTH_IN_END_STATE(auth) ((auth)->need_disconnect || (auth)->authenticated)
1977
1978 /**
1979  * Analyzes buffered input and moves the auth conversation forward,
1980  * returning the new state of the auth conversation.
1981  *
1982  * @param auth the auth conversation
1983  * @returns the new state
1984  */
1985 DBusAuthState
1986 _dbus_auth_do_work (DBusAuth *auth)
1987 {
1988   auth->needed_memory = FALSE;
1989
1990   /* Max amount we'll buffer up before deciding someone's on crack */
1991 #define MAX_BUFFER (16 * _DBUS_ONE_KILOBYTE)
1992
1993   do
1994     {
1995       if (DBUS_AUTH_IN_END_STATE (auth))
1996         break;
1997       
1998       if (_dbus_string_get_length (&auth->incoming) > MAX_BUFFER ||
1999           _dbus_string_get_length (&auth->outgoing) > MAX_BUFFER)
2000         {
2001           auth->need_disconnect = TRUE;
2002           _dbus_verbose ("%s: Disconnecting due to excessive data buffered in auth phase\n",
2003                          DBUS_AUTH_NAME (auth));
2004           break;
2005         }
2006
2007       if (auth->mech == NULL &&
2008           auth->already_got_mechanisms &&
2009           DBUS_AUTH_CLIENT (auth)->mechs_to_try == NULL)
2010         {
2011           auth->need_disconnect = TRUE;
2012           _dbus_verbose ("%s: Disconnecting because we are out of mechanisms to try using\n",
2013                          DBUS_AUTH_NAME (auth));
2014           break;
2015         }
2016     }
2017   while (process_command (auth));
2018
2019   if (DBUS_AUTH_IS_SERVER (auth) &&
2020       DBUS_AUTH_SERVER (auth)->failures >=
2021       DBUS_AUTH_SERVER (auth)->max_failures)
2022     auth->need_disconnect = TRUE;
2023
2024   if (auth->need_disconnect)
2025     return DBUS_AUTH_STATE_NEED_DISCONNECT;
2026   else if (auth->authenticated)
2027     {
2028       if (_dbus_string_get_length (&auth->incoming) > 0)
2029         return DBUS_AUTH_STATE_AUTHENTICATED_WITH_UNUSED_BYTES;
2030       else
2031         return DBUS_AUTH_STATE_AUTHENTICATED;
2032     }
2033   else if (auth->needed_memory)
2034     return DBUS_AUTH_STATE_WAITING_FOR_MEMORY;
2035   else if (_dbus_string_get_length (&auth->outgoing) > 0)
2036     return DBUS_AUTH_STATE_HAVE_BYTES_TO_SEND;
2037   else
2038     return DBUS_AUTH_STATE_WAITING_FOR_INPUT;
2039 }
2040
2041 /**
2042  * Gets bytes that need to be sent to the peer we're conversing with.
2043  * After writing some bytes, _dbus_auth_bytes_sent() must be called
2044  * to notify the auth object that they were written.
2045  *
2046  * @param auth the auth conversation
2047  * @param str return location for a ref to the buffer to send
2048  * @returns #FALSE if nothing to send
2049  */
2050 dbus_bool_t
2051 _dbus_auth_get_bytes_to_send (DBusAuth          *auth,
2052                               const DBusString **str)
2053 {
2054   _dbus_assert (auth != NULL);
2055   _dbus_assert (str != NULL);
2056
2057   *str = NULL;
2058   
2059   if (DBUS_AUTH_IN_END_STATE (auth))
2060     return FALSE;
2061
2062   if (_dbus_string_get_length (&auth->outgoing) == 0)
2063     return FALSE;
2064
2065   *str = &auth->outgoing;
2066
2067   return TRUE;
2068 }
2069
2070 /**
2071  * Notifies the auth conversation object that
2072  * the given number of bytes of the outgoing buffer
2073  * have been written out.
2074  *
2075  * @param auth the auth conversation
2076  * @param bytes_sent number of bytes written out
2077  */
2078 void
2079 _dbus_auth_bytes_sent (DBusAuth *auth,
2080                        int       bytes_sent)
2081 {
2082   _dbus_verbose ("%s: Sent %d bytes of: %s\n",
2083                  DBUS_AUTH_NAME (auth),
2084                  bytes_sent,
2085                  _dbus_string_get_const_data (&auth->outgoing));
2086   
2087   _dbus_string_delete (&auth->outgoing,
2088                        0, bytes_sent);
2089   
2090   if (auth->authenticated_pending_output &&
2091       _dbus_string_get_length (&auth->outgoing) == 0)
2092     auth->authenticated = TRUE;
2093 }
2094
2095 /**
2096  * Get a buffer to be used for reading bytes from the peer we're conversing
2097  * with. Bytes should be appended to this buffer.
2098  *
2099  * @param auth the auth conversation
2100  * @param buffer return location for buffer to append bytes to
2101  */
2102 void
2103 _dbus_auth_get_buffer (DBusAuth     *auth,
2104                        DBusString **buffer)
2105 {
2106   _dbus_assert (auth != NULL);
2107   _dbus_assert (!auth->buffer_outstanding);
2108   
2109   *buffer = &auth->incoming;
2110
2111   auth->buffer_outstanding = TRUE;
2112 }
2113
2114 /**
2115  * Returns a buffer with new data read into it.
2116  *
2117  * @param auth the auth conversation
2118  * @param buffer the buffer being returned
2119  * @param bytes_read number of new bytes added
2120  */
2121 void
2122 _dbus_auth_return_buffer (DBusAuth               *auth,
2123                           DBusString             *buffer,
2124                           int                     bytes_read)
2125 {
2126   _dbus_assert (buffer == &auth->incoming);
2127   _dbus_assert (auth->buffer_outstanding);
2128
2129   auth->buffer_outstanding = FALSE;
2130 }
2131
2132 /**
2133  * Returns leftover bytes that were not used as part of the auth
2134  * conversation.  These bytes will be part of the message stream
2135  * instead. This function may not be called until authentication has
2136  * succeeded.
2137  *
2138  * @param auth the auth conversation
2139  * @param str return location for pointer to string of unused bytes
2140  */
2141 void
2142 _dbus_auth_get_unused_bytes (DBusAuth           *auth,
2143                              const DBusString **str)
2144 {
2145   if (!DBUS_AUTH_IN_END_STATE (auth))
2146     return;
2147
2148   *str = &auth->incoming;
2149 }
2150
2151
2152 /**
2153  * Gets rid of unused bytes returned by _dbus_auth_get_unused_bytes()
2154  * after we've gotten them and successfully moved them elsewhere.
2155  *
2156  * @param auth the auth conversation
2157  */
2158 void
2159 _dbus_auth_delete_unused_bytes (DBusAuth *auth)
2160 {
2161   if (!DBUS_AUTH_IN_END_STATE (auth))
2162     return;
2163
2164   _dbus_string_set_length (&auth->incoming, 0);
2165 }
2166
2167 /**
2168  * Called post-authentication, indicates whether we need to encode
2169  * the message stream with _dbus_auth_encode_data() prior to
2170  * sending it to the peer.
2171  *
2172  * @param auth the auth conversation
2173  * @returns #TRUE if we need to encode the stream
2174  */
2175 dbus_bool_t
2176 _dbus_auth_needs_encoding (DBusAuth *auth)
2177 {
2178   if (!auth->authenticated)
2179     return FALSE;
2180   
2181   if (auth->mech != NULL)
2182     {
2183       if (DBUS_AUTH_IS_CLIENT (auth))
2184         return auth->mech->client_encode_func != NULL;
2185       else
2186         return auth->mech->server_encode_func != NULL;
2187     }
2188   else
2189     return FALSE;
2190 }
2191
2192 /**
2193  * Called post-authentication, encodes a block of bytes for sending to
2194  * the peer. If no encoding was negotiated, just copies the bytes
2195  * (you can avoid this by checking _dbus_auth_needs_encoding()).
2196  *
2197  * @param auth the auth conversation
2198  * @param plaintext the plain text data
2199  * @param encoded initialized string to where encoded data is appended
2200  * @returns #TRUE if we had enough memory and successfully encoded
2201  */
2202 dbus_bool_t
2203 _dbus_auth_encode_data (DBusAuth         *auth,
2204                         const DBusString *plaintext,
2205                         DBusString       *encoded)
2206 {
2207   _dbus_assert (plaintext != encoded);
2208   
2209   if (!auth->authenticated)
2210     return FALSE;
2211   
2212   if (_dbus_auth_needs_encoding (auth))
2213     {
2214       if (DBUS_AUTH_IS_CLIENT (auth))
2215         return (* auth->mech->client_encode_func) (auth, plaintext, encoded);
2216       else
2217         return (* auth->mech->server_encode_func) (auth, plaintext, encoded);
2218     }
2219   else
2220     {
2221       return _dbus_string_copy (plaintext, 0, encoded,
2222                                 _dbus_string_get_length (encoded));
2223     }
2224 }
2225
2226 /**
2227  * Called post-authentication, indicates whether we need to decode
2228  * the message stream with _dbus_auth_decode_data() after
2229  * receiving it from the peer.
2230  *
2231  * @param auth the auth conversation
2232  * @returns #TRUE if we need to encode the stream
2233  */
2234 dbus_bool_t
2235 _dbus_auth_needs_decoding (DBusAuth *auth)
2236 {
2237   if (!auth->authenticated)
2238     return FALSE;
2239     
2240   if (auth->mech != NULL)
2241     {
2242       if (DBUS_AUTH_IS_CLIENT (auth))
2243         return auth->mech->client_decode_func != NULL;
2244       else
2245         return auth->mech->server_decode_func != NULL;
2246     }
2247   else
2248     return FALSE;
2249 }
2250
2251
2252 /**
2253  * Called post-authentication, decodes a block of bytes received from
2254  * the peer. If no encoding was negotiated, just copies the bytes (you
2255  * can avoid this by checking _dbus_auth_needs_decoding()).
2256  *
2257  * @todo We need to be able to distinguish "out of memory" error
2258  * from "the data is hosed" error.
2259  *
2260  * @param auth the auth conversation
2261  * @param encoded the encoded data
2262  * @param plaintext initialized string where decoded data is appended
2263  * @returns #TRUE if we had enough memory and successfully decoded
2264  */
2265 dbus_bool_t
2266 _dbus_auth_decode_data (DBusAuth         *auth,
2267                         const DBusString *encoded,
2268                         DBusString       *plaintext)
2269 {
2270   _dbus_assert (plaintext != encoded);
2271   
2272   if (!auth->authenticated)
2273     return FALSE;
2274   
2275   if (_dbus_auth_needs_decoding (auth))
2276     {
2277       if (DBUS_AUTH_IS_CLIENT (auth))
2278         return (* auth->mech->client_decode_func) (auth, encoded, plaintext);
2279       else
2280         return (* auth->mech->server_decode_func) (auth, encoded, plaintext);
2281     }
2282   else
2283     {
2284       return _dbus_string_copy (encoded, 0, plaintext,
2285                                 _dbus_string_get_length (plaintext));
2286     }
2287 }
2288
2289 /**
2290  * Sets credentials received via reliable means from the operating
2291  * system.
2292  *
2293  * @param auth the auth conversation
2294  * @param credentials the credentials received
2295  */
2296 void
2297 _dbus_auth_set_credentials (DBusAuth               *auth,
2298                             const DBusCredentials  *credentials)
2299 {
2300   auth->credentials = *credentials;
2301 }
2302
2303 /**
2304  * Gets the identity we authorized the client as.  Apps may have
2305  * different policies as to what identities they allow.
2306  *
2307  * @param auth the auth conversation
2308  * @param credentials the credentials we've authorized
2309  */
2310 void
2311 _dbus_auth_get_identity (DBusAuth               *auth,
2312                          DBusCredentials        *credentials)
2313 {
2314   if (auth->authenticated)
2315     *credentials = auth->authorized_identity;
2316   else
2317     _dbus_credentials_clear (credentials);
2318 }
2319
2320 /**
2321  * Sets the "authentication context" which scopes cookies
2322  * with the DBUS_COOKIE_SHA1 auth mechanism for example.
2323  *
2324  * @param auth the auth conversation
2325  * @param context the context
2326  * @returns #FALSE if no memory
2327  */
2328 dbus_bool_t
2329 _dbus_auth_set_context (DBusAuth               *auth,
2330                         const DBusString       *context)
2331 {
2332   return _dbus_string_replace_len (context, 0, _dbus_string_get_length (context),
2333                                    &auth->context, 0, _dbus_string_get_length (context));
2334 }
2335
2336 /** @} */
2337
2338 #ifdef DBUS_BUILD_TESTS
2339 #include "dbus-test.h"
2340 #include "dbus-auth-script.h"
2341 #include <stdio.h>
2342
2343 static dbus_bool_t
2344 process_test_subdir (const DBusString          *test_base_dir,
2345                      const char                *subdir)
2346 {
2347   DBusString test_directory;
2348   DBusString filename;
2349   DBusDirIter *dir;
2350   dbus_bool_t retval;
2351   DBusError error;
2352
2353   retval = FALSE;
2354   dir = NULL;
2355   
2356   if (!_dbus_string_init (&test_directory))
2357     _dbus_assert_not_reached ("didn't allocate test_directory\n");
2358
2359   _dbus_string_init_const (&filename, subdir);
2360   
2361   if (!_dbus_string_copy (test_base_dir, 0,
2362                           &test_directory, 0))
2363     _dbus_assert_not_reached ("couldn't copy test_base_dir to test_directory");
2364   
2365   if (!_dbus_concat_dir_and_file (&test_directory, &filename))    
2366     _dbus_assert_not_reached ("couldn't allocate full path");
2367
2368   _dbus_string_free (&filename);
2369   if (!_dbus_string_init (&filename))
2370     _dbus_assert_not_reached ("didn't allocate filename string\n");
2371
2372   dbus_error_init (&error);
2373   dir = _dbus_directory_open (&test_directory, &error);
2374   if (dir == NULL)
2375     {
2376       _dbus_warn ("Could not open %s: %s\n",
2377                   _dbus_string_get_const_data (&test_directory),
2378                   error.message);
2379       dbus_error_free (&error);
2380       goto failed;
2381     }
2382
2383   printf ("Testing:\n");
2384   
2385  next:
2386   while (_dbus_directory_get_next_file (dir, &filename, &error))
2387     {
2388       DBusString full_path;
2389       
2390       if (!_dbus_string_init (&full_path))
2391         _dbus_assert_not_reached ("couldn't init string");
2392
2393       if (!_dbus_string_copy (&test_directory, 0, &full_path, 0))
2394         _dbus_assert_not_reached ("couldn't copy dir to full_path");
2395
2396       if (!_dbus_concat_dir_and_file (&full_path, &filename))
2397         _dbus_assert_not_reached ("couldn't concat file to dir");
2398
2399       if (!_dbus_string_ends_with_c_str (&filename, ".auth-script"))
2400         {
2401           _dbus_verbose ("Skipping non-.auth-script file %s\n",
2402                          _dbus_string_get_const_data (&filename));
2403           _dbus_string_free (&full_path);
2404           goto next;
2405         }
2406
2407       printf ("    %s\n", _dbus_string_get_const_data (&filename));
2408       
2409       if (!_dbus_auth_script_run (&full_path))
2410         {
2411           _dbus_string_free (&full_path);
2412           goto failed;
2413         }
2414       else
2415         _dbus_string_free (&full_path);
2416     }
2417
2418   if (dbus_error_is_set (&error))
2419     {
2420       _dbus_warn ("Could not get next file in %s: %s\n",
2421                   _dbus_string_get_const_data (&test_directory), error.message);
2422       dbus_error_free (&error);
2423       goto failed;
2424     }
2425     
2426   retval = TRUE;
2427   
2428  failed:
2429
2430   if (dir)
2431     _dbus_directory_close (dir);
2432   _dbus_string_free (&test_directory);
2433   _dbus_string_free (&filename);
2434
2435   return retval;
2436 }
2437
2438 static dbus_bool_t
2439 process_test_dirs (const char *test_data_dir)
2440 {
2441   DBusString test_directory;
2442   dbus_bool_t retval;
2443
2444   retval = FALSE;
2445   
2446   _dbus_string_init_const (&test_directory, test_data_dir);
2447
2448   if (!process_test_subdir (&test_directory, "auth"))
2449     goto failed;
2450
2451   retval = TRUE;
2452   
2453  failed:
2454
2455   _dbus_string_free (&test_directory);
2456   
2457   return retval;
2458 }
2459
2460 dbus_bool_t
2461 _dbus_auth_test (const char *test_data_dir)
2462 {
2463   
2464   if (test_data_dir == NULL)
2465     return TRUE;
2466   
2467   if (!process_test_dirs (test_data_dir))
2468     return FALSE;
2469
2470   return TRUE;
2471 }
2472
2473 #endif /* DBUS_BUILD_TESTS */