]> cygwin.com Git - cygwin-apps/setup.git/blame - autoload.c
* Makefile.am: Treat libgetopt++ as full-fledged SUBDIRS.
[cygwin-apps/setup.git] / autoload.c
CommitLineData
a99bdfd8
DD
1/*
2 * Copyright (c) 2000, Red Hat, Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * A copy of the GNU General Public License can be found at
10 * http://www.gnu.org/
11 *
12 * Written by DJ Delorie <dj@cygnus.com>
13 *
14 */
b24c88b3
RC
15#if 0
16static const char *cvsid = "\n%%% $Id$\n";
17#endif
8507f105 18
5072c0bb
BD
19#define WIN32_LEAN_AND_MEAN
20#include <windows.h>
a99bdfd8
DD
21
22typedef struct {
d3c2a043 23 const char *name;
a99bdfd8
DD
24 HINSTANCE handle;
25} DllInfo;
26
d3c2a043 27#define DLL(n) __attribute__ ((used)) static DllInfo n ## _info __asm__ (#n "_info") = { #n, 0}
a99bdfd8
DD
28
29#define Auto(dll, func, size) \
d9129990 30 __asm__ ("\t.section .autoload_text,\"wx\""); \
a99bdfd8
DD
31 __asm__ ("\t.global\t_" #func "@" #size); \
32 __asm__ ("_" #func "@" #size ":"); \
33 __asm__ ("\tcall\tautoload_common"); \
34 __asm__ ("\t.long\t" #dll "_info"); \
35 __asm__ ("\t.ascii\t\"" #func "\\0\"")
36
37DLL (wininet);
38
4a83b7b0 39Auto (wininet, InternetAttemptConnect, 4);
a99bdfd8
DD
40Auto (wininet, InternetCloseHandle, 4);
41Auto (wininet, InternetGetLastResponseInfoA, 12);
42Auto (wininet, InternetOpenA, 20);
43Auto (wininet, InternetOpenUrlA, 24);
44Auto (wininet, InternetReadFile, 16);
45Auto (wininet, InternetSetOptionA, 16);
4a83b7b0
DD
46Auto (wininet, InternetQueryOptionA, 16);
47Auto (wininet, HttpQueryInfoA, 20);
48Auto (wininet, HttpSendRequestA, 20);
a99bdfd8 49
acbae401
CV
50DLL (advapi32);
51
52Auto (advapi32, AddAccessAllowedAce, 16);
53Auto (advapi32, AllocateAndInitializeSid, 44);
54Auto (advapi32, FreeSid, 4);
55Auto (advapi32, InitializeAcl, 12);
56Auto (advapi32, OpenProcessToken, 12);
57Auto (advapi32, SetTokenInformation, 16);
f9e903a3
RC
58Auto (advapi32, OpenSCManagerA, 16);
59Auto (advapi32, CloseServiceHandle, 4);
60Auto (advapi32, OpenServiceA, 16);
61Auto (advapi32, QueryServiceStatus, 8);
62Auto (advapi32, StartServiceA, 16);
63
6dcfeb7d
CV
64DLL (ntdll);
65
66Auto (ntdll, NtCreateFile, 44);
67Auto (ntdll, NtOpenFile, 24);
68Auto (ntdll, NtClose, 4);
69Auto (ntdll, NtQueryAttributesFile, 8);
70Auto (ntdll, NtQueryInformationFile, 20);
71Auto (ntdll, NtSetInformationFile, 20);
72Auto (ntdll, RtlInitUnicodeString, 8);
73Auto (ntdll, RtlNtStatusToDosError, 4);
acbae401 74
a99bdfd8
DD
75typedef struct {
76 DllInfo *dll;
77 char name[100];
78} AutoEntry;
79
2e0aaec9
BD
80__asm__ ("\t.text");
81
d3c2a043 82__attribute__ ((used)) static void autoload_common (int x) __asm__ ("autoload_common");
a99bdfd8
DD
83
84static void
85autoload_common (int x)
86{
87 int fp, rel;
88 unsigned char *proc;
89 HINSTANCE h;
90 AutoEntry *a;
91
92 a = *(AutoEntry **)(&x - 1);
93 if (a->dll->handle == 0)
94 {
95 h = LoadLibrary (a->dll->name);
96 a->dll->handle = h;
97 }
98 fp = (int) GetProcAddress (a->dll->handle, a->name);
99 proc = ((unsigned char *)a) - 5;
100 rel = fp - (int)(a); /* now it's a relative call */
101 *proc++ = 0xe9; /* jump near 32-bit relative */
102 *proc++ = rel;
103 *proc++ = rel>>8;
104 *proc++ = rel>>16;
105 *proc++ = rel>>24;
106
107 *(int *)(&x-1) = (int)proc-5;
108}
This page took 0.056714 seconds and 5 git commands to generate.