Xtransutil.c
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:15k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. Copyright 1993, 1994, 1998  The Open Group
  3. Permission to use, copy, modify, distribute, and sell this software and its
  4. documentation for any purpose is hereby granted without fee, provided that
  5. the above copyright notice appear in all copies and that both that
  6. copyright notice and this permission notice appear in supporting
  7. documentation.
  8. The above copyright notice and this permission notice shall be included
  9. in all copies or substantial portions of the Software.
  10. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  11. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  12. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  13. IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
  14. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  15. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  16. OTHER DEALINGS IN THE SOFTWARE.
  17. Except as contained in this notice, the name of The Open Group shall
  18. not be used in advertising or otherwise to promote the sale, use or
  19. other dealings in this Software without prior written authorization
  20. from The Open Group.
  21.  * Copyright 1993, 1994 NCR Corporation - Dayton, Ohio, USA
  22.  *
  23.  * All Rights Reserved
  24.  *
  25.  * Permission to use, copy, modify, and distribute this software and its
  26.  * documentation for any purpose and without fee is hereby granted, provided
  27.  * that the above copyright notice appear in all copies and that both that
  28.  * copyright notice and this permission notice appear in supporting
  29.  * documentation, and that the name NCR not be used in advertising
  30.  * or publicity pertaining to distribution of the software without specific,
  31.  * written prior permission.  NCR makes no representations about the
  32.  * suitability of this software for any purpose.  It is provided "as is"
  33.  * without express or implied warranty.
  34.  *
  35.  * NCRS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  36.  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
  37.  * NO EVENT SHALL NCR BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  38.  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
  39.  * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
  40.  * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  41.  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  42.  */
  43. /*
  44.  * These are some utility functions created for convenience or to provide
  45.  * an interface that is similar to an existing interface. These are built
  46.  * only using the Transport Independant API, and have no knowledge of
  47.  * the internal implementation.
  48.  */
  49. #ifdef XTHREADS
  50. #include <X11/Xthreads.h>
  51. #endif
  52. #ifdef WIN32
  53. #include <X11/Xlibint.h>
  54. #include <X11/Xwinsock.h>
  55. #endif
  56. #ifdef X11_t
  57. /*
  58.  * These values come from X.h and Xauth.h, and MUST match them. Some
  59.  * of these values are also defined by the ChangeHost protocol message.
  60.  */
  61. #define FamilyInternet 0 /* IPv4 */
  62. #define FamilyDECnet 1
  63. #define FamilyChaos 2
  64. #define FamilyInternet6 6
  65. #define FamilyAmoeba 33
  66. #define FamilyLocalHost 252
  67. #define FamilyKrb5Principal 253
  68. #define FamilyNetname 254
  69. #define FamilyLocal 256
  70. #define FamilyWild 65535
  71. /*
  72.  * TRANS(ConvertAddress) converts a sockaddr based address to an
  73.  * X authorization based address. Some of this is defined as part of
  74.  * the ChangeHost protocol. The rest is just done in a consistent manner.
  75.  */
  76. int
  77. TRANS(ConvertAddress)(int *familyp, int *addrlenp, Xtransaddr **addrp)
  78. {
  79.     PRMSG(2,"ConvertAddress(%d,%d,%x)n",*familyp,*addrlenp,*addrp);
  80.     switch( *familyp )
  81.     {
  82. #if defined(TCPCONN) || defined(STREAMSCONN)
  83.     case AF_INET:
  84.     {
  85. /*
  86.  * Check for the BSD hack localhost address 127.0.0.1.
  87.  * In this case, we are really FamilyLocal.
  88.  */
  89. struct sockaddr_in saddr;
  90. int len = sizeof(saddr.sin_addr.s_addr);
  91. char *cp = (char *) &saddr.sin_addr.s_addr;
  92. memcpy (&saddr, *addrp, sizeof (struct sockaddr_in));
  93. if ((len == 4) && (cp[0] == 127) && (cp[1] == 0) &&
  94.     (cp[2] == 0) && (cp[3] == 1))
  95. {
  96.     *familyp=FamilyLocal;
  97. }
  98. else
  99. {
  100.     *familyp=FamilyInternet;
  101.     *addrlenp=len;
  102.     memcpy(*addrp,&saddr.sin_addr,len);
  103. }
  104. break;
  105.     }
  106. #if defined(IPv6) && defined(AF_INET6)
  107.     case AF_INET6:
  108.     {
  109. struct sockaddr_in6 saddr6;
  110. memcpy (&saddr6, *addrp, sizeof (struct sockaddr_in6));
  111. if (IN6_IS_ADDR_LOOPBACK(&saddr6.sin6_addr))
  112. {
  113.     *familyp=FamilyLocal;
  114. }
  115. else if (IN6_IS_ADDR_V4MAPPED(&(saddr6.sin6_addr))) {
  116.     char *cp = (char *) &saddr6.sin6_addr.s6_addr[12];
  117.     if ((cp[0] == 127) && (cp[1] == 0) &&
  118.       (cp[2] == 0) && (cp[3] == 1))
  119.     {
  120. *familyp=FamilyLocal;
  121.     }
  122.     else 
  123.     {
  124. *familyp=FamilyInternet;
  125. *addrlenp = sizeof (struct in_addr);
  126. memcpy(*addrp,cp,*addrlenp);
  127.     }
  128. }
  129. else
  130. {
  131.     *familyp=FamilyInternet6;
  132.     *addrlenp=sizeof(saddr6.sin6_addr);
  133.     memcpy(*addrp,&saddr6.sin6_addr,sizeof(saddr6.sin6_addr));
  134. }
  135. break;
  136.     }
  137. #endif /* IPv6 */
  138. #endif /* defined(TCPCONN) || defined(STREAMSCONN) */
  139. #if defined(UNIXCONN) || defined(LOCALCONN) 
  140.     case AF_UNIX:
  141.     {
  142. *familyp=FamilyLocal;
  143. break;
  144.     }
  145. #endif /* defined(UNIXCONN) || defined(LOCALCONN) */
  146. #if (defined(__SCO__) || defined(__UNIXWARE__)) && defined(LOCALCONN)
  147.     case 0:
  148.     {
  149. *familyp=FamilyLocal;
  150. break;
  151.     }
  152. #endif
  153.     default:
  154. PRMSG(1,"ConvertAddress: Unknown family type %dn",
  155.       *familyp, 0,0 );
  156. return -1;
  157.     }
  158.     if (*familyp == FamilyLocal)
  159.     {
  160. /*
  161.  * In the case of a local connection, we need to get the
  162.  * host name for authentication.
  163.  */
  164. char hostnamebuf[256];
  165. int len = TRANS(GetHostname) (hostnamebuf, sizeof hostnamebuf);
  166. if (len > 0) {
  167.     if (*addrp && *addrlenp < (len + 1))
  168.     {
  169. xfree ((char *) *addrp);
  170. *addrp = NULL;
  171.     }
  172.     if (!*addrp)
  173. *addrp = (Xtransaddr *) xalloc (len + 1);
  174.     if (*addrp) {
  175. strcpy ((char *) *addrp, hostnamebuf);
  176. *addrlenp = len;
  177.     } else {
  178. *addrlenp = 0;
  179.     }
  180. }
  181. else
  182. {
  183.     if (*addrp)
  184. xfree ((char *) *addrp);
  185.     *addrp = NULL;
  186.     *addrlenp = 0;
  187. }
  188.     }
  189.     return 0;
  190. }
  191. #endif /* X11_t */
  192. #ifdef ICE_t
  193. #include <signal.h>
  194. char *
  195. TRANS(GetMyNetworkId) (XtransConnInfo ciptr)
  196. {
  197.     int family = ciptr->family;
  198.     char  *addr = ciptr->addr;
  199.     char hostnamebuf[256];
  200.     char  *networkId = NULL;
  201.     char *transName = ciptr->transptr->TransName;
  202.     if (gethostname (hostnamebuf, sizeof (hostnamebuf)) < 0)
  203.     {
  204. return (NULL);
  205.     }
  206.     switch (family)
  207.     {
  208. #if defined(UNIXCONN) || defined(STREAMSCONN) || defined(LOCALCONN) 
  209.     case AF_UNIX:
  210.     {
  211. struct sockaddr_un *saddr = (struct sockaddr_un *) addr;
  212. networkId = (char *) xalloc (3 + strlen (transName) +
  213.     strlen (hostnamebuf) + strlen (saddr->sun_path));
  214. sprintf (networkId, "%s/%s:%s", transName,
  215.     hostnamebuf, saddr->sun_path);
  216. break;
  217.     }
  218. #endif /* defined(UNIXCONN) || defined(STREAMSCONN) || defined(LOCALCONN) */
  219. #if defined(TCPCONN) || defined(STREAMSCONN)
  220.     case AF_INET:
  221. #if defined(IPv6) && defined(AF_INET6)
  222.     case AF_INET6:
  223. #endif
  224.     {
  225. struct sockaddr_in *saddr = (struct sockaddr_in *) addr;
  226. #if defined(IPv6) && defined(AF_INET6)
  227. struct sockaddr_in6 *saddr6 = (struct sockaddr_in6 *) addr;
  228. #endif
  229. int portnum;
  230. char portnumbuf[10];
  231. #if defined(IPv6) && defined(AF_INET6)
  232. if (family == AF_INET6)
  233.     portnum = ntohs (saddr6->sin6_port);
  234. else
  235. #endif
  236.     portnum = ntohs (saddr->sin_port);
  237. snprintf (portnumbuf, sizeof(portnumbuf), "%d", portnum);
  238. networkId = (char *) xalloc (3 + strlen (transName) +
  239.     strlen (hostnamebuf) + strlen (portnumbuf));
  240. sprintf (networkId, "%s/%s:%s", transName, hostnamebuf, portnumbuf);
  241. break;
  242.     }
  243. #endif /* defined(TCPCONN) || defined(STREAMSCONN) */
  244.     default:
  245. break;
  246.     }
  247.     return (networkId);
  248. }
  249. #include <setjmp.h>
  250. static jmp_buf env;
  251. #ifdef SIGALRM
  252. static volatile int nameserver_timedout = 0;
  253. static
  254. #ifdef RETSIGTYPE /* set by autoconf AC_TYPE_SIGNAL */
  255. RETSIGTYPE
  256. #else /* Imake */
  257. #ifdef SIGNALRETURNSINT
  258. int
  259. #else
  260. void
  261. #endif
  262. #endif
  263. nameserver_lost(int sig)
  264. {
  265.   nameserver_timedout = 1;
  266.   longjmp (env, -1);
  267.   /* NOTREACHED */
  268. #ifdef SIGNALRETURNSINT
  269.   return -1; /* for picky compilers */
  270. #endif
  271. }
  272. #endif /* SIGALARM */
  273. char *
  274. TRANS(GetPeerNetworkId) (XtransConnInfo ciptr)
  275. {
  276.     int family = ciptr->family;
  277.     char *peer_addr = ciptr->peeraddr;
  278.     char *hostname;
  279.     char addrbuf[256];
  280.     const char *addr = NULL;
  281.     switch (family)
  282.     {
  283.     case AF_UNSPEC:
  284. #if defined(UNIXCONN) || defined(STREAMSCONN) || defined(LOCALCONN) 
  285.     case AF_UNIX:
  286.     {
  287. if (gethostname (addrbuf, sizeof (addrbuf)) == 0)
  288.     addr = addrbuf;
  289. break;
  290.     }
  291. #endif /* defined(UNIXCONN) || defined(STREAMSCONN) || defined(LOCALCONN) */
  292. #if defined(TCPCONN) || defined(STREAMSCONN)
  293.     case AF_INET:
  294. #if defined(IPv6) && defined(AF_INET6)
  295.     case AF_INET6:
  296. #endif
  297.     {
  298. struct sockaddr_in *saddr = (struct sockaddr_in *) peer_addr;
  299. #if defined(IPv6) && defined(AF_INET6)
  300. struct sockaddr_in6 *saddr6 = (struct sockaddr_in6 *) peer_addr;
  301. #endif
  302. char *address;
  303. int addresslen;
  304. #ifdef XTHREADS_NEEDS_BYNAMEPARAMS
  305. _Xgethostbynameparams hparams;
  306. #endif
  307. struct hostent * volatile hostp = NULL;
  308. #if defined(IPv6) && defined(AF_INET6)
  309. if (family == AF_INET6)
  310. {
  311.     address = (char *) &saddr6->sin6_addr;
  312.     addresslen = sizeof (saddr6->sin6_addr);
  313. }
  314. else
  315. #endif
  316. {
  317.     address = (char *) &saddr->sin_addr;
  318.     addresslen = sizeof (saddr->sin_addr);
  319. }
  320. #ifdef SIGALRM
  321. /*
  322.  * gethostbyaddr can take a LONG time if the host does not exist.
  323.  * Assume that if it does not respond in NAMESERVER_TIMEOUT seconds
  324.  * that something is wrong and do not make the user wait.
  325.  * gethostbyaddr will continue after a signal, so we have to
  326.  * jump out of it. 
  327.  */
  328. nameserver_timedout = 0;
  329. signal (SIGALRM, nameserver_lost);
  330. alarm (4);
  331. if (setjmp(env) == 0) {
  332. #endif
  333.     hostp = _XGethostbyaddr (address, addresslen, family, hparams);
  334. #ifdef SIGALRM
  335. }
  336. alarm (0);
  337. #endif
  338. if (hostp != NULL)
  339.   addr = hostp->h_name;
  340. else
  341. #if defined(IPv6) && defined(AF_INET6)
  342.   addr = inet_ntop (family, address, addrbuf, sizeof (addrbuf));
  343. #else
  344.   addr = inet_ntoa (saddr->sin_addr);
  345. #endif
  346. break;
  347.     }
  348. #endif /* defined(TCPCONN) || defined(STREAMSCONN) */
  349.     default:
  350. return (NULL);
  351.     }
  352.     hostname = (char *) xalloc (
  353. strlen (ciptr->transptr->TransName) + strlen (addr) + 2);
  354.     strcpy (hostname, ciptr->transptr->TransName);
  355.     strcat (hostname, "/");
  356.     if (addr)
  357. strcat (hostname, addr);
  358.     return (hostname);
  359. }
  360. #endif /* ICE_t */
  361. #if defined(WIN32) && defined(TCPCONN) 
  362. int
  363. TRANS(WSAStartup) (void)
  364. {
  365.     static WSADATA wsadata;
  366.     PRMSG (2,"WSAStartup()n", 0, 0, 0);
  367.     if (!wsadata.wVersion && WSAStartup(MAKEWORD(2,2), &wsadata))
  368.         return 1;
  369.     return 0;
  370. }
  371. #endif
  372. static int
  373. is_numeric (char *str)
  374. {
  375.     int i;
  376.     for (i = 0; i < (int) strlen (str); i++)
  377. if (!isdigit (str[i]))
  378.     return (0);
  379.     return (1);
  380. }
  381. #ifdef TRANS_SERVER
  382. #include <sys/types.h>
  383. #include <sys/stat.h>
  384. #include <errno.h>
  385. #if !defined(S_IFLNK) && !defined(S_ISLNK)
  386. #undef lstat
  387. #define lstat(a,b) stat(a,b)
  388. #endif
  389. #define FAIL_IF_NOMODE  1
  390. #define FAIL_IF_NOT_ROOT 2
  391. #define WARN_NO_ACCESS 4
  392. /*
  393.  * We make the assumption that when the 'sticky' (t) bit is requested
  394.  * it's not save if the directory has non-root ownership or the sticky
  395.  * bit cannot be set and fail.
  396.  */
  397. static int 
  398. trans_mkdir(char *path, int mode)
  399. {
  400.     struct stat buf;
  401.     if (lstat(path, &buf) != 0) {
  402. if (errno != ENOENT) {
  403.     PRMSG(1, "mkdir: ERROR: (l)stat failed for %s (%d)n",
  404.   path, errno, 0);
  405.     return -1;
  406. }
  407. /* Dir doesn't exist. Try to create it */
  408. #if !defined(WIN32) && !defined(__CYGWIN__)
  409. /*
  410.  * 'sticky' bit requested: assume application makes
  411.  * certain security implications. If effective user ID
  412.  * is != 0: fail as we may not be able to meet them.
  413.  */
  414. if (geteuid() != 0) {
  415.     if (mode & 01000) {
  416. PRMSG(1, "mkdir: ERROR: euid != 0,"
  417.       "directory %s will not be created.n",
  418.       path, 0, 0);     
  419. #ifdef FAIL_HARD
  420. return -1;
  421. #endif
  422.     } else {
  423. PRMSG(1, "mkdir: Cannot create %s with root ownershipn",
  424.       path, 0, 0);
  425.     }
  426. }
  427. #endif
  428. #ifndef WIN32
  429. if (mkdir(path, mode) == 0) {
  430.     if (chmod(path, mode)) {
  431. PRMSG(1, "mkdir: ERROR: Mode of %s should be set to %04on",
  432.       path, mode, 0);
  433. #ifdef FAIL_HARD
  434. return -1;
  435. #endif
  436.     }
  437. #else
  438. if (mkdir(path) == 0) {
  439. #endif
  440. } else {
  441.     PRMSG(1, "mkdir: ERROR: Cannot create %sn",
  442.   path, 0, 0);
  443.     return -1;
  444. }
  445. return 0;
  446.     } else {
  447. if (S_ISDIR(buf.st_mode)) {
  448.     int updateOwner = 0;
  449.     int updateMode = 0;
  450.     int updatedOwner = 0;
  451.     int updatedMode = 0;
  452.     int status = 0;
  453.     /* Check if the directory's ownership is OK. */
  454.     if (buf.st_uid != 0)
  455. updateOwner = 1;
  456.     /*
  457.      * Check if the directory's mode is OK.  An exact match isn't
  458.      * required, just a mode that isn't more permissive than the
  459.      * one requested.
  460.      */
  461.     if ((~mode) & 0077 & buf.st_mode)
  462. updateMode = 1;
  463.     
  464.     /*
  465.      * If the directory is not writeable not everybody may
  466.      * be able to create sockets. Therefore warn if mode
  467.      * cannot be fixed.
  468.      */
  469.     if ((~buf.st_mode) & 0022 & mode) {
  470. updateMode = 1;
  471. status |= WARN_NO_ACCESS;
  472.     }
  473.     
  474.     /*
  475.      * If 'sticky' bit is requested fail if owner isn't root
  476.      * as we assume the caller makes certain security implications
  477.      */
  478.     if (mode & 01000) {
  479. status |= FAIL_IF_NOT_ROOT;
  480. if (!(buf.st_mode & 01000)) {
  481.     status |= FAIL_IF_NOMODE;
  482.     updateMode = 1;
  483. }
  484.     }
  485.     
  486. #ifdef HAS_FCHOWN
  487.     /*
  488.      * If fchown(2) and fchmod(2) are available, try to correct the
  489.      * directory's owner and mode.  Otherwise it isn't safe to attempt
  490.      * to do this.
  491.      */
  492.     if (updateMode || updateOwner) {
  493. int fd = -1;
  494. struct stat fbuf;
  495. if ((fd = open(path, O_RDONLY)) != -1) {
  496.     if (fstat(fd, &fbuf) == -1) {
  497. PRMSG(1, "mkdir: ERROR: fstat failed for %s (%d)n",
  498.       path, errno, 0);
  499. return -1;
  500.     }
  501.     /*
  502.      * Verify that we've opened the same directory as was
  503.      * checked above.
  504.      */
  505.     if (!S_ISDIR(fbuf.st_mode) ||
  506. buf.st_dev != fbuf.st_dev ||
  507. buf.st_ino != fbuf.st_ino) {
  508. PRMSG(1, "mkdir: ERROR: inode for %s changedn",
  509.       path, 0, 0);
  510. return -1;
  511.     }
  512.     if (updateOwner && fchown(fd, 0, 0) == 0)
  513. updatedOwner = 1;
  514.     if (updateMode && fchmod(fd, mode) == 0)
  515. updatedMode = 1;
  516.     close(fd);
  517. }
  518.     }
  519. #endif
  520.     
  521.     if (updateOwner && !updatedOwner) {
  522. #ifdef FAIL_HARD
  523. if (status & FAIL_IF_NOT_ROOT) {
  524.     PRMSG(1, "mkdir: ERROR: Owner of %s must be set to rootn",
  525.   path, 0, 0);
  526.     return -1;
  527. }
  528. #endif
  529. #if !defined(__APPLE_CC__) && !defined(__CYGWIN__)
  530.    PRMSG(1, "mkdir: Owner of %s should be set to rootn",
  531.       path, 0, 0);
  532. #endif
  533.     }
  534.     
  535.     if (updateMode && !updatedMode) {
  536. #ifdef FAIL_HARD
  537. if (status & FAIL_IF_NOMODE) {
  538.     PRMSG(1, "mkdir: ERROR: Mode of %s must be set to %04on",
  539.   path, mode, 0);
  540.     return -1;
  541. }
  542. #endif
  543.    PRMSG(1, "mkdir: Mode of %s should be set to %04on",
  544.       path, mode, 0);
  545. if (status & WARN_NO_ACCESS) {
  546.     PRMSG(1, "mkdir: this may cause subsequent errorsn",
  547.   0, 0, 0);
  548. }
  549.     }
  550.     return 0;
  551. }
  552. return -1;
  553.     }
  554.     /* In all other cases, fail */
  555.     return -1;
  556. }
  557. #endif /* TRANS_SERVER */