Blame view

mailbox/acl.c 16.6 KB
1
/* GNU Mailutils -- a suite of utilities for electronic mail
2
   Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 3 of the License, or (at your option) any later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General
   Public License along with this library; If not, see
   <http://www.gnu.org/licenses/>.  */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <sys/socket.h>
#include <netinet/in.h>
#include <sys/un.h>
#include <arpa/inet.h>

#include <sys/types.h>
27
#include <sys/wait.h>
28 29 30 31 32 33 34 35 36 37 38
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <mailutils/acl.h>
#include <mailutils/argcv.h>
#include <mailutils/list.h>
#include <mailutils/debug.h>
#include <mailutils/error.h>
#include <mailutils/errno.h>
#include <mailutils/kwd.h>
#include <mailutils/vartab.h>
39
#include <mailutils/io.h>
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77

struct _mu_acl_entry
{
  mu_acl_action_t action;
  void *arg;
  unsigned netmask;
  int salen;
  struct sockaddr sa[1];
};

struct _mu_acl
{
  mu_debug_t debug;
  mu_list_t aclist;
};


static void
_destroy_acl_entry (void *item)
{
  struct _mu_acl_entry *p = item;
  free (p);
  /* FIXME: free arg? */
}

static size_t
mu_acl_entry_size (int salen)
{
  return sizeof (struct _mu_acl_entry) + salen - sizeof (struct sockaddr);
}

static int
prepare_sa (struct sockaddr *sa)
{
  switch (sa->sa_family)
    {
    case AF_INET:
      {
78 79
	struct sockaddr_in *s_in = (struct sockaddr_in *)sa;
	s_in->sin_addr.s_addr = ntohl (s_in->sin_addr.s_addr);
80 81 82 83 84 85 86 87 88 89 90 91 92 93
	break;
      }
      
    case AF_UNIX:
      break;

    default:
      return 1;
    }
  return 0;
}

int
mu_acl_entry_create (struct _mu_acl_entry **pent,
94 95
		     mu_acl_action_t action, void *data,
		     struct sockaddr *sa, int salen, unsigned long netmask)
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
{
  struct _mu_acl_entry *p = malloc (mu_acl_entry_size (salen));
  if (!p)
    return EINVAL;

  p->action = action;
  p->arg = data;
  p->netmask = ntohl (netmask);
  p->salen = salen;
  memcpy (p->sa, sa, salen);
  if (prepare_sa (p->sa))
    {
      free (p);
      return EINVAL;
    }
  *pent = p;
  return 0;
}


int
mu_acl_create (mu_acl_t *pacl)
{
  int rc;
  mu_acl_t acl;
  mu_log_level_t level;

  acl = calloc (1, sizeof (*acl));
  if (!acl)
    return errno;
  rc = mu_list_create (&acl->aclist);
  if (rc)
    free (acl);
  else
    *pacl = acl;
  mu_list_set_destroy_item (acl->aclist, _destroy_acl_entry);

  level = mu_global_debug_level ("acl");
  if (level)
    {
      int status = mu_debug_create (&acl->debug, NULL);
      if (status == 0)
	mu_debug_set_level (acl->debug, level);
    }
  
  return rc;
}

int
mu_acl_count (mu_acl_t acl, size_t *pcount)
{
  if (!acl)
    return EINVAL;
  return mu_list_count (acl->aclist, pcount);
}

int
mu_acl_destroy (mu_acl_t *pacl)
{
  mu_acl_t acl;
  if (!pacl || !*pacl)
    return EINVAL;
  acl = *pacl;
  mu_list_destroy (&acl->aclist);
  mu_debug_destroy (&acl->debug, NULL);
  free (acl);
  *pacl = acl;
  return 0;
}
		   
int
mu_acl_get_debug (mu_acl_t acl, mu_debug_t *pdebug)
{
  if (!acl)
    return EINVAL;
  if (!pdebug)
    return MU_ERR_OUT_NULL;
  *pdebug = acl->debug;
  return 0;
}

