141edb306SCy Schubert 241edb306SCy Schubert /* 341edb306SCy Schubert * Copyright (C) 2012 by Darren Reed. 441edb306SCy Schubert * 541edb306SCy Schubert * See the IPFILTER.LICENCE file for details on licencing. 641edb306SCy Schubert * 741edb306SCy Schubert * $Id$ 841edb306SCy Schubert */ 941edb306SCy Schubert 1041edb306SCy Schubert #include "ipf.h" 1141edb306SCy Schubert 1241edb306SCy Schubert #include <sys/ioctl.h> 1341edb306SCy Schubert #include <fcntl.h> 1441edb306SCy Schubert 15efeb8bffSCy Schubert ipfunc_t nametokva(char * name,ioctlfunc_t iocfunc)16efeb8bffSCy Schubertnametokva(char *name, ioctlfunc_t iocfunc) 1741edb306SCy Schubert { 1841edb306SCy Schubert ipfunc_resolve_t res; 1941edb306SCy Schubert int fd; 2041edb306SCy Schubert 2141edb306SCy Schubert strncpy(res.ipfu_name, name, sizeof(res.ipfu_name)); 2241edb306SCy Schubert res.ipfu_addr = NULL; 2341edb306SCy Schubert fd = -1; 2441edb306SCy Schubert 2541edb306SCy Schubert if ((opts & OPT_DONTOPEN) == 0) { 2641edb306SCy Schubert fd = open(IPL_NAME, O_RDONLY); 2741edb306SCy Schubert if (fd == -1) 28*2582ae57SCy Schubert return (NULL); 2941edb306SCy Schubert } 3041edb306SCy Schubert (void) (*iocfunc)(fd, SIOCFUNCL, &res); 3141edb306SCy Schubert if (fd >= 0) 3241edb306SCy Schubert close(fd); 3341edb306SCy Schubert if (res.ipfu_addr == NULL) 3441edb306SCy Schubert res.ipfu_addr = (ipfunc_t)-1; 35*2582ae57SCy Schubert return (res.ipfu_addr); 3641edb306SCy Schubert } 37