blob: dab30f1265c7c0fb223251c8fa1d5966ef632fec [file] [log] [blame]
The Android Open Source Project34d6eab2009-03-03 19:30:45 -08001#include <stdio.h>
2#include <stdlib.h>
3#include <string.h>
4#include <sys/types.h>
5#include <stdint.h>
6
7#include <asm/ioctl.h>
8#include <linux/types.h>
9
10#include "ioctldefs.h"
11#include <linux/atmioc.h>
12
13struct ioctlent {
14 const char* header;
15 const char* name;
16 unsigned long code;
17};
18
19struct ioctlent ioctls[] = {
20#include "ioctls.h"
21};
22
23int nioctls = sizeof(ioctls) / sizeof(ioctls[0]);
24
The Android Open Source Project34d6eab2009-03-03 19:30:45 -080025int compare(const void* a, const void* b) {
26 unsigned long code1 = ((struct ioctlent *) a)->code;
27 unsigned long code2 = ((struct ioctlent *) b)->code;
28 const char *name1 = ((struct ioctlent *) a)->name;
29 const char *name2 = ((struct ioctlent *) b)->name;
Elliott Hughesbb0c2d52014-01-07 17:34:14 -080030 return (code1 > code2) ? 1 : (code1 < code2) ? -1 : strcmp(name1, name2);
The Android Open Source Project34d6eab2009-03-03 19:30:45 -080031}
32
The Android Open Source Project34d6eab2009-03-03 19:30:45 -080033int main(int argc, char** argv) {
34 int i;
35
Jeff Brownf76f96e2012-03-02 16:23:23 -080036 /* ioctl_lookup() only looks at the NR and TYPE bits atm. */
The Android Open Source Project34d6eab2009-03-03 19:30:45 -080037 for (i = 0; i < nioctls; i++)
Jeff Brownf76f96e2012-03-02 16:23:23 -080038 ioctls[i].code &= (_IOC_NRMASK << _IOC_NRSHIFT) |
39 (_IOC_TYPEMASK << _IOC_TYPESHIFT);
The Android Open Source Project34d6eab2009-03-03 19:30:45 -080040
41 qsort(ioctls, nioctls, sizeof(ioctls[0]), compare);
Elliott Hughesbb0c2d52014-01-07 17:34:14 -080042 puts("\t/* Generated by ioctlsort */");
The Android Open Source Project34d6eab2009-03-03 19:30:45 -080043 for (i = 0; i < nioctls; i++)
44 if (i == 0 || ioctls[i].code != ioctls[i-1].code ||
Elliott Hughesbb0c2d52014-01-07 17:34:14 -080045 strcmp(ioctls[i].name, ioctls[i-1].name))
Jeff Brownf76f96e2012-03-02 16:23:23 -080046 printf("\t{\"%s\",\t\"%s\",\t%#06lx},\n",
The Android Open Source Project34d6eab2009-03-03 19:30:45 -080047 ioctls[i].header, ioctls[i].name, ioctls[i].code);
48
49 return 0;
50}