int
mu_acl_set_debug (mu_acl_t acl, mu_debug_t debug)
{
  if (!acl)
    return EINVAL;
  acl->debug = debug;
  return 0;
}

int
mu_acl_get_iterator (mu_acl_t acl, mu_iterator_t *pitr)
{
  if (!acl)
    return EINVAL;
  return mu_list_get_iterator (acl->aclist, pitr);
}

int
mu_acl_append (mu_acl_t acl, mu_acl_action_t act,
	       void *data, struct sockaddr *sa, int salen,
	       unsigned long netmask)
{
  int rc;
  struct _mu_acl_entry *ent;
  
  if (!acl)
    return EINVAL;
  rc = mu_acl_entry_create (&ent, act, data, sa, salen, netmask);
  if (rc)
    {
      MU_DEBUG1 (acl->debug, MU_DEBUG_ERROR, "Cannot allocate ACL entry: %s",
		 mu_strerror (rc));
      return ENOMEM;
    }
  
  rc = mu_list_append (acl->aclist, ent);
  if (rc)
    {
      MU_DEBUG1 (acl->debug, MU_DEBUG_ERROR, "Cannot append ACL entry: %s",
		 mu_strerror (rc));
      free (ent);
    }
  return rc;
}

int
mu_acl_prepend (mu_acl_t acl, mu_acl_action_t act, void *data,
		struct sockaddr *sa, int salen, unsigned long netmask)
{
  int rc;
  struct _mu_acl_entry *ent;
  
  if (!acl)
    return EINVAL;
  rc = mu_acl_entry_create (&ent, act, data, sa, salen, netmask);
  if (rc)
    {
      MU_DEBUG1 (acl->debug, MU_DEBUG_ERROR, "Cannot allocate ACL entry: %s",
		 mu_strerror (rc));
      return ENOMEM;
    }
  rc = mu_list_prepend (acl->aclist, ent); 
  if (rc)
    {
      MU_DEBUG1 (acl->debug, MU_DEBUG_ERROR, "Cannot prepend ACL entry: %s",
		 mu_strerror (rc));
      free (ent);
    }
  return rc;
}

int
mu_acl_insert (mu_acl_t acl, size_t pos, int before,
	       mu_acl_action_t act, void *data,
	       struct sockaddr *sa, int salen, unsigned long netmask)
{
  int rc;
  void *ptr;
  struct _mu_acl_entry *ent;
  
  if (!acl)
    return EINVAL;
  
  rc = mu_list_get (acl->aclist, pos, &ptr);
  if (rc)
    {
      MU_DEBUG1 (acl->debug, MU_DEBUG_ERROR, "No such entry %lu",
		 (unsigned long) pos);
      return rc;
    }
  rc = mu_acl_entry_create (&ent, act, data, sa, salen, netmask);
  if (!ent)
    {
      MU_DEBUG1 (acl->debug, MU_DEBUG_ERROR, "Cannot allocate ACL entry: %s",
		 mu_strerror (rc));
      return ENOMEM;
    }
  rc = mu_list_insert (acl->aclist, ptr, ent, before);
  if (rc)
    {
      MU_DEBUG1 (acl->debug, MU_DEBUG_ERROR, "Cannot insert ACL entry: %s",
		 mu_strerror (rc));
      free (ent);
    }
  return rc;
}


static mu_kwd_t action_tab[] = {
  { "accept", mu_acl_accept },
  { "deny", mu_acl_deny },
  { "log", mu_acl_log },
  { "exec", mu_acl_exec },
  { "ifexec", mu_acl_ifexec },
  { NULL }
};

int
mu_acl_action_to_string (mu_acl_action_t act, const char **pstr)
{
  return mu_kwd_xlat_tok (action_tab, act, pstr);
}

int
mu_acl_string_to_action (const char *str, mu_acl_action_t *pres)
{
  int x;
  int rc = mu_kwd_xlat_name (action_tab, str, &x);
  if (rc == 0)
    *pres = x;
  return rc;
}

310 311 312
#define MU_S_UN_NAME(sa, salen) \
  ((salen < mu_offsetof (struct sockaddr_un,sun_path)) ? "" : (sa)->sun_path)

