2006-02-27 Roland McGrath <roland@redhat.com>
[glibc-ports.git] / sysdeps / unix / sysv / linux / arm / socket.S
blob22d0c1ab029cfa17ed029b282c3df65b8e769ea7
1 /* Copyright (C) 1995, 1996, 1997, 1998, 2003, 2004, 2005
2    Free Software Foundation, Inc.
4    This file is part of the GNU C Library.
6    The GNU C Library is free software; you can redistribute it and/or
7    modify it under the terms of the GNU Lesser General Public
8    License as published by the Free Software Foundation; either
9    version 2.1 of the License, or (at your option) any later version.
11    The GNU C Library is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    Lesser General Public License for more details.
16    You should have received a copy of the GNU Lesser General Public
17    License along with the GNU C Library; if not, write to the Free
18    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19    02111-1307 USA.  */
21 #include <sysdep-cancel.h>
22 #include <socketcall.h>
24 #define P(a, b) P2(a, b)
25 #define P2(a, b) a##b
27         .text
28 /* The socket-oriented system calls are handled unusally in Linux.
29    They are all gated through the single `socketcall' system call number.
30    `socketcall' takes two arguments: the first is the subcode, specifying
31    which socket function is being called; and the second is a pointer to
32    the arguments to the specific function.
34    The .S files for the other calls just #define socket and #include this.  */
36 #ifndef __socket
37 # ifndef NO_WEAK_ALIAS
38 #  define __socket P(__,socket)
39 # else
40 #  define __socket socket
41 # endif
42 #endif
44 #define PUSHARGS_1      str a1, [sp, $-4]!
45 #define PUSHARGS_2      stmfd sp!, {a1, a2}
46 #define PUSHARGS_3      stmfd sp!, {a1, a2, a3}
47 #define PUSHARGS_4      stmfd sp!, {a1, a2, a3, a4}
48 #define PUSHARGS_5      stmfd sp!, {a1, a2, a3, a4}     /* Caller has already pushed arg 5 */
49 #define PUSHARGS_6      stmfd sp!, {a1, a2, a3, a4}
51 #define POPARGS_1       add sp, sp, #4
52 #define POPARGS_2       add sp, sp, #8
53 #define POPARGS_3       add sp, sp, #12
54 #define POPARGS_4       add sp, sp, #16
55 #define POPARGS_5       add sp, sp, #16
56 #define POPARGS_6       add sp, sp, #16
58 #ifndef NARGS
59 #define NARGS 3                 /* If we were called with no wrapper, this is really socket() */
60 #endif
62 #if defined NEED_CANCELLATION && defined CENABLE
63         PSEUDO_PROLOGUE
64 #endif
66 .globl __socket
67 ENTRY (__socket)
68         /* This code previously moved sp into ip and stored the args using
69            stmdb ip!, {a1-a4}.  It did not modify sp, so the stack never had
70            to be restored after the syscall completed.  It saved an
71            instruction and meant no stack cleanup work was required.
73            This will not work in the case of a socket call being interrupted
74            by a signal.  If the signal handler uses any stack the arguments
75            to socket will be trashed.  The results of a restart of any
76            socket call are then unpredictable. */
78         /* Push args onto the stack.  */
79         P(PUSHARGS_,NARGS)
81 #if defined NEED_CANCELLATION && defined CENABLE
82         SINGLE_THREAD_P
83         bne 1f
84 #endif
86         /* Do the system call trap.  */
87         mov a1, $P(SOCKOP_,socket)
88         mov a2, sp
89         swi SYS_ify(socketcall)
91         /* Pop args off the stack */
92         P(POPARGS_,NARGS)
94         /* r0 is < 0 if there was an error.  */
95         cmn r0, $124
96         RETINSTR(cc, r14)
97         b PLTJMP(SYSCALL_ERROR)
99 #if defined NEED_CANCELLATION && defined CENABLE
101         str lr, [sp, #-4]!
102         CENABLE
103         mov ip, r0
105         mov r0, #P(SOCKOP_,socket)
106         add r1, sp, #4
107         swi SYS_ify(socketcall)
109         str r0, [sp, #-4]!
110         mov r0, ip
111         CDISABLE
112         ldr r0, [sp], #4
113         ldr lr, [sp], #4
115         P(POPARGS_,NARGS)
117         /* r0 is < 0 if there was an error.  */
118         cmn r0, $124
119         RETINSTR(cc, r14)
120         b PLTJMP(SYSCALL_ERROR)
121 #endif
123 PSEUDO_END (__socket)
125 #ifndef NO_WEAK_ALIAS
126 weak_alias (__socket, socket)
127 #endif