ntlm_fake_auth.cc
Go to the documentation of this file.
1/*
2 * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9/*
10 * AUTHOR: Andrew Doran <ad@interlude.eu.org>
11 * AUTHOR: Robert Collins <rbtcollins@hotmail.com>
12 * AUTHOR: Guido Serassio <guido.serassio@acmeconsulting.it>
13 */
14
15/*
16 * Example ntlm authentication program for Squid, based on the
17 * original proxy_auth code from client_side.c, written by
18 * Jon Thackray <jrmt@uk.gdscorp.com>. Initial ntlm code by
19 * Andrew Doran <ad@interlude.eu.org>.
20 *
21 * This code gets the username and returns it. No validation is done.
22 * and by the way: it is a complete patch-up. Use the "real thing" NTLMSSP
23 * if you can.
24 *
25 * Revised by Guido Serassio: <guido.serassio@acmeconsulting.it>
26 *
27 * - Added negotiation of UNICODE char support
28 * - More detailed debugging info
29 *
30 */
31
32/* undefine this to have strict protocol adherence. You don't really need
33 * that though */
34#define IGNORANCE_IS_BLISS
35
36#include "squid.h"
37#include "base64.h"
39#include "ntlmauth/ntlmauth.h"
41
42#include <cctype>
43#include <chrono>
44#include <cstring>
45#if HAVE_CRYPT_H
46#include <crypt.h>
47#endif
48#if HAVE_PWD_H
49#include <pwd.h>
50#endif
51#if HAVE_GETOPT_H
52#include <getopt.h>
53#endif
54#include <thread>
55
56/* A couple of harmless helper macros */
57#define SEND(X) {debug("sending '%s' to squid\n",X); printf(X "\n");}
58#ifdef __GNUC__
59#define SEND2(X,Y...) {debug("sending '" X "' to squid\n",Y); printf(X "\n",Y);}
60#define SEND3(X,Y...) {debug("sending '" X "' to squid\n",Y); printf(X "\n",Y);}
61#define SEND4(X,Y...) {debug("sending '" X "' to squid\n",Y); printf(X "\n",Y);}
62#else
63/* no gcc, no debugging. varargs macros are a gcc extension */
64#define SEND2(X,Y) {debug("sending '" X "' to squid\n",Y); printf(X "\n",Y);}
65#define SEND3(X,Y,Z) {debug("sending '" X "' to squid\n",Y,Z); printf(X "\n",Y,Z);}
66#define SEND4(X,Y,Z,W) {debug("sending '" X "' to squid\n",Y,Z,W); printf(X "\n",Y,Z,W);}
67#endif
68
69const char *authenticate_ntlm_domain = "WORKGROUP";
72unsigned int response_delay = 0;
73
74/*
75 * options:
76 * -d enable debugging.
77 * -v enable verbose NTLM packet debugging.
78 * -l if specified, changes behavior on failures to last-ditch.
79 */
80char *my_program_name = nullptr;
81
82static void
83usage(void)
84{
85 fprintf(stderr,
86 "Usage: %s [-d] [-t N] [-v] [-h]\n"
87 " -d enable debugging.\n"
88 " -S strip domain from username.\n"
89 " -t timeout to delay responses (milliseconds).\n"
90 " -v enable verbose NTLM packet debugging.\n"
91 " -h this message\n\n",
93}
94
95static void
96process_options(int argc, char *argv[])
97{
98 int opt, had_error = 0;
99
100 opterr = 0;
101 while (-1 != (opt = getopt(argc, argv, "hdvSt:"))) {
102 switch (opt) {
103 case 'd':
104 debug_enabled = 1;
105 break;
106 case 'v':
107 debug_enabled = 1;
109 break;
110 case 'S':
112 break;
113 case 't':
114 if (!xstrtoui(optarg, nullptr, &response_delay, 0, 86400)) {
115 fprintf(stderr, "ERROR: invalid parameter value for -t '%s'", optarg);
116 usage();
117 had_error = 1;
118 }
119 break;
120 case 'h':
121 usage();
122 exit(EXIT_SUCCESS);
123 case '?':
124 opt = optopt;
125 [[fallthrough]];
126 default:
127 fprintf(stderr, "unknown option: -%c. Exiting\n", opt);
128 usage();
129 had_error = 1;
130 }
131 }
132 if (had_error)
133 exit(EXIT_FAILURE);
134}
135
136int
137main(int argc, char *argv[])
138{
139 char buf[HELPER_INPUT_BUFFER];
140 int buflen = 0;
141 uint8_t decodedBuf[HELPER_INPUT_BUFFER];
142 int decodedLen;
144 char *p;
145 char helper_command[3];
146 int len;
147
148 setbuf(stdout, nullptr);
149 setbuf(stderr, nullptr);
150
151 my_program_name = argv[0];
152
153 process_options(argc, argv);
154
155 debug("%s " VERSION " " SQUID_BUILD_INFO " starting up...\n", my_program_name);
156
157 while (fgets(buf, HELPER_INPUT_BUFFER, stdin) != nullptr) {
158 user[0] = '\0'; /*no user code */
159 domain[0] = '\0'; /*no domain code */
160
161 if ((p = strchr(buf, '\n')) != nullptr)
162 *p = '\0'; /* strip \n */
163 buflen = strlen(buf); /* keep this so we only scan the buffer for \0 once per loop */
164 ntlmhdr *packet;
165 struct base64_decode_ctx ctx;
166 base64_decode_init(&ctx);
167 size_t dstLen = 0;
168 if (buflen > 3 &&
169 base64_decode_update(&ctx, &dstLen, decodedBuf, buflen-3, buf+3) &&
170 base64_decode_final(&ctx)) {
171 decodedLen = dstLen;
172 packet = (ntlmhdr*)decodedBuf;
173 } else {
174 packet = nullptr;
175 decodedLen = 0;
176 }
177
178 if (buflen > 3 && NTLM_packet_debug_enabled) {
179 strncpy(helper_command, buf, 2);
180 helper_command[2] = '\0';
181 debug("Got '%s' from Squid with data:\n", helper_command);
182 hex_dump((unsigned char *)decodedBuf, decodedLen);
183 } else
184 debug("Got '%s' from Squid\n", buf);
185
186 if (response_delay > 0) {
187 std::this_thread::sleep_for(std::chrono::milliseconds(response_delay));
188 }
189
190 if (strncmp(buf, "YR", 2) == 0) {
191 char nonce[NTLM_NONCE_LEN];
192 ntlm_challenge chal;
193 ntlm_make_nonce(nonce);
194 if (buflen > 3 && packet) {
195 ntlm_negotiate *nego = (ntlm_negotiate *)packet;
197 } else {
199 }
200 // TODO: find out what this context means, and why only the fake auth helper contains it.
201 chal.context_high = htole32(0x003a<<16);
202
203 len = sizeof(chal) - sizeof(chal.payload) + le16toh(chal.target.maxlen);
204
205 struct base64_encode_ctx eCtx;
206 base64_encode_init(&eCtx);
207 char *data = static_cast<char *>(xcalloc(base64_encode_len(len), 1));
208 size_t blen = base64_encode_update(&eCtx, data, len, reinterpret_cast<const uint8_t *>(&chal));
209 blen += base64_encode_final(&eCtx, data+blen);
211 printf("TT %.*s\n", (int)blen, data);
212 debug("sending 'TT' to squid with data:\n");
213 hex_dump((unsigned char *)&chal, len);
214 } else
215 SEND3("TT %.*s", (int)blen, data);
216 safe_free(data);
217
218 } else if (strncmp(buf, "KK ", 3) == 0) {
219 if (!packet) {
220 SEND("BH received KK with no data! user=");
222 if (ntlm_unpack_auth((ntlm_authenticate *)packet, user, domain, decodedLen) == NTLM_ERR_NONE) {
223 lc(user);
225 SEND2("AF %s", user);
226 } else {
227 SEND4("AF %s%s%s", domain, (*domain?"\\":""), user);
228 }
229 } else {
230 lc(user);
231 SEND4("NA invalid credentials, user=%s%s%s", domain, (*domain?"\\":""), user);
232 }
233 } else {
234 SEND("BH wrong packet type! user=");
235 }
236 }
237 }
238 return EXIT_SUCCESS;
239}
240
void base64_encode_init(struct base64_encode_ctx *ctx)
Definition: base64.c:232
size_t base64_encode_update(struct base64_encode_ctx *ctx, char *dst, size_t length, const uint8_t *src)
Definition: base64.c:265
void base64_decode_init(struct base64_decode_ctx *ctx)
Definition: base64.c:54
size_t base64_encode_final(struct base64_encode_ctx *ctx, char *dst)
Definition: base64.c:308
#define base64_encode_len(length)
Definition: base64.h:169
int base64_decode_update(struct base64_decode_ctx *ctx, size_t *dst_length, uint8_t *dst, size_t src_length, const char *src)
Definition: base64.c:129
int base64_decode_final(struct base64_decode_ctx *ctx)
Definition: base64.c:159
#define HELPER_INPUT_BUFFER
Definition: UserRequest.cc:24
int debug_enabled
Definition: debug.cc:13
void debug(const char *format,...)
Definition: debug.cc:19
int optopt
Definition: getopt.c:49
int getopt(int nargc, char *const *nargv, const char *ostr)
Definition: getopt.c:62
char * optarg
Definition: getopt.c:51
int opterr
Definition: getopt.c:47
#define VERSION
#define SEND3(X, Y, Z)
int NTLM_packet_debug_enabled
int main(int argc, char *argv[])
#define SEND(X)
#define SEND4(X, Y, Z, W)
const char * authenticate_ntlm_domain
int strip_domain_enabled
static void process_options(int argc, char *argv[])
char * my_program_name
static void usage(void)
#define SEND2(X, Y)
unsigned int response_delay
int ntlm_validate_packet(const ntlmhdr *hdr, const int32_t type)
Definition: ntlmauth.cc:67
int ntlm_unpack_auth(const ntlm_authenticate *auth, char *user, char *domain, const int32_t size)
Definition: ntlmauth.cc:246
void ntlm_make_challenge(ntlm_challenge *ch, const char *domain, const char *, const char *challenge_nonce, const int challenge_nonce_len, const uint32_t flags)
Definition: ntlmauth.cc:209
void ntlm_make_nonce(char *nonce)
Definition: ntlmauth.cc:195
#define NTLM_MAX_FIELD_LENGTH
Definition: ntlmauth.h:22
#define NTLM_AUTHENTICATE
Definition: ntlmauth.h:75
#define NTLM_ERR_NONE
Definition: ntlmauth.h:38
#define NTLM_NEGOTIATE_ASCII
Definition: ntlmauth.h:108
#define NTLM_NONCE_LEN
Definition: ntlmauth.h:134
strhdr target
Definition: ntlmauth.h:144
uint32_t context_high
Definition: ntlmauth.h:148
char payload[256]
Definition: ntlmauth.h:149
uint32_t flags
Definition: ntlmauth.h:124
int16_t maxlen
Definition: ntlmauth.h:54
void lc(char *string)
void hex_dump(unsigned char *data, int size)
#define le16toh(x)
#define htole32(x)
void * xcalloc(size_t n, size_t sz)
Definition: xalloc.cc:71
#define safe_free(x)
Definition: xalloc.h:73
bool xstrtoui(const char *s, char **end, unsigned int *value, unsigned int min, unsigned int max)
Definition: xstrto.cc:86

 

Introduction

Documentation

Support

Miscellaneous

Web Site Translations

Mirrors