Rework the invalid argument for init sec context exception
[gssweb.git] / json_gssapi / src / GSSException.cpp
1 /*
2  * Copyright (c) 2014, 2015 JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31  * OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  */
34
35 #include "GSSException.h"
36 #include "datamodel/GSSBuffer.h"
37 #include <sstream>
38 #include <string>
39
40 static std::string disp_status(OM_uint32 status, int status_type, gss_OID mech)
41 {
42   /* Error checking */
43   /* Variables */
44   GSSBuffer disp_buf;
45   std::string disp_status;
46   
47   OM_uint32 disp_major, disp_minor, disp_context;
48
49   disp_context = 0;
50   do
51   {
52     disp_major = gss_display_status(&disp_minor, 
53                                     status, 
54                                     status_type,
55                                     mech, 
56                                     &disp_context, 
57                                     disp_buf.toGss() );
58     if (GSS_ERROR(disp_major))
59       throw GSSException("An error occurred while dealing with another error.", disp_major, disp_minor, mech);
60     else
61       disp_status += disp_buf.toString();
62   } while (disp_context != 0);
63
64   return(disp_status);
65 }
66
67 GSSException::GSSException(std::string message, 
68                            OM_uint32 major, 
69                            OM_uint32 minor, 
70                            gss_OID mech)
71 {
72   /* Error checking */
73   
74   /* Variables */
75   /* Setup */
76   
77   /* Main */
78   this->major = major;
79   this->minor = minor;
80   this->mech = mech;
81   this->message = message;
82
83   this->major_msg = disp_status(major, GSS_C_GSS_CODE, mech);
84   this->minor_msg = disp_status(minor, GSS_C_MECH_CODE, mech);
85   
86   /* Cleanup */
87   /* Return */
88 }
89
90 const char* GSSException::what(void) const throw()
91 {
92   /* Variables */
93   return(this->message.c_str());
94 }
95