1 /* ASN.1 Object identifier (OID) registry
3 * Copyright (C) 2012 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
12 #include <linux/export.h>
13 #include <linux/oid_registry.h>
14 #include <linux/kernel.h>
15 #include <linux/errno.h>
16 #include <linux/bug.h>
17 #include "oid_registry_data.c"
20 * look_up_OID - Find an OID registration for the specified data
21 * @data: Binary representation of the OID
22 * @datasize: Size of the binary representation
24 enum OID
look_up_OID(const void *data
, size_t datasize
)
26 const unsigned char *octets
= data
;
29 unsigned i
, j
, k
, hash
;
32 /* Hash the OID data */
35 for (i
= 0; i
< datasize
; i
++)
36 hash
+= octets
[i
] * 33;
37 hash
= (hash
>> 24) ^ (hash
>> 16) ^ (hash
>> 8) ^ hash
;
40 /* Binary search the OID registry. OIDs are stored in ascending order
41 * of hash value then ascending order of size and then in ascending
42 * order of reverse value.
49 xhash
= oid_search_table
[j
].hash
;
59 oid
= oid_search_table
[j
].oid
;
60 len
= oid_index
[oid
+ 1] - oid_index
[oid
];
70 /* Variation is most likely to be at the tail end of the
71 * OID, so do the comparison in reverse.
74 unsigned char a
= oid_data
[oid_index
[oid
] + --len
];
75 unsigned char b
= octets
[len
];
92 EXPORT_SYMBOL_GPL(look_up_OID
);
95 * sprint_OID - Print an Object Identifier into a buffer
96 * @data: The encoded OID to print
97 * @datasize: The size of the encoded OID
98 * @buffer: The buffer to render into
99 * @bufsize: The size of the buffer
101 * The OID is rendered into the buffer in "a.b.c.d" format and the number of
102 * bytes is returned. -EBADMSG is returned if the data could not be intepreted
103 * and -ENOBUFS if the buffer was too small.
105 int sprint_oid(const void *data
, size_t datasize
, char *buffer
, size_t bufsize
)
107 const unsigned char *v
= data
, *end
= v
+ datasize
;
117 ret
= count
= snprintf(buffer
, bufsize
, "%u.%u", n
/ 40, n
% 40);
138 ret
+= count
= snprintf(buffer
, bufsize
, ".%lu", num
);
147 EXPORT_SYMBOL_GPL(sprint_oid
);
150 * sprint_OID - Print an Object Identifier into a buffer
151 * @oid: The OID to print
152 * @buffer: The buffer to render into
153 * @bufsize: The size of the buffer
155 * The OID is rendered into the buffer in "a.b.c.d" format and the number of
158 int sprint_OID(enum OID oid
, char *buffer
, size_t bufsize
)
162 BUG_ON(oid
>= OID__NR
);
164 ret
= sprint_oid(oid_data
+ oid_index
[oid
],
165 oid_index
[oid
+ 1] - oid_index
[oid
],
167 BUG_ON(ret
== -EBADMSG
);
170 EXPORT_SYMBOL_GPL(sprint_OID
);