313
static void
314 315
debug_sockaddr (mu_debug_t dbg, mu_log_level_t lvl, struct sockaddr *sa,
		int salen)
316 317 318 319 320
{
  switch (sa->sa_family)
    {
    case AF_INET:
      {
321 322
	struct sockaddr_in s_in = *(struct sockaddr_in *)sa;
	s_in.sin_addr.s_addr = htonl (s_in.sin_addr.s_addr);
323
	mu_debug_printf (dbg, lvl, "{AF_INET %s:%d}",
324
			 inet_ntoa (s_in.sin_addr), ntohs (s_in.sin_port));
325 326 327 328 329
	break;
      }

    case AF_UNIX:
      {
330
	struct sockaddr_un *s_un = (struct sockaddr_un *)sa;
331 332 333 334
	if (MU_S_UN_NAME(s_un, salen)[0] == 0)
	  mu_debug_printf (dbg, lvl, "{AF_UNIX}");
	else
	  mu_debug_printf (dbg, lvl, "{AF_UNIX %s}", s_un->sun_path);
335 336 337 338 339 340 341 342
	break;
      }

    default:
      mu_debug_printf (dbg, lvl, "{Unsupported family: %d}", sa->sa_family);
    }
}

343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
size_t
mu_stpcpy (char **pbuf, size_t *psize, const char *src)
{
  size_t slen = strlen (src);
  if (pbuf == NULL || *pbuf == NULL)
    return slen;
  else
    {
      char *buf = *pbuf;
      size_t size = *psize;
      if (size > slen)
	size = slen;
      memcpy (buf, src, size);
      *psize -= size;
      *pbuf += size;
      if (*psize)
	**pbuf = 0;
      else
	(*pbuf)[-1] = 0;
      return size;
    }
}

void
367
mu_sockaddr_to_str (const struct sockaddr *sa, int salen,
368 369 370
		    char *bufptr, size_t buflen,
		    size_t *plen)
{
371
  char *nbuf;
372 373 374 375 376 377 378 379
  size_t len = 0;
  switch (sa->sa_family)
    {
    case AF_INET:
      {
	struct sockaddr_in s_in = *(struct sockaddr_in *)sa;
	len += mu_stpcpy (&bufptr, &buflen, inet_ntoa (s_in.sin_addr));
	len += mu_stpcpy (&bufptr, &buflen, ":");
380 381 382 383 384
	if (mu_asprintf (&nbuf, "%hu", ntohs (s_in.sin_port)) == 0)
	  {
	    len += mu_stpcpy (&bufptr, &buflen, nbuf);
	    free (nbuf);
	  }
385 386 387 388 389 390
	break;
      }

    case AF_UNIX:
      {
	struct sockaddr_un *s_un = (struct sockaddr_un *)sa;
391 392 393 394 395 396 397
	if (MU_S_UN_NAME(s_un, salen)[0] == 0)
	  len += mu_stpcpy (&bufptr, &buflen, "anonymous socket");
	else
	  {
	    len += mu_stpcpy (&bufptr, &buflen, "socket ");
	    len += mu_stpcpy (&bufptr, &buflen, s_un->sun_path);
	  }
398 399 400 401
	break;
      }

    default:
402 403 404 405 406 407
      len += mu_stpcpy (&bufptr, &buflen, "{Unsupported family");
      if (mu_asprintf (&nbuf, ": %d", sa->sa_family) == 0)
	{
	  len += mu_stpcpy (&bufptr, &buflen, nbuf);
	  free (nbuf);
	}
408
      len += mu_stpcpy (&bufptr, &buflen, "}");
409 410 411 412 413 414
    }
  if (plen)
    *plen = len + 1;
}

char *
415
mu_sockaddr_to_astr (const struct sockaddr *sa, int salen)
416 417 418 419 420 421 422 423 424 425 426
{
  size_t size;
  char *p;
  
  mu_sockaddr_to_str (sa, salen, NULL, 0, &size);
  p = malloc (size);
  if (p)
    mu_sockaddr_to_str (sa, salen, p, size, NULL);
  return p;
}

