sparcfix.c
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:3k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /*
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  * 
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  * 
  12.  * The Original Code is a program to modify v8+vis objects for linking.
  13.  *
  14.  * The Initial Developer of the Original Code is Sun Microsystems Inc.
  15.  * Portions created by Sun Microsystems Inc. are 
  16.  * Copyright (C) 1999-2000 Sun Microsystems Inc. All Rights Reserved.
  17.  * 
  18.  * Contributor(s):
  19.  * Netscape Communications Corporation
  20.  * 
  21.  * Alternatively, the contents of this file may be used under the
  22.  * terms of the GNU General Public License Version 2 or later (the
  23.  * "GPL"), in which case the provisions of the GPL are applicable 
  24.  * instead of those above. If you wish to allow use of your 
  25.  * version of this file only under the terms of the GPL and not to
  26.  * allow others to use your version of this file under the MPL,
  27.  * indicate your decision by deleting the provisions above and
  28.  * replace them with the notice and other provisions required by
  29.  * the GPL.  If you do not delete the provisions above, a recipient
  30.  * may use your version of this file under either the MPL or the
  31.  * GPL.
  32.  *  $Id: sparcfix.c,v 1.1 2000/09/29 23:39:30 nelsonb%netscape.com Exp $
  33.  */
  34. #include <sys/types.h>
  35. #include <sys/stat.h>
  36. #include <fcntl.h>
  37. #if defined(SOLARIS2_6) || defined(SOLARIS2_7) || defined(SOLARIS2_8)
  38. #define NEW_SYSV_SPARC 1
  39. #include <gelf.h>
  40. #endif
  41. #include <libelf.h>
  42. #include <sys/elf_SPARC.h>
  43. int
  44. main(int argc, char *argv[])
  45. {
  46. Elf *     elf;
  47. off_t     size;
  48. int       fd;
  49. int       count;
  50. #if defined(NEW_SYSV_SPARC)
  51. GElf_Ehdr  hdr;
  52. GElf_Ehdr *ehdr = &hdr;
  53. #else
  54. Elf32_Ehdr *ehdr;
  55. #endif
  56. elf_version(EV_CURRENT);
  57. fd = open(argv[1], O_RDWR);
  58. if (fd < 0)
  59.     goto loser;
  60. elf = elf_begin(fd, ELF_C_RDWR, (Elf *)0);
  61. if (!elf)
  62.     goto loser;
  63. #if defined(NEW_SYSV_SPARC)
  64. gelf_getehdr(elf, ehdr);
  65. #else
  66.         ehdr = elf32_getehdr(elf);
  67. if (!ehdr)
  68.     goto loser;
  69. #endif
  70. if (ehdr->e_machine == EM_SPARC32PLUS) {
  71.     ehdr->e_machine = EM_SPARC;
  72.     ehdr->e_flags &= ~(EF_SPARC_32PLUS | EF_SPARC_SUN_US1);
  73. #if defined(NEW_SYSV_SPARC)
  74.     count = gelf_update_ehdr(elf, ehdr);
  75.     if (count < 0)
  76. goto loser;
  77. #endif
  78.     size = elf_update(elf, ELF_C_WRITE);
  79.     if (size < 0)
  80. goto loser;
  81. }
  82. do {
  83.     count = elf_end(elf);
  84. } while (count > 0);
  85. return count;
  86. loser:
  87. return 1;
  88. }