aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Nfc/Nfp/IUser.cs
blob: d4c977793be1dc09a8307276a8ab1044080728f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
using Ryujinx.Common.Logging;
using Ryujinx.HLE.Exceptions;
using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.HOS.Kernel.Common;
using Ryujinx.HLE.HOS.Kernel.Threading;
using Ryujinx.HLE.HOS.Services.Hid;
using System;
using System.Collections.Generic;

namespace Ryujinx.HLE.HOS.Services.Nfc.Nfp
{
    class IUser : IpcService
    {
        private State _state = State.NonInitialized;

        private KEvent _availabilityChangeEvent;
        private int    _availabilityChangeEventHandle = 0;

        private List<Device> _devices = new List<Device>();

        private Dictionary<int, ServiceProcessRequest> _commands;

        public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;

        public IUser()
        {
            _commands = new Dictionary<int, ServiceProcessRequest>
            {
                { 0,  Initialize                    },
                { 1,  Finalize                      },
                { 2,  ListDevices                   },
                { 3,  StartDetection                },
                { 4,  StopDetection                 },
                { 5,  Mount                         },
                { 6,  Unmount                       },
                { 7,  OpenApplicationArea           },
                { 8,  GetApplicationArea            },
                { 9,  SetApplicationArea            },
                { 10, Flush                         },
                { 11, Restore                       },
                { 12, CreateApplicationArea         },
                { 13, GetTagInfo                    },
                { 14, GetRegisterInfo               },
                { 15, GetCommonInfo                 },
                { 16, GetModelInfo                  },
                { 17, AttachActivateEvent           },
                { 18, AttachDeactivateEvent         },
                { 19, GetState                      },
                { 20, GetDeviceState                },
                { 21, GetNpadId                     },
                { 22, GetApplicationAreaSize        },
                { 23, AttachAvailabilityChangeEvent }, // 3.0.0+
                { 24, RecreateApplicationArea       }, // 3.0.0+
            };
        }

        // Initialize(u64, u64, pid, buffer<unknown, 5>)
        public long Initialize(ServiceCtx context)
        {
            long appletResourceUserId = context.RequestData.ReadInt64();
            long mcuVersionData       = context.RequestData.ReadInt64();

            long inputPosition = context.Request.SendBuff[0].Position;
            long inputSize     = context.Request.SendBuff[0].Size;

            byte[] unknownBuffer = context.Memory.ReadBytes(inputPosition, inputSize);

            // NOTE: appletResourceUserId, mcuVersionData and the buffer are stored inside an internal struct.
            //       The buffer seems to contains entries with a size of 0x40 bytes each.
            //       Sadly, this internal struct doesn't seems to be used in retail.

            // TODO: Add an instance of nn::nfc::server::Manager when it will be implemented.
            //       Add an instance of nn::nfc::server::SaveData when it will be implemented.

            // TODO: When we will be able to add multiple controllers add one entry by controller here.
            Device device1 = new Device
            {
                NpadIdType = NpadIdType.Player1,
                Handle     = HidUtils.GetIndexFromNpadIdType(NpadIdType.Player1),
                State      = DeviceState.Initialized
            };

            _devices.Add(device1);

            _state = State.Initialized;

            return 0;
        }

        // Finalize()
        public long Finalize(ServiceCtx context)
        {
            // TODO: Call StopDetection() and Unmount() when they will be implemented.
            //       Remove the instance of nn::nfc::server::Manager when it will be implemented.
            //       Remove the instance of nn::nfc::server::SaveData when it will be implemented.

            _devices.Clear();

            _state = State.NonInitialized;

            return 0;
        }

