~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/mips/kernel/scall64-o32.S

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /arch/mips/kernel/scall64-o32.S (Version linux-6.12-rc7) and /arch/mips/kernel/scall64-o32.S (Version linux-5.4.285)


  1 /*                                                  1 /*
  2  * This file is subject to the terms and condi      2  * This file is subject to the terms and conditions of the GNU General Public
  3  * License.  See the file "COPYING" in the mai      3  * License.  See the file "COPYING" in the main directory of this archive
  4  * for more details.                                4  * for more details.
  5  *                                                  5  *
  6  * Copyright (C) 1995 - 2000, 2001 by Ralf Bae      6  * Copyright (C) 1995 - 2000, 2001 by Ralf Baechle
  7  * Copyright (C) 1999, 2000 Silicon Graphics,       7  * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
  8  * Copyright (C) 2001 MIPS Technologies, Inc.       8  * Copyright (C) 2001 MIPS Technologies, Inc.
  9  * Copyright (C) 2004 Thiemo Seufer                 9  * Copyright (C) 2004 Thiemo Seufer
 10  *                                                 10  *
 11  * Hairy, the userspace application uses a dif     11  * Hairy, the userspace application uses a different argument passing
 12  * convention than the kernel, so we have to t     12  * convention than the kernel, so we have to translate things from o32
 13  * to ABI64 calling convention.  64-bit syscal     13  * to ABI64 calling convention.  64-bit syscalls are also processed
 14  * here for now.                                   14  * here for now.
 15  */                                                15  */
 16 #include <linux/errno.h>                           16 #include <linux/errno.h>
 17 #include <asm/asm.h>                               17 #include <asm/asm.h>
 18 #include <asm/asmmacro.h>                          18 #include <asm/asmmacro.h>
 19 #include <asm/irqflags.h>                          19 #include <asm/irqflags.h>
 20 #include <asm/mipsregs.h>                          20 #include <asm/mipsregs.h>
 21 #include <asm/regdef.h>                            21 #include <asm/regdef.h>
 22 #include <asm/stackframe.h>                        22 #include <asm/stackframe.h>
 23 #include <asm/thread_info.h>                       23 #include <asm/thread_info.h>
 24 #include <asm/unistd.h>                            24 #include <asm/unistd.h>
 25 #include <asm/sysmips.h>                           25 #include <asm/sysmips.h>
 26                                                    26 
 27         .align  5                                  27         .align  5
 28 NESTED(handle_sys, PT_SIZE, sp)                    28 NESTED(handle_sys, PT_SIZE, sp)
 29         .set    noat                               29         .set    noat
 30         SAVE_SOME                                  30         SAVE_SOME
 31         TRACE_IRQS_ON_RELOAD                       31         TRACE_IRQS_ON_RELOAD
 32         STI                                        32         STI
 33         .set    at                                 33         .set    at
 34         ld      t1, PT_EPC(sp)          # skip     34         ld      t1, PT_EPC(sp)          # skip syscall on return
 35                                                    35 
 36         dsubu   t0, v0, __NR_O32_Linux  # chec     36         dsubu   t0, v0, __NR_O32_Linux  # check syscall number
 37         sltiu   t0, t0, __NR_O32_Linux_syscall     37         sltiu   t0, t0, __NR_O32_Linux_syscalls
 38         daddiu  t1, 4                   # skip     38         daddiu  t1, 4                   # skip to next instruction
 39         sd      t1, PT_EPC(sp)                     39         sd      t1, PT_EPC(sp)
 40         beqz    t0, not_o32_scall                  40         beqz    t0, not_o32_scall
 41 #if 0                                              41 #if 0
 42  SAVE_ALL                                          42  SAVE_ALL
 43  move a1, v0                                       43  move a1, v0
 44  ASM_PRINT("Scall %ld\n")                      !!  44  PRINT("Scall %ld\n")
 45  RESTORE_ALL                                       45  RESTORE_ALL
 46 #endif                                             46 #endif
 47                                                    47 
 48         /* We don't want to stumble over broke     48         /* We don't want to stumble over broken sign extensions from
 49            userland. O32 does never use the up     49            userland. O32 does never use the upper half. */
 50         sll     a0, a0, 0                          50         sll     a0, a0, 0
 51         sll     a1, a1, 0                          51         sll     a1, a1, 0
 52         sll     a2, a2, 0                          52         sll     a2, a2, 0
 53         sll     a3, a3, 0                          53         sll     a3, a3, 0
 54                                                    54 
 55         sd      a3, PT_R26(sp)          # save     55         sd      a3, PT_R26(sp)          # save a3 for syscall restarting
 56                                                    56 
 57         /*                                         57         /*
 58          * More than four arguments.  Try to d     58          * More than four arguments.  Try to deal with it by copying the
 59          * stack arguments from the user stack     59          * stack arguments from the user stack to the kernel stack.
 60          * This Sucks (TM).                        60          * This Sucks (TM).
 61          *                                         61          *
 62          * We intentionally keep the kernel st     62          * We intentionally keep the kernel stack a little below the top of
 63          * userspace so we don't have to do a      63          * userspace so we don't have to do a slower byte accurate check here.
 64          */                                        64          */
 65         ld      t0, PT_R29(sp)          # get      65         ld      t0, PT_R29(sp)          # get old user stack pointer
 66         daddu   t1, t0, 32                         66         daddu   t1, t0, 32
 67         bltz    t1, bad_stack                      67         bltz    t1, bad_stack
 68                                                    68 
 69 load_a4: lw     a4, 16(t0)              # argu     69 load_a4: lw     a4, 16(t0)              # argument #5 from usp
 70 load_a5: lw     a5, 20(t0)              # argu     70 load_a5: lw     a5, 20(t0)              # argument #6 from usp
 71 load_a6: lw     a6, 24(t0)              # argu     71 load_a6: lw     a6, 24(t0)              # argument #7 from usp
 72 load_a7: lw     a7, 28(t0)              # argu     72 load_a7: lw     a7, 28(t0)              # argument #8 from usp
 73 loads_done:                                        73 loads_done:
 74                                                    74 
 75         .section __ex_table,"a"                    75         .section __ex_table,"a"
 76         PTR_WD  load_a4, bad_stack_a4          !!  76         PTR     load_a4, bad_stack_a4
 77         PTR_WD  load_a5, bad_stack_a5          !!  77         PTR     load_a5, bad_stack_a5
 78         PTR_WD  load_a6, bad_stack_a6          !!  78         PTR     load_a6, bad_stack_a6
 79         PTR_WD  load_a7, bad_stack_a7          !!  79         PTR     load_a7, bad_stack_a7
 80         .previous                                  80         .previous
 81                                                    81 
 82         /*                                         82         /*
 83          * absolute syscall number is in v0 un     83          * absolute syscall number is in v0 unless we called syscall(__NR_###)
 84          * where the real syscall number is in     84          * where the real syscall number is in a0
 85          * note: NR_syscall is the first O32 s     85          * note: NR_syscall is the first O32 syscall but the macro is
 86          * only defined when compiling with -m     86          * only defined when compiling with -mabi=32 (CONFIG_32BIT)
 87          * therefore __NR_O32_Linux is used (4     87          * therefore __NR_O32_Linux is used (4000)
 88          */                                        88          */
 89                                                    89 
 90         subu    t2, v0,  __NR_O32_Linux            90         subu    t2, v0,  __NR_O32_Linux
 91         bnez    t2, 1f /* __NR_syscall at offs     91         bnez    t2, 1f /* __NR_syscall at offset 0 */
 92         LONG_S  a0, TI_SYSCALL($28)     # Save     92         LONG_S  a0, TI_SYSCALL($28)     # Save a0 as syscall number
 93         b       2f                                 93         b       2f
 94 1:                                                 94 1:
 95         LONG_S  v0, TI_SYSCALL($28)     # Save     95         LONG_S  v0, TI_SYSCALL($28)     # Save v0 as syscall number
 96 2:                                                 96 2:
 97                                                    97 
 98         li      t1, _TIF_WORK_SYSCALL_ENTRY        98         li      t1, _TIF_WORK_SYSCALL_ENTRY
 99         LONG_L  t0, TI_FLAGS($28)       # sysc     99         LONG_L  t0, TI_FLAGS($28)       # syscall tracing enabled?
