The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/i386/ibcs2/ibcs2_socksys.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * Copyright (c) 1994, 1995 Scott Bartram
    3  * Copyright (c) 1994 Arne H Juul
    4  * All rights reserved.
    5  *
    6  * Redistribution and use in source and binary forms, with or without
    7  * modification, are permitted provided that the following conditions
    8  * are met:
    9  * 1. Redistributions of source code must retain the above copyright
   10  *    notice, this list of conditions and the following disclaimer.
   11  * 2. The name of the author may not be used to endorse or promote products
   12  *    derived from this software without specific prior written permission
   13  *
   14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
   15  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   16  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
   17  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
   18  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
   19  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
   20  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
   21  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
   23  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   24  */
   25 
   26 #include <sys/cdefs.h>
   27 __FBSDID("$FreeBSD: releng/9.0/sys/i386/ibcs2/ibcs2_socksys.c 225617 2011-09-16 13:58:51Z kmacy $");
   28 
   29 #include <sys/param.h>
   30 #include <sys/systm.h>
   31 #include <sys/sysproto.h>
   32 #include <sys/jail.h>
   33 #include <sys/kernel.h>
   34 #include <sys/sysctl.h>
   35 
   36 #include <i386/ibcs2/ibcs2_socksys.h>
   37 #include <i386/ibcs2/ibcs2_util.h>
   38 
   39 /* Local structures */
   40 struct getipdomainname_args {
   41         char    *ipdomainname;
   42         int     len;
   43 };
   44 
   45 struct setipdomainname_args {
   46         char    *ipdomainname;
   47         int     len;
   48 };
   49 
   50 /* Local prototypes */
   51 static int ibcs2_getipdomainname(struct thread *,
   52                                       struct getipdomainname_args *);
   53 static int ibcs2_setipdomainname(struct thread *,
   54                                       struct setipdomainname_args *);
   55 
   56 /*
   57  * iBCS2 socksys calls.
   58  */
   59 
   60 int
   61 ibcs2_socksys(td, uap)
   62         register struct thread *td;
   63         register struct ibcs2_socksys_args *uap;
   64 {
   65         int error;
   66         int realargs[7]; /* 1 for command, 6 for recvfrom */
   67         void *passargs;
   68 
   69         /*
   70          * SOCKET should only be legal on /dev/socksys.
   71          * GETIPDOMAINNAME should only be legal on /dev/socksys ?
   72          * The others are (and should be) only legal on sockets.
   73          */
   74 
   75         if ((error = copyin(uap->argsp, (caddr_t)realargs, sizeof(realargs))) != 0)
   76                 return error;
   77         DPRINTF(("ibcs2_socksys: %08x %08x %08x %08x %08x %08x %08x\n",
   78                realargs[0], realargs[1], realargs[2], realargs[3], 
   79                realargs[4], realargs[5], realargs[6]));
   80 
   81         passargs = (void *)(realargs + 1);
   82         switch (realargs[0]) {
   83         case SOCKSYS_ACCEPT:
   84                 return sys_accept(td, passargs);
   85         case SOCKSYS_BIND:
   86                 return sys_bind(td, passargs);
   87         case SOCKSYS_CONNECT:
   88                 return sys_connect(td, passargs);
   89         case SOCKSYS_GETPEERNAME:
   90                 return sys_getpeername(td, passargs);
   91         case SOCKSYS_GETSOCKNAME:
   92                 return sys_getsockname(td, passargs);
   93         case SOCKSYS_GETSOCKOPT:
   94                 return sys_getsockopt(td, passargs);
   95         case SOCKSYS_LISTEN:
   96                 return sys_listen(td, passargs);
   97         case SOCKSYS_RECV:
   98                 realargs[5] = realargs[6] = 0;
   99                 /* FALLTHROUGH */
  100         case SOCKSYS_RECVFROM:
  101                 return sys_recvfrom(td, passargs);
  102         case SOCKSYS_SEND:
  103                 realargs[5] = realargs[6] = 0;
  104                 /* FALLTHROUGH */
  105         case SOCKSYS_SENDTO:
  106                 return sys_sendto(td, passargs);
  107         case SOCKSYS_SETSOCKOPT:
  108                 return sys_setsockopt(td, passargs);
  109         case SOCKSYS_SHUTDOWN:
  110                 return sys_shutdown(td, passargs);
  111         case SOCKSYS_SOCKET:
  112                 return sys_socket(td, passargs);
  113         case SOCKSYS_SELECT:
  114                 return sys_select(td, passargs);
  115         case SOCKSYS_GETIPDOMAIN:
  116                 return ibcs2_getipdomainname(td, passargs);
  117         case SOCKSYS_SETIPDOMAIN:
  118                 return ibcs2_setipdomainname(td, passargs);
  119         case SOCKSYS_ADJTIME:
  120                 return sys_adjtime(td, passargs);
  121         case SOCKSYS_SETREUID:
  122                 return sys_setreuid(td, passargs);
  123         case SOCKSYS_SETREGID:
  124                 return sys_setregid(td, passargs);
  125         case SOCKSYS_GETTIME:
  126                 return sys_gettimeofday(td, passargs);
  127         case SOCKSYS_SETTIME:
  128                 return sys_settimeofday(td, passargs);
  129         case SOCKSYS_GETITIMER:
  130                 return sys_getitimer(td, passargs);
  131         case SOCKSYS_SETITIMER:
  132                 return sys_setitimer(td, passargs);
  133 
  134         default:
  135                 printf("socksys unknown %08x %08x %08x %08x %08x %08x %08x\n",
  136                        realargs[0], realargs[1], realargs[2], realargs[3], 
  137                        realargs[4], realargs[5], realargs[6]);
  138                 return EINVAL;
  139         }
  140         /* NOTREACHED */
  141 }
  142 
  143 /* ARGSUSED */
  144 static int
  145 ibcs2_getipdomainname(td, uap)
  146         struct thread *td;
  147         struct getipdomainname_args *uap;
  148 {
  149         char hname[MAXHOSTNAMELEN], *dptr;
  150         int len;
  151 
  152         /* Get the domain name. */
  153         getcredhostname(td->td_ucred, hname, sizeof(hname));
  154 
  155         dptr = index(hname, '.');
  156         if ( dptr )
  157                 dptr++;
  158         else
  159                 /* Make it effectively an empty string */
  160                 dptr = hname + strlen(hname);
  161         
  162         len = strlen(dptr) + 1;
  163         if ((u_int)uap->len > len + 1)
  164                 uap->len = len + 1;
  165         return (copyout((caddr_t)dptr, (caddr_t)uap->ipdomainname, uap->len));
  166 }
  167 
  168 /* ARGSUSED */
  169 static int
  170 ibcs2_setipdomainname(td, uap)
  171         struct thread *td;
  172         struct setipdomainname_args *uap;
  173 {
  174         char hname[MAXHOSTNAMELEN], *ptr;
  175         int error, sctl[2], hlen;
  176 
  177         /* Get the domain name */
  178         getcredhostname(td->td_ucred, hname, sizeof(hname));
  179 
  180         /* W/out a hostname a domain-name is nonsense */
  181         if ( strlen(hname) == 0 )
  182                 return EINVAL;
  183 
  184         /* Get the host's unqualified name (strip off the domain) */
  185         ptr = index(hname, '.');
  186         if ( ptr != NULL ) {
  187                 ptr++;
  188                 *ptr = '\0';
  189         } else {
  190                 if (strlcat(hname, ".", sizeof(hname)) >= sizeof(hname))
  191                         return (EINVAL);
  192         }
  193 
  194         /* Set ptr to the end of the string so we can append to it */
  195         hlen = strlen(hname);
  196         ptr = hname + hlen;
  197         if ((u_int)uap->len > (sizeof (hname) - hlen - 1))
  198                 return EINVAL;
  199 
  200         /* Append the ipdomain to the end */
  201         error = copyinstr((caddr_t)uap->ipdomainname, ptr, uap->len, NULL);
  202         if (error)
  203                 return (error);
  204 
  205         /* 'sethostname' with the new information */
  206         sctl[0] = CTL_KERN;
  207         sctl[1] = KERN_HOSTNAME;
  208         hlen = strlen(hname) + 1;
  209         return (kernel_sysctl(td, sctl, 2, 0, 0, hname, hlen, 0, 0));
  210 }

Cache object: d089277eeabfbc784c9bf8251806e386


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.