1 /* 2 * Copyright (c) 2016, Marie Helene Kvello-Aune 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without modification, 6 * are permitted provided that the following conditions are met: 7 * 8 * 1. Redistributions of source code must retain the above copyright notice, 9 * thislist of conditions and the following disclaimer. 10 * 11 * 2. Redistributions in binary form must reproduce the above copyright notice, 12 * this list of conditions and the following disclaimer in the documentation and/or 13 * other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 17 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 21 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 22 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 23 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 * 26 * $FreeBSD$ 27 */ 28 29 #pragma once 30 31 #include "libifconfig.h" 32 33 34 struct errstate { 35 /** 36 * Type of error. 37 */ 38 ifconfig_errtype errtype; 39 40 /** 41 * The error occured in this ioctl() request. 42 * Populated if errtype = IOCTL 43 */ 44 unsigned long ioctl_request; 45 46 /** 47 * The value of the global errno variable when the error occured. 48 */ 49 int errcode; 50 }; 51 52 struct ifconfig_handle { 53 struct errstate error; 54 int sockets[AF_MAX + 1]; 55 }; 56 57 /** 58 * Retrieves socket for address family <paramref name="addressfamily"> from 59 * cache, or creates it if it doesn't already exist. 60 * @param addressfamily The address family of the socket to retrieve 61 * @param s The retrieved socket. 62 * @return 0 on success, -1 on failure. 63 * {@example 64 * This example shows how to retrieve a socket from the cache. 65 * {@code 66 * static void myfunc() \{ 67 * int s; 68 * if (ifconfig_socket(AF_LOCAL, &s) != 0) \{ 69 * // Handle error state here 70 * \} 71 * // user code here 72 * \} 73 * } 74 * } 75 */ 76 int ifconfig_socket(ifconfig_handle_t *h, const int addressfamily, int *s); 77 78 /** Function used by other wrapper functions to populate _errstate when appropriate.*/ 79 int ifconfig_ioctlwrap_ret(ifconfig_handle_t *h, unsigned long request, 80 int rcode); 81 82 /** Function to wrap ioctl() and automatically populate ifconfig_errstate when appropriate.*/ 83 int ifconfig_ioctlwrap(ifconfig_handle_t *h, const int addressfamily, 84 unsigned long request, struct ifreq *ifr); 85