100         and     t0, t1, t0                        100         and     t0, t1, t0
101         bnez    t0, trace_a_syscall               101         bnez    t0, trace_a_syscall
102                                                   102 
103 syscall_common:                                   103 syscall_common:
104         dsll    t0, v0, 3               # offs    104         dsll    t0, v0, 3               # offset into table
105         ld      t2, (sys32_call_table - (__NR_    105         ld      t2, (sys32_call_table - (__NR_O32_Linux * 8))(t0)
106                                                   106 
107         jalr    t2                      # Do T    107         jalr    t2                      # Do The Real Thing (TM)
108                                                   108 
109         li      t0, -EMAXERRNO - 1      # erro    109         li      t0, -EMAXERRNO - 1      # error?
110         sltu    t0, t0, v0                        110         sltu    t0, t0, v0
111         sd      t0, PT_R7(sp)           # set     111         sd      t0, PT_R7(sp)           # set error flag
112         beqz    t0, 1f                            112         beqz    t0, 1f
113                                                   113 
114         ld      t1, PT_R2(sp)           # sysc    114         ld      t1, PT_R2(sp)           # syscall number
115         dnegu   v0                      # erro    115         dnegu   v0                      # error
116         sd      t1, PT_R0(sp)           # save    116         sd      t1, PT_R0(sp)           # save it for syscall restarting
117 1:      sd      v0, PT_R2(sp)           # resu    117 1:      sd      v0, PT_R2(sp)           # result
118                                                   118 
119 o32_syscall_exit:                                 119 o32_syscall_exit:
120         j       syscall_exit_partial              120         j       syscall_exit_partial
121                                                   121 
122 /* -------------------------------------------    122 /* ------------------------------------------------------------------------ */
123                                                   123 
124 trace_a_syscall:                                  124 trace_a_syscall:
125         SAVE_STATIC                               125         SAVE_STATIC
126         sd      a4, PT_R8(sp)           # Save    126         sd      a4, PT_R8(sp)           # Save argument registers
127         sd      a5, PT_R9(sp)                     127         sd      a5, PT_R9(sp)
128         sd      a6, PT_R10(sp)                    128         sd      a6, PT_R10(sp)
129         sd      a7, PT_R11(sp)          # For     129         sd      a7, PT_R11(sp)          # For indirect syscalls
130                                                   130 
131         move    a0, sp                            131         move    a0, sp
132         jal     syscall_trace_enter               132         jal     syscall_trace_enter
133                                                   133 
134         bltz    v0, 1f                  # secc    134         bltz    v0, 1f                  # seccomp failed? Skip syscall
135                                                   135 
136         RESTORE_STATIC                            136         RESTORE_STATIC
137         ld      v0, PT_R2(sp)           # Rest    137         ld      v0, PT_R2(sp)           # Restore syscall (maybe modified)
138         ld      a0, PT_R4(sp)           # Rest    138         ld      a0, PT_R4(sp)           # Restore argument registers
139         ld      a1, PT_R5(sp)                     139         ld      a1, PT_R5(sp)
140         ld      a2, PT_R6(sp)                     140         ld      a2, PT_R6(sp)
141         ld      a3, PT_R7(sp)                     141         ld      a3, PT_R7(sp)
142         ld      a4, PT_R8(sp)                     142         ld      a4, PT_R8(sp)
143         ld      a5, PT_R9(sp)                     143         ld      a5, PT_R9(sp)
144         ld      a6, PT_R10(sp)                    144         ld      a6, PT_R10(sp)
145         ld      a7, PT_R11(sp)          # For     145         ld      a7, PT_R11(sp)          # For indirect syscalls
146                                                   146 
147         dsubu   t0, v0, __NR_O32_Linux  # chec    147         dsubu   t0, v0, __NR_O32_Linux  # check (new) syscall number
148         sltiu   t0, t0, __NR_O32_Linux_syscall    148         sltiu   t0, t0, __NR_O32_Linux_syscalls
149         beqz    t0, not_o32_scall                 149         beqz    t0, not_o32_scall
150                                                   150 
151         j       syscall_common                    151         j       syscall_common
152                                                   152 
153 1:      j       syscall_exit                      153 1:      j       syscall_exit
154                                                   154 
155 /* -------------------------------------------    155 /* ------------------------------------------------------------------------ */
156                                                   156 
157         /*                                        157         /*
158          * The stackpointer for a call with mo    158          * The stackpointer for a call with more than 4 arguments is bad.
159          */                                       159          */
160 bad_stack:                                        160 bad_stack:
161         li      v0, EFAULT                        161         li      v0, EFAULT
162         sd      v0, PT_R2(sp)                     162         sd      v0, PT_R2(sp)
163         li      t0, 1                   # set     163         li      t0, 1                   # set error flag
164         sd      t0, PT_R7(sp)                     164         sd      t0, PT_R7(sp)
165         j       o32_syscall_exit                  165         j       o32_syscall_exit
166                                                   166 
167 bad_stack_a4:                                     167 bad_stack_a4:
168         li      a4, 0                             168         li      a4, 0
169         b       load_a5                           169         b       load_a5
170                                                   170 
171 bad_stack_a5:                                     171 bad_stack_a5:
172         li      a5, 0                             172         li      a5, 0
173         b       load_a6                           173         b       load_a6
174                                                   174 
175 bad_stack_a6:                                     175 bad_stack_a6:
176         li      a6, 0                             176         li      a6, 0
177         b       load_a7                           177         b       load_a7
178                                                   178 
179 bad_stack_a7:                                     179 bad_stack_a7:
180         li      a7, 0                             180         li      a7, 0
181         b       loads_done                        181         b       loads_done
182                                                   182 
183 not_o32_scall:                                    183 not_o32_scall:
184         /*                                        184         /*
185          * This is not an o32 compatibility sy    185          * This is not an o32 compatibility syscall, pass it on
186          * to the 64-bit syscall handlers.        186          * to the 64-bit syscall handlers.
187          */                                       187          */
188 #ifdef CONFIG_MIPS32_N32                          188 #ifdef CONFIG_MIPS32_N32
189         j       handle_sysn32                     189         j       handle_sysn32
190 #else                                             190 #else
191         j       handle_sys64                      191         j       handle_sys64
192 #endif                                            192 #endif
193         END(handle_sys)                           193         END(handle_sys)
194                                                   194 
195 LEAF(sys32_syscall)                               195 LEAF(sys32_syscall)
196         subu    t0, a0, __NR_O32_Linux  # chec    196         subu    t0, a0, __NR_O32_Linux  # check syscall number
197         sltiu   v0, t0, __NR_O32_Linux_syscall    197         sltiu   v0, t0, __NR_O32_Linux_syscalls
198         beqz    t0, einval              # do n    198         beqz    t0, einval              # do not recurse
199         dsll    t1, t0, 3                         199         dsll    t1, t0, 3
200         beqz    v0, einval                        200         beqz    v0, einval
201         ld      t2, sys32_call_table(t1)          201         ld      t2, sys32_call_table(t1)                # syscall routine
202                                                   202 
203         move    a0, a1                  # shif    203         move    a0, a1                  # shift argument registers
204         move    a1, a2                            204         move    a1, a2
205         move    a2, a3                            205         move    a2, a3
206         move    a3, a4                            206         move    a3, a4
207         move    a4, a5                            207         move    a4, a5
208         move    a5, a6                            208         move    a5, a6
209         move    a6, a7                            209         move    a6, a7
210         jr      t2                                210         jr      t2
211         /* Unreached */                           211         /* Unreached */
212                                                   212 
213 einval: li      v0, -ENOSYS                       213 einval: li      v0, -ENOSYS
214         jr      ra                                214         jr      ra
215         END(sys32_syscall)                        215         END(sys32_syscall)
216                                                   216 
217 #define __SYSCALL_WITH_COMPAT(nr, native, comp !! 217 #define __SYSCALL(nr, entry)    PTR entry
218 #define __SYSCALL(nr, entry)    PTR_WD entry   << 
219         .align  3                                 218         .align  3
220         .type   sys32_call_table,@object          219         .type   sys32_call_table,@object
221 EXPORT(sys32_call_table)                          220 EXPORT(sys32_call_table)
222 #include <asm/syscall_table_o32.h>             !! 221 #include <asm/syscall_table_64_o32.h>
                                                   >> 222 #undef __SYSCALL
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php