Add copyright comment headers to appropriate files
[gssweb.git] / json_gssapi / src / main.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 #include <iostream>
35 #include <string.h>
36 #ifdef WIN32
37 #include <stdio.h>
38 #include <fcntl.h>
39 #include <io.h>
40 #else
41 #include <unistd.h>
42 #endif
43 #include <GSSRequest.h>
44
45 #ifdef WIN32
46 #define gssweb_read _read
47 #else
48 #define gssweb_read read
49 #endif
50
51 using std::cin;
52 using std::cout;
53 using std::endl;
54 using std::getline;
55
56 int main(int argc, char **argv) {
57   /* Variables */
58   char *input;
59   char *output;
60   int32_t len;
61   
62   /* Error checking */
63   
64   /* Setup */
65   
66   /* Main processing */
67 #ifdef WIN32
68   _setmode(_fileno(stdin), _O_BINARY);
69 #endif
70   int readThisRound, readTotal, readRemaining;
71   do 
72   {
73     // Read 32 bit length
74     len = 0;
75     readThisRound = readTotal = 0;
76     while(4 != readTotal)
77     {
78       readThisRound = gssweb_read(0, ((&len) + readTotal), 4 - readTotal);
79       readTotal += readThisRound;
80     }
81     
82     // Reads the number of bytes indicated by the above read
83     input = new char[len + 1];
84     readTotal = readThisRound = 0;
85     while (readTotal < len)
86     {
87       readRemaining = len - readTotal;
88       readThisRound = gssweb_read( 0, &(input[readTotal]), readRemaining);
89       if (-1 == readThisRound)
90         break;
91       else
92         readTotal += readThisRound;
93     }
94     // ... and null-terminate it
95     input[len] = '\0';
96     
97     output = gss_request(input);
98     len = (int32_t )strlen(output);
99     
100     cout.write((char *)&len, 4);
101     cout << output;
102     deallocate_reply(output);
103     cout.flush();
104   } while(1);
105   return 0;
106 }