        // ListDevices() -> (u32, buffer<unknown, 0xa>)
        public long ListDevices(ServiceCtx context)
        {
            if (context.Request.RecvListBuff.Count == 0)
            {
                return ErrorCode.MakeError(ErrorModule.Nfp, NfpError.DevicesBufferIsNull);
            }

            long outputPosition = context.Request.RecvListBuff[0].Position;
            long outputSize     = context.Request.RecvListBuff[0].Size;

            if (_devices.Count == 0)
            {
                return ErrorCode.MakeError(ErrorModule.Nfp, NfpError.DeviceNotFound);
            }

            for (int i = 0; i < _devices.Count; i++)
            {
                context.Memory.WriteUInt32(outputPosition + (i * sizeof(long)), (uint)_devices[i].Handle);
            }

            context.ResponseData.Write(_devices.Count);

            return 0;
        }

        // StartDetection(bytes<8, 4>)
        public long StartDetection(ServiceCtx context)
        {
            throw new ServiceNotImplementedException(context);
        }

        // StopDetection(bytes<8, 4>)
        public long StopDetection(ServiceCtx context)
        {
            throw new ServiceNotImplementedException(context);
        }

        // Mount(bytes<8, 4>, u32, u32)
        public long Mount(ServiceCtx context)
        {
            throw new ServiceNotImplementedException(context);
        }

        // Unmount(bytes<8, 4>)
        public long Unmount(ServiceCtx context)
        {
            throw new ServiceNotImplementedException(context);
        }

        // OpenApplicationArea(bytes<8, 4>, u32)
        public long OpenApplicationArea(ServiceCtx context)
        {
            throw new ServiceNotImplementedException(context);
        }

        // GetApplicationArea(bytes<8, 4>) -> (u32, buffer<unknown, 6>)
        public long GetApplicationArea(ServiceCtx context)
        {
            throw new ServiceNotImplementedException(context);
        }

        // SetApplicationArea(bytes<8, 4>, buffer<unknown, 5>)
        public long SetApplicationArea(ServiceCtx context)
        {
            throw new ServiceNotImplementedException(context);
        }

        // Flush(bytes<8, 4>)
        public long Flush(ServiceCtx context)
        {
            throw new ServiceNotImplementedException(context);
        }

        // Restore(bytes<8, 4>)
        public long Restore(ServiceCtx context)
        {
            throw new ServiceNotImplementedException(context);
        }

        // CreateApplicationArea(bytes<8, 4>, u32, buffer<unknown, 5>)
        public long CreateApplicationArea(ServiceCtx context)
        {
            throw new ServiceNotImplementedException(context);
        }

        // GetTagInfo(bytes<8, 4>) -> buffer<unknown<0x58>, 0x1a>
        public long GetTagInfo(ServiceCtx context)
        {
            throw new ServiceNotImplementedException(context);
        }

        // GetRegisterInfo(bytes<8, 4>) -> buffer<unknown<0x100>, 0x1a>
        public long GetRegisterInfo(ServiceCtx context)
        {
            throw new ServiceNotImplementedException(context);
        }

        // GetCommonInfo(bytes<8, 4>) -> buffer<unknown<0x40>, 0x1a>
        public long GetCommonInfo(ServiceCtx context)
        {
            throw new ServiceNotImplementedException(context);
        }

        // GetModelInfo(bytes<8, 4>) -> buffer<unknown<0x40>, 0x1a>
        public long GetModelInfo(ServiceCtx context)
        {
            throw new ServiceNotImplementedException(context);
        }

        // AttachActivateEvent(bytes<8, 4>) -> handle<copy>
        public long AttachActivateEvent(ServiceCtx context)
        {
            uint deviceHandle = context.RequestData.ReadUInt32();

            for (int i = 0; i < _devices.Count; i++)
            {
                if ((uint)_devices[i].Handle == deviceHandle)
                {
                    if (_devices[i].ActivateEventHandle == 0)
                    {
                        _devices[i].ActivateEvent = new KEvent(context.Device.System);

                        if (context.Process.HandleTable.GenerateHandle(_devices[i].ActivateEvent.ReadableEvent, out _devices[i].ActivateEventHandle) != KernelResult.Success)
                        {
                            throw new InvalidOperationException("Out of handles!");
                        }
                    }

                    context.Response.HandleDesc = IpcHandleDesc.MakeCopy(_devices[i].ActivateEventHandle);

                    return 0;
                }
            }

            return ErrorCode.MakeError(ErrorModule.Nfp, NfpError.DeviceNotFound);
        }

