Skip to content

Commit ec5e475

Browse files
committed
refactor(c): compile all C as C++ code
1 parent 1310645 commit ec5e475

File tree

4 files changed

+67
-62
lines changed

4 files changed

+67
-62
lines changed

binding.gyp

+1-6
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,11 @@
22
'targets': [
33
{
44
'target_name': 'kerberos',
5-
"cflags": [
6-
'-std=c++11',
7-
],
8-
# 'cflags!': [ '-fno-exceptions', '-std=c++11' ],
9-
# 'cflags_cc!': [ '-fno-exceptions' ],
105
'include_dirs': [ '<!(node -e "require(\'nan\')")' ],
116
'conditions': [
127
['OS=="mac" or OS=="linux"', {
138
'sources': [
14-
'src/base64.c',
9+
'src/base64.cc',
1510
'src/kerberos.cc',
1611
'src/kerberos_client.cc',
1712
'src/kerberos_server.cc',

src/base64.c src/base64.cc

+52-48
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2006-2008 Apple Inc. All rights reserved.
2+
* Copyright (c) 2006-2018 Apple Inc. All rights reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -16,55 +16,52 @@
1616

1717
#include "base64.h"
1818

19-
#include <errno.h>
20-
#include <stdio.h>
2119
#include <stdlib.h>
2220
#include <string.h>
2321

24-
void die2(const char* message) {
25-
if (errno) {
26-
perror(message);
27-
} else {
28-
printf("ERROR: %s\n", message);
29-
}
30-
31-
exit(1);
32-
}
33-
3422
// base64 tables
35-
static char basis_64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
36-
static signed char index_64[128] = {
37-
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
38-
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62,
39-
-1, -1, -1, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -1, -1, -1, -1, 0,
40-
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
41-
23, 24, 25, -1, -1, -1, -1, -1, -1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38,
42-
39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1};
43-
#define CHAR64(c) (((c) < 0 || (c) > 127) ? -1 : index_64[(c)])
23+
static char basis_64[] =
24+
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
25+
static signed char index_64[128] =
26+
{
27+
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
28+
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
29+
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,62, -1,-1,-1,63,
30+
52,53,54,55, 56,57,58,59, 60,61,-1,-1, -1,-1,-1,-1,
31+
-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10, 11,12,13,14,
32+
15,16,17,18, 19,20,21,22, 23,24,25,-1, -1,-1,-1,-1,
33+
-1,26,27,28, 29,30,31,32, 33,34,35,36, 37,38,39,40,
34+
41,42,43,44, 45,46,47,48, 49,50,51,-1, -1,-1,-1,-1
35+
};
36+
#define CHAR64(c) (((c) < 0 || (c) > 127) ? -1 : index_64[(c)])
4437

4538
// base64_encode : base64 encode
4639
//
4740
// value : data to encode
4841
// vlen : length of data
4942
// (result) : new char[] - c-str of result
50-
char* base64_encode(const unsigned char* value, int vlen) {
51-
char* result = (char*)malloc((vlen * 4) / 3 + 5);
43+
char *base64_encode(const unsigned char *value, size_t vlen)
44+
{
45+
char *result = (char *)malloc((vlen * 4) / 3 + 5);
5246
if (result == NULL)
53-
die2("Memory allocation failed");
54-
char* out = result;
55-
while (vlen >= 3) {
47+
{
48+
return NULL;
49+
}
50+
char *out = result;
51+
while (vlen >= 3)
52+
{
5653
*out++ = basis_64[value[0] >> 2];
5754
*out++ = basis_64[((value[0] << 4) & 0x30) | (value[1] >> 4)];
5855
*out++ = basis_64[((value[1] << 2) & 0x3C) | (value[2] >> 6)];
5956
*out++ = basis_64[value[2] & 0x3F];
6057
value += 3;
6158
vlen -= 3;
6259
}
63-
if (vlen > 0) {
60+
if (vlen > 0)
61+
{
6462
*out++ = basis_64[value[0] >> 2];
6563
unsigned char oval = (value[0] << 4) & 0x30;
66-
if (vlen > 1)
67-
oval |= value[1] >> 4;
64+
if (vlen > 1) oval |= value[1] >> 4;
6865
*out++ = basis_64[oval];
6966
*out++ = (vlen < 2) ? '=' : basis_64[(value[1] << 2) & 0x3C];
7067
*out++ = '=';
@@ -79,42 +76,48 @@ char* base64_encode(const unsigned char* value, int vlen) {
7976
// value : c-str to decode
8077
// rlen : length of decoded result
8178
// (result) : new unsigned char[] - decoded result
82-
unsigned char* base64_decode(const char* value, int* rlen) {
79+
unsigned char *base64_decode(const char *value, size_t *rlen)
80+
{
8381
*rlen = 0;
8482
int c1, c2, c3, c4;
8583

86-
int vlen = strlen(value);
87-
unsigned char* result = (unsigned char*)malloc((vlen * 3) / 4 + 1);
84+
size_t vlen = strlen(value);
85+
unsigned char *result =(unsigned char *)malloc((vlen * 3) / 4 + 1);
8886
if (result == NULL)
89-
die2("Memory allocation failed");
90-
unsigned char* out = result;
87+
{
88+
return NULL;
89+
}
90+
unsigned char *out = result;
9191

9292
while (1) {
93-
if (value[0] == 0)
93+
if (value[0]==0) {
9494
return result;
95+
}
9596
c1 = value[0];
96-
if (CHAR64(c1) == -1)
97-
goto base64_decode_error;
98-
;
97+
if (CHAR64(c1) == -1) {
98+
goto base64_decode_error;;
99+
}
99100
c2 = value[1];
100-
if (CHAR64(c2) == -1)
101-
goto base64_decode_error;
102-
;
101+
if (CHAR64(c2) == -1) {
102+
goto base64_decode_error;;
103+
}
103104
c3 = value[2];
104-
if ((c3 != '=') && (CHAR64(c3) == -1))
105-
goto base64_decode_error;
106-
;
105+
if ((c3 != '=') && (CHAR64(c3) == -1)) {
106+
goto base64_decode_error;;
107+
}
107108
c4 = value[3];
108-
if ((c4 != '=') && (CHAR64(c4) == -1))
109-
goto base64_decode_error;
110-
;
109+
if ((c4 != '=') && (CHAR64(c4) == -1)) {
110+
goto base64_decode_error;;
111+
}
111112

112113
value += 4;
113114
*out++ = (CHAR64(c1) << 2) | (CHAR64(c2) >> 4);
114115
*rlen += 1;
116+
115117
if (c3 != '=') {
116118
*out++ = ((CHAR64(c2) << 4) & 0xf0) | (CHAR64(c3) >> 2);
117119
*rlen += 1;
120+
118121
if (c4 != '=') {
119122
*out++ = ((CHAR64(c3) << 6) & 0xc0) | CHAR64(c4);
120123
*rlen += 1;
@@ -125,5 +128,6 @@ unsigned char* base64_decode(const char* value, int* rlen) {
125128
base64_decode_error:
126129
*result = 0;
127130
*rlen = 0;
131+
128132
return result;
129133
}

src/base64.h

+5-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@
1616
#ifndef BASE64_H
1717
#define BASE64_H
1818

19-
char* base64_encode(const unsigned char* value, int vlen);
20-
unsigned char* base64_decode(const char* value, int* rlen);
19+
#include <stddef.h>
2120

22-
#endif
21+
char* base64_encode(const unsigned char* value, size_t vlen);
22+
unsigned char* base64_decode(const char* value, size_t* rlen);
23+
24+
#endif

src/kerberos_gss.cc

+9-5
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ gss_result* authenticate_gss_client_step(gss_client_state* state, const char* ch
242242
if (challenge && *challenge)
243243
{
244244
size_t len;
245-
input_token.value = base64_decode(challenge, (int *) &len);
245+
input_token.value = base64_decode(challenge, &len);
246246
input_token.length = len;
247247
}
248248

@@ -339,7 +339,7 @@ gss_result* authenticate_gss_client_unwrap(gss_client_state *state, const char *
339339
if (challenge && *challenge)
340340
{
341341
size_t len;
342-
input_token.value = base64_decode(challenge, (int *) &len);
342+
input_token.value = base64_decode(challenge, &len);
343343
input_token.length = len;
344344
}
345345

@@ -395,7 +395,7 @@ gss_result* authenticate_gss_client_wrap(gss_client_state* state, const char* ch
395395
if (challenge && *challenge)
396396
{
397397
size_t len;
398-
input_token.value = base64_decode(challenge, (int *) &len);
398+
input_token.value = base64_decode(challenge, &len);
399399
input_token.length = len;
400400
}
401401

@@ -560,7 +560,7 @@ gss_result* authenticate_gss_server_step(gss_server_state *state, const char *ch
560560
if (challenge && *challenge)
561561
{
562562
size_t len;
563-
input_token.value = base64_decode(challenge, (int *) &len);
563+
input_token.value = base64_decode(challenge, &len);
564564
input_token.length = len;
565565
}
566566
else
@@ -703,4 +703,8 @@ static gss_result* gss_error_result_with_message_and_code(const char* message, i
703703
sprintf(msg, "%s (%d)", message, code);
704704
result->message = msg;
705705
return result;
706-
}
706+
}
707+
708+
#if defined(__clang__)
709+
#pragma clang diagnostic pop
710+
#endif

0 commit comments

Comments
 (0)