427
int
428 429
_acl_match (mu_debug_t debug, struct _mu_acl_entry *ent, struct sockaddr *sa,
	    int salen)
430 431 432 433 434 435 436 437 438 439
{
#define RESMATCH(word)                                   \
  if (mu_debug_check_level (debug, MU_DEBUG_TRACE0))     \
    mu_debug_printf (debug, MU_DEBUG_TRACE0, "%s; ", word);
							      
  if (mu_debug_check_level (debug, MU_DEBUG_TRACE0))
    {
      struct in_addr a;
      
      __MU_DEBUG1 (debug, MU_DEBUG_TRACE0, "%s", "Does ");
440
      debug_sockaddr (debug, MU_DEBUG_TRACE0, sa, salen);
441
      mu_debug_printf (debug, MU_DEBUG_TRACE0, " match ");
442
      debug_sockaddr (debug, MU_DEBUG_TRACE0, ent->sa, salen);
443
      a.s_addr = ent->netmask;
444
      a.s_addr = htonl (a.s_addr);
445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481
      mu_debug_printf (debug, MU_DEBUG_TRACE0, " netmask %s? ", inet_ntoa (a));
    }

  if (ent->sa->sa_family != sa->sa_family)
    {
      RESMATCH ("no");
      return 1;
    }

  switch (ent->sa->sa_family)
    {
    case AF_INET:
      {
	struct sockaddr_in *sin_ent = (struct sockaddr_in *)ent->sa;
	struct sockaddr_in *sin_item = (struct sockaddr_in *)sa;
	
	if (sin_ent->sin_addr.s_addr !=
	    (sin_item->sin_addr.s_addr & ent->netmask))
	  {
	    RESMATCH ("no (address differs)");
	    return 1;
	  }

	if (sin_ent->sin_port && sin_item->sin_port
	    && sin_ent->sin_port != sin_item->sin_port)
	  {
	    RESMATCH ("no (port differs)");
	    return 1;
	  }
	break;
      }
	  
    case AF_UNIX:
      {
	struct sockaddr_un *sun_ent = (struct sockaddr_un *)ent->sa;
	struct sockaddr_un *sun_item = (struct sockaddr_un *)sa;

482 483
	if (MU_S_UN_NAME (sun_ent, ent->salen)[0]
	    && MU_S_UN_NAME (sun_item, salen)[0]
484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509
	    && strcmp (sun_ent->sun_path, sun_item->sun_path))
	  {
	    RESMATCH ("no");
	    return 1;
	  }
	break;
      }
    }
  
  RESMATCH ("yes");
  return 0;
}

struct run_closure
{
  unsigned idx;
  mu_debug_t debug;
  struct sockaddr *sa;
  int salen;
  mu_acl_result_t *result;
};

static int
_expand_aclno (const char *name, void *data, char **p)
{
  struct run_closure *rp = data;
510
  /*FIXME: memory leak*/
511
  return mu_asprintf (p, "%u", rp->idx);
512 513 514 515 516 517 518 519 520 521 522
}

#if defined (HAVE_SYSCONF) && defined (_SC_OPEN_MAX)
# define getmaxfd() sysconf (_SC_OPEN_MAX)
#elif defined (HAVE_GETDTABLESIZE)
# define getmaxfd() getdtablesize ()
#else
# define getmaxfd() 64
#endif