        // AttachDeactivateEvent(bytes<8, 4>) -> handle<copy>
        public long AttachDeactivateEvent(ServiceCtx context)
        {
            uint deviceHandle = context.RequestData.ReadUInt32();

            for (int i = 0; i < _devices.Count; i++)
            {
                if ((uint)_devices[i].Handle == deviceHandle)
                {
                    if (_devices[i].DeactivateEventHandle == 0)
                    {
                        _devices[i].DeactivateEvent = new KEvent(context.Device.System);

                        if (context.Process.HandleTable.GenerateHandle(_devices[i].DeactivateEvent.ReadableEvent, out _devices[i].DeactivateEventHandle) != KernelResult.Success)
                        {
                            throw new InvalidOperationException("Out of handles!");
                        }
                    }

                    context.Response.HandleDesc = IpcHandleDesc.MakeCopy(_devices[i].DeactivateEventHandle);

                    return 0;
                }
            }

            return ErrorCode.MakeError(ErrorModule.Nfp, NfpError.DeviceNotFound);
        }

        // GetState() -> u32
        public long GetState(ServiceCtx context)
        {
            context.ResponseData.Write((int)_state);

            return 0;
        }

        // GetDeviceState(bytes<8, 4>) -> u32
        public long GetDeviceState(ServiceCtx context)
        {
            uint deviceHandle = context.RequestData.ReadUInt32();

            for (int i = 0; i < _devices.Count; i++)
            {
                if ((uint)_devices[i].Handle == deviceHandle)
                {
                    context.ResponseData.Write((uint)_devices[i].State);

                    return 0;
                }
            }

            context.ResponseData.Write((uint)DeviceState.Unavailable);

            return ErrorCode.MakeError(ErrorModule.Nfp, NfpError.DeviceNotFound);
        }

        // GetNpadId(bytes<8, 4>) -> u32
        public long GetNpadId(ServiceCtx context)
        {
            uint deviceHandle = context.RequestData.ReadUInt32();

            for (int i = 0; i < _devices.Count; i++)
            {
                if ((uint)_devices[i].Handle == deviceHandle)
                {
                    context.ResponseData.Write((uint)HidUtils.GetNpadIdTypeFromIndex(_devices[i].Handle));

                    return 0;
                }
            }

            return ErrorCode.MakeError(ErrorModule.Nfp, NfpError.DeviceNotFound);
        }

        // GetApplicationAreaSize(bytes<8, 4>) -> u32
        public long GetApplicationAreaSize(ServiceCtx context)
        {
            throw new ServiceNotImplementedException(context);
        }

        // AttachAvailabilityChangeEvent() -> handle<copy>
        public long AttachAvailabilityChangeEvent(ServiceCtx context)
        {
            if (_availabilityChangeEventHandle == 0)
            {
                _availabilityChangeEvent = new KEvent(context.Device.System);

                if (context.Process.HandleTable.GenerateHandle(_availabilityChangeEvent.ReadableEvent, out _availabilityChangeEventHandle) != KernelResult.Success)
                {
                    throw new InvalidOperationException("Out of handles!");
                }
            }

            context.Response.HandleDesc = IpcHandleDesc.MakeCopy(_availabilityChangeEventHandle);

            return 0;
        }

        // RecreateApplicationArea(bytes<8, 4>, u32, buffer<unknown, 5>)
        public long RecreateApplicationArea(ServiceCtx context)
        {
            throw new ServiceNotImplementedException(context);
        }
    }
}