From c791194cf87a3b9a0270d6dc26c6a0ea9d8db96e Mon Sep 17 00:00:00 2001 From: venaas Date: Tue, 29 May 2007 13:48:21 +0000 Subject: added reject support git-svn-id: https://svn.testnett.uninett.no/radsecproxy/trunk@111 e88ac4ed-0b26-0410-9574-a7f39faa03bf --- radsecproxy.c | 51 +++++++++++++++++++++++++++++------------------- radsecproxy.conf-example | 8 +++++++- radsecproxy.h | 2 ++ 3 files changed, 40 insertions(+), 21 deletions(-) diff --git a/radsecproxy.c b/radsecproxy.c index 291d2af..5abc6f7 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -995,15 +995,14 @@ int msmppdecrypt(uint8_t *text, uint8_t len, uint8_t *shared, uint8_t sharedlen, return 1; } -int id2server(struct server **server, char *id, uint8_t len) { +struct realm *id2realm(char *id, uint8_t len) { int i; for (i = 0; i < realm_count; i++) if (!regexec(&realms[i].regex, id, 0, NULL, 0)) { - debug(DBG_DBG, "found matching realm: %s, host %s", realms[i].name, realms[i].server->peer.host); - *server = realms[i].server; - return 1; + debug(DBG_DBG, "found matching realm: %s", realms[i].name); + return realms + i; } - return 0; + return NULL; } int rqinqueue(struct server *to, struct client *from, uint8_t id) { @@ -1104,18 +1103,26 @@ void respondstatusserver(struct request *rq) { sendreply(rq->from, resp, rq->from->peer.type == 'U' ? &rq->fromsa : NULL); } -void respondreject(struct request *rq) { +void respondreject(struct request *rq, char *message) { unsigned char *resp; + int len = 20; - resp = malloc(20); + if (message) + len += 2 + strlen(message); + + resp = malloc(len); if (!resp) { debug(DBG_ERR, "respondreject: malloc failed"); return; } memcpy(resp, rq->buf, 20); resp[0] = RAD_Access_Reject; - resp[2] = 0; - resp[3] = 20; + *(uint16_t *)(resp + 2) = htons(len); + if (message) { + resp[20] = RAD_Attr_Reply_Message; + resp[21] = len - 20; + memcpy(resp + 22, message, len - 22); + } sendreply(rq->from, resp, rq->from->peer.type == 'U' ? &rq->fromsa : NULL); } @@ -1125,7 +1132,8 @@ void radsrv(struct request *rq) { struct server *to = NULL; char username[256]; unsigned char *buf, newauth[16]; - + struct realm *realm = NULL; + buf = rq->buf; code = *(uint8_t *)buf; id = *(uint8_t *)(buf + 1); @@ -1159,12 +1167,14 @@ void radsrv(struct request *rq) { memcpy(username, ATTRVAL(attr), ATTRVALLEN(attr)); username[ATTRVALLEN(attr)] = '\0'; debug(DBG_DBG, "Access Request with username: %s", username); - - if (!id2server(&to, username, strlen(username))) { + + realm = id2realm(username, strlen(username)); + if (!realm) { debug(DBG_INFO, "radsrv: ignoring request, don't know where to send it"); free(buf); return; } + to = realm->server; if (to && rqinqueue(to, rq->from, id)) { debug(DBG_INFO, "radsrv: already got request from host %s with id %d, ignoring", rq->from->peer.host, id); @@ -1187,7 +1197,7 @@ void radsrv(struct request *rq) { if (!to) { debug(DBG_INFO, "radsrv: sending reject to %s for %s", rq->from->peer.host, username); - respondreject(rq); + respondreject(rq, realm->message); return; } @@ -1707,7 +1717,7 @@ int tlslistener() { return 0; } -void addrealm(char *value, char *server) { +void addrealm(char *value, char *server, char *message) { int i, n; struct realm *realm; char *s, *regex = NULL; @@ -1754,6 +1764,9 @@ void addrealm(char *value, char *server) { realm->name = stringcopy(value, 0); if (!realm->name) debugx(1, DBG_ERR, "malloc failed"); + if (message && strlen(message) > 253) + debugx(1, DBG_ERR, "ReplyMessage can be at most 253 bytes"); + realm->message = message; if (server) realm->server = servers + i; if (regcomp(&realm->regex, regex ? regex : value + 1, REG_ICASE | REG_NOSUB)) @@ -2109,7 +2122,7 @@ void confclsrv_cb(FILE *f, char *opt, char *val) { } void confrealm_cb(FILE *f, char *opt, char *val) { - char *server = NULL; + char *server = NULL, *msg = NULL; char *block; block = malloc(strlen(opt) + strlen(val) + 2); @@ -2120,13 +2133,11 @@ void confrealm_cb(FILE *f, char *opt, char *val) { getgeneralconfig(f, block, "server", CONF_STR, &server, + "ReplyMessage", CONF_STR, &msg, NULL ); -#if 0 - if (!server) - debugx(1, DBG_ERR, "error in block %s, server must be specified", block); -#endif - addrealm(val, server); + + addrealm(val, server, msg); free(server); free(block); } diff --git a/radsecproxy.conf-example b/radsecproxy.conf-example index 6cda59e..6dc133b 100644 --- a/radsecproxy.conf-example +++ b/radsecproxy.conf-example @@ -79,8 +79,14 @@ server radius.example.com { realm /@example\.com$ { server 2001:db8::1 } +# One can define a realm without servers, the proxy will then reject +# and requests matching this. Optionally one can specify ReplyMessage +# attribute to be included in the reject message. +# realm /\.com$ { - server 2001:db8::1 +} +realm /^anonymous$ { + replymessage "No Access" } # The realm below is equivalent to /.* realm * { diff --git a/radsecproxy.h b/radsecproxy.h index b4dcfe6..1077496 100644 --- a/radsecproxy.h +++ b/radsecproxy.h @@ -32,6 +32,7 @@ #define RAD_Attr_User_Name 1 #define RAD_Attr_User_Password 2 +#define RAD_Attr_Reply_Message 18 #define RAD_Attr_Vendor_Specific 26 #define RAD_Attr_Tunnel_Password 69 #define RAD_Attr_Message_Authenticator 80 @@ -111,6 +112,7 @@ struct server { struct realm { char *name; + char *message; regex_t regex; struct server *server; }; -- cgit v1.2.3