static int
523
expand_arg (const char *cmdline, struct run_closure *rp, char **s)
524
{
525
  int rc;
526 527 528 529 530 531 532 533 534 535
  mu_vartab_t vtab;
  
  MU_DEBUG1 (rp->debug, MU_DEBUG_TRACE0, "Expanding \"%s\" => ", cmdline);
  
  mu_vartab_create (&vtab);
  mu_vartab_define_exp (vtab, "aclno", _expand_aclno, NULL, rp);
  switch (rp->sa->sa_family)
    {
    case AF_INET:
      {
536 537
	struct sockaddr_in *s_in = (struct sockaddr_in *)rp->sa;
	struct in_addr addr = s_in->sin_addr;
538 539
	char *p;
	
540 541 542
	mu_vartab_define (vtab, "family", "AF_INET", 1);
	addr.s_addr = htonl (addr.s_addr);
	mu_vartab_define (vtab, "address", inet_ntoa (addr), 0);
543
	if (mu_asprintf (&p, "%hu", ntohs (s_in->sin_port)) == 0)
Sergey Poznyakoff authored
544 545 546 547
	  {
	    mu_vartab_define (vtab, "port", p, 0);
	    free (p);
	  }
548 549 550 551 552
      }
      break;
      
    case AF_UNIX:
      {
553
	struct sockaddr_un *s_un = (struct sockaddr_un *)rp->sa;
554 555
	
	mu_vartab_define (vtab, "family", "AF_UNIX", 1);
556
	mu_vartab_define (vtab, "address", s_un->sun_path, 1);
557 558 559 560
      }
      break;
    }
  
561
  rc = mu_vartab_expand (vtab, cmdline, s);
562 563
  mu_vartab_destroy (&vtab);

564 565 566 567 568 569 570 571 572 573 574 575 576 577 578
  if (rc == 0)
    MU_DEBUG1 (rp->debug, MU_DEBUG_TRACE0, "\"%s\". ", *s);
  else
    MU_DEBUG (rp->debug, MU_DEBUG_TRACE0, "failed. ");
  return rc;
}

static int
spawn_prog (const char *cmdline, int *pstatus, struct run_closure *rp)
{
  char *s;
  pid_t pid;

  if (expand_arg (cmdline, rp, &s))
    s = strdup (cmdline);
579 580 581 582 583 584 585 586 587 588 589 590

  pid = fork ();
  if (pid == 0)
    {
      int i;
      int argc;
      char **argv;

      mu_argcv_get (s, " \t", NULL, &argc, &argv);
      for (i = getmaxfd (); i > 2; i--)
	close (i);
      execvp (argv[0], argv);
591
      exit (127);
592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644
    }

  free (s);

  if (pid == (pid_t)-1)
    {
      MU_DEBUG1 (rp->debug, MU_DEBUG_ERROR, "cannot fork: %s",
		 mu_strerror (errno));
      return errno;
    }

  if (pstatus)
    {
      int status;
      waitpid (pid, &status, 0);
      if (WIFEXITED (status))
	{
	  status = WEXITSTATUS (status);
	  MU_DEBUG1 (rp->debug, MU_DEBUG_TRACE0,
		     "Program finished with code %d.", status);
	  *pstatus = status;
	}
      else if (WIFSIGNALED (status))
	{
	  MU_DEBUG1 (rp->debug, MU_DEBUG_ERROR,
		     "Program terminated on signal %d.",
		     WTERMSIG (status));
	  return MU_ERR_PROCESS_SIGNALED;
	}
      else
	return MU_ERR_PROCESS_UNKNOWN_FAILURE;
    }
	
  return 0;
}
	    

int
_run_entry (void *item, void *data)
{
  int status = 0;
  struct _mu_acl_entry *ent = item;
  struct run_closure *rp = data;

  rp->idx++;

  if (mu_debug_check_level (rp->debug, MU_DEBUG_TRACE0))
    {
      const char *s = "undefined";
      mu_acl_action_to_string (ent->action, &s);
      __MU_DEBUG2 (rp->debug, MU_DEBUG_TRACE0, "%d:%s: ", rp->idx, s);
    }
  
645
  if (_acl_match (rp->debug, ent, rp->sa, rp->salen) == 0)
646 647 648 649 650 651 652 653 654 655 656 657 658 659 660
    {
      switch (ent->action)
	{
	case mu_acl_accept:
	  *rp->result = mu_acl_result_accept;
	  status = 1;
	  break;
      
	case mu_acl_deny:
	  *rp->result = mu_acl_result_deny;
	  status = 1;
	  break;
      
	case mu_acl_log:
	  {
661
	    char *s;
662 663
	    mu_debug_t dbg = NULL;
	    mu_diag_get_debug (&dbg);
664 665 666 667 668 669 670
	    if (ent->arg && expand_arg (ent->arg, rp, &s) == 0)
	      {
		mu_debug_printf (dbg, MU_DIAG_INFO, "%s\n", s);
		free (s);
	      }
	    else
	      {
671
		debug_sockaddr (dbg, MU_DIAG_INFO, rp->sa, rp->salen);
672 673
		mu_debug_printf (dbg, MU_DIAG_INFO, "\n");
	      }
674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710
	  }
	  break;
	  
	case mu_acl_exec:
	  spawn_prog (ent->arg, NULL, rp);
	  break;
	  
	case mu_acl_ifexec:
	  {
	    int prog_status;
	    int rc = spawn_prog (ent->arg, &prog_status, rp);
	    if (rc == 0)
	      {
		switch (prog_status)
		  {
		  case 0:
		    *rp->result = mu_acl_result_accept;
		    status = 1;
		    break;
		    
		  case 1:
		    *rp->result = mu_acl_result_deny;
		    status = 1;
		  }
	      }
	  }
	  break;
	}
    }
  
  if (mu_debug_check_level (rp->debug, MU_DEBUG_TRACE0))                     
    mu_debug_printf (rp->debug, MU_DEBUG_TRACE0, "\n");
  
  return status;
}

int
711
mu_acl_check_sockaddr (mu_acl_t acl, const struct sockaddr *sa, int salen,
712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732
		       mu_acl_result_t *pres)
{
  struct run_closure r;
  
  if (!acl)
    return EINVAL;

  r.sa = malloc (salen);
  if (!r.sa)
    return ENOMEM;
  memcpy (r.sa, sa, salen);
  if (prepare_sa (r.sa))
    {
      free (r.sa);
      return EINVAL;
    }
  r.salen = salen;
  
  if (mu_debug_check_level (acl->debug, MU_DEBUG_TRACE0))
    {
      __MU_DEBUG1 (acl->debug, MU_DEBUG_TRACE0, "%s", "Checking sockaddr ");
733
      debug_sockaddr (acl->debug, MU_DEBUG_TRACE0, r.sa, r.salen);
734 735 736 737 738 739 740 741 742 743 744 745 746
      mu_debug_printf (acl->debug, MU_DEBUG_TRACE0, "\n");
    }

  r.idx = 0;
  r.debug = acl->debug;
  r.result = pres;
  *r.result = mu_acl_result_undefined;
  mu_list_do (acl->aclist, _run_entry, &r);
  free (r.sa);
  return 0;
}
	       
int
747 748
mu_acl_check_inaddr (mu_acl_t acl, const struct in_addr *inp,
		     mu_acl_result_t *pres)
749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771
{
  struct sockaddr_in cs;
  int len = sizeof cs;

  cs.sin_family = AF_INET;
  cs.sin_addr = *inp;
  cs.sin_addr.s_addr = ntohl (cs.sin_addr.s_addr);
  return mu_acl_check_sockaddr (acl, (struct sockaddr *) &cs, len, pres);
}
  
int
mu_acl_check_ipv4 (mu_acl_t acl, unsigned int addr, mu_acl_result_t *pres)
{
  struct in_addr in;

  in.s_addr = addr;
  return mu_acl_check_inaddr (acl, &in, pres);
}

int
mu_acl_check_fd (mu_acl_t acl, int fd, mu_acl_result_t *pres)
{
  struct sockaddr_in cs;
772
  socklen_t len = sizeof cs;
773 774 775 776 777

  if (getpeername (fd, (struct sockaddr *) &cs, &len) < 0)
    {
      MU_DEBUG1 (acl->debug, MU_DEBUG_ERROR, 
		 "Cannot obtain IP address of client: %s",
778
		 mu_strerror (errno));
779 780 781 782 783 784
      return MU_ERR_FAILURE;
    }

  return mu_acl_check_sockaddr (acl, (struct sockaddr *) &cs, len, pres);
}