├── .gitignore
├── DEVELOPING.md
├── LICENSE
├── Makefile
├── README.md
├── config.go
├── go.mod
├── go.sum
├── main.go
├── modules
├── example
│ ├── example.go
│ └── module.go
├── modules.go
└── userInterface
│ ├── module.go
│ └── userInterface.go
├── pndp
├── NDPRequest.go
├── flow.go
├── interface.go
├── interfaceMon.go
├── listener.go
├── netlink.go
├── packet.go
├── packet_test.go
├── responder.go
└── util.go
├── pndp_test.sh
├── pndpd.conf
└── pndpd.service
/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .idea
3 | bin/
--------------------------------------------------------------------------------
/DEVELOPING.md:
--------------------------------------------------------------------------------
1 | ## Developing
2 | ### Adding Modules
3 | New functionality should be implemented as a module where possible. You will find an example module under ``modules/example/``.
4 | For additions outside the core functionality you only need to keep the following methods in mind:
5 | ````
6 | package main
7 | import "pndpd/pndp"
8 |
9 | pndp.ParseFilter(f string) []*net.IPNet
10 |
11 | responderInstance := pndp.NewResponder(iface string, filter []*net.IPNet, autosenseInterface string)
12 | responderInstance.Start()
13 | responderInstance.Stop()
14 |
15 | proxyInstance := pndp.NewProxy(iface1 string, iface2 string, filter []*net.IPNet, autosenseInterface string)
16 | proxyInstance.Start()
17 | proxyInstance.Stop()
18 | ````
19 |
20 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | {{ project }} Copyright (C) {{ year }} {{ organization }}
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
--------------------------------------------------------------------------------
/Makefile:
--------------------------------------------------------------------------------
1 | # Makefile for PNDPD
2 | BINARY=pndpd
3 | MODULES=
4 | VERSION=`git describe --tags`
5 | LDFLAGS=-ldflags "-X main.Version=${VERSION} -s -w"
6 | BUILDFLAGS=-trimpath
7 |
8 | build:
9 | go build -tags=${MODULES} -o bin/${BINARY} .
10 |
11 | release:
12 | CGO_ENABLED=0 GOOS=linux go build -tags=${MODULES} ${BUILDFLAGS} ${LDFLAGS} -o bin/${BINARY}_${VERSION}_linux_amd64.bin .
13 |
14 | release-all:
15 | CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -tags=${MODULES} ${BUILDFLAGS} ${LDFLAGS} -o bin/${BINARY}_${VERSION}_linux_amd64.bin
16 | CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -tags=${MODULES} ${BUILDFLAGS} ${LDFLAGS} -o bin/${BINARY}_${VERSION}_linux_arm64.bin
17 | CGO_ENABLED=0 GOOS=linux GOARCH=arm go build -tags=${MODULES} ${BUILDFLAGS} ${LDFLAGS} -o bin/${BINARY}_${VERSION}_linux_arm.bin
18 |
19 | clean:
20 | if [ -d "bin/" ]; then find bin/ -type f -delete ;fi
21 | if [ -d "bin/" ]; then rm -d bin/ ;fi
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # PNDPD - NDP Proxy / Responder (IPv6)
2 | ## Features
3 | - **Efficiently** process incoming packets using bpf (which runs in the kernel)
4 | - **Proxy** NDP between interfaces with an optional whitelist
5 | - Optionally determine whitelist **automatically** based on the IPs assigned to the interfaces
6 | - **Respond** to NDP solicitations for all or only whitelisted addresses on an interface
7 | - Permissions required: root or **CAP_NET_RAW**
8 | - Easily expandable with modules
9 |
10 | ## Installing & Updating
11 |
12 | 1) Download the latest release from the [releases page](https://github.com/Kioubit/pndpd/releases) and move the binary to the ``/usr/local/bin/`` directory under the filename ``pndpd``.
13 | 2) Allow executing the file by running ``chmod +x /usr/local/bin/pndpd``
14 | 3) Install the systemd service unit file:
15 | ````
16 | wget https://raw.githubusercontent.com/Kioubit/pndpd/master/pndpd.service -P /etc/systemd/system/
17 | systemctl enable pndpd.service
18 | ````
19 | 4) Download and install the config file
20 | ````
21 | mkdir -p /etc/pndpd
22 | wget https://raw.githubusercontent.com/Kioubit/pndpd/master/pndpd.conf -P /etc/pndpd/
23 | ````
24 | 5) Edit the config at ``/etc/pndpd/pndpd.conf`` and then start the service using ``service pndpd start``
25 |
26 | ## Manual Usage
27 | ````
28 | pndpd proxy <[optional] 'auto' to determine filters from the internal interface or whitelist of CIDRs separated by a semicolon>
29 | pndpd responder <[optional] 'auto' to determine filters from the external interface or whitelist of CIDRs separated by a semicolon>
30 | pndpd config
31 | ````
32 | **Example:** ``pndpd proxy eth0 tun0 auto``
33 |
34 | Find more options and additional documentation in the example config file (``pndpd.conf``).
35 |
36 | ## Example Scenario
37 | ### Proxying NDP requests for a /64 IPv6 subnet on a VPS to a VPN tunnel
38 |
39 | #### 1) Inspecting the initial IP configuration
40 | ````
41 | root@vultr:~# ip -6 addr show dev enp1s0
42 | 2: enp1s0: mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
43 | inet6 2001:11ff:7400:82f2:5400:4ff:fe53:26cf/64 scope global dynamic mngtmpaddr
44 | valid_lft 2591753sec preferred_lft 604553sec
45 | inet6 fe80::5400:4ff:fe53:26cf/64 scope link
46 | valid_lft forever preferred_lft forever
47 | ````
48 | As we can see from the output, a `/64` subnet of public IPv6 addresses has been assigned to our VPS on our WAN interface `enp1s0`:
49 | `2001:11ff:7400:82f2:5400:4ff:fe53:26cf/64`.
50 |
51 | #### 2) Routing the subnet to the VPN interface
52 | To route this subnet to our VPN interface `tun0` we need to assign one ip address to the VPS and the rest to the VPN interface.
53 | To do that we edit the `/etc/network/interface` file (for systems that use ifupdown2):
54 |
55 | ##### Initial contents:
56 | ````
57 | allow-hotplug enp1s0
58 |
59 | iface enp1s0 inet static
60 | #.... IPv4 config here ...
61 |
62 | iface enp1s0 inet6 static
63 | address 2001:11ff:7400:82f2:5400:4ff:fe53:26cf/64
64 | gateway fe80::fc00:4ff:fe53:26cf
65 | ````
66 | ##### After editing:
67 | ````
68 | allow-hotplug enp1s0
69 |
70 | iface enp1s0 inet static
71 | #.... IPv4 config here ...
72 |
73 | iface enp1s0 inet6 static
74 | address 2001:11ff:7400:82f2::1/128
75 | gateway fe80::fc00:4ff:fe53:26cf
76 | ````
77 | On the VPN interface we can now assign the rest of the addresses:
78 |
79 | `ip addr add 2001:11ff:7400:82f2::1/64 dev tun0`
80 |
81 | #### 3) Running PNDPD
82 | To proxy NDP requests from the outside interface to the VPN interface we run pndp like this:
83 | ````
84 | sudo pndpd proxy enp1s0 tun0 auto
85 | ````
86 | Note: sudo is not required if you are using the capability as described in the systemd unit file.
87 | Optionally confirm that the setup works via ping and tcpdump.
88 |
89 | ## Building PNDPD
90 | For building, the version of go needs to be installed that is specified in the `go.mod` file. A makefile is available. Optionally adjust the ``MODULES`` variable to include or exclude modules from the "modules" directory.
91 | ````
92 | make clean; make release
93 | ````
94 | Find the binaries in the ``bin/`` directory
95 |
--------------------------------------------------------------------------------
/config.go:
--------------------------------------------------------------------------------
1 | package main
2 |
3 | import (
4 | "bufio"
5 | "fmt"
6 | "os"
7 | "pndpd/modules"
8 | "pndpd/pndp"
9 | "strings"
10 | )
11 |
12 | func readConfig(dest string) {
13 | file, err := os.Open(dest)
14 | if err != nil {
15 | configFatalError(err, "")
16 | }
17 | var (
18 | currentOption string
19 | blockMap map[string][]string
20 | )
21 |
22 | scanner := bufio.NewScanner(file)
23 | for scanner.Scan() {
24 | line := scanner.Text()
25 | line, _, _ = strings.Cut(line, "//")
26 | line = strings.TrimSpace(line)
27 | if line == "" {
28 | continue
29 | }
30 |
31 | if after, found := strings.CutPrefix(line, "debug"); found {
32 | if strings.TrimSpace(after) == "on" {
33 | pndp.EnableDebugLog()
34 | }
35 | continue
36 | }
37 |
38 | if option, after, found := strings.Cut(line, "{"); found {
39 | if after != "" {
40 | configFatalError(nil, "Nothing may follow after '{'. A new line must be used")
41 | }
42 | if blockMap != nil {
43 | configFatalError(nil, "A new '{' block was started before the previous one was closed")
44 | }
45 | currentOption = strings.TrimSpace(option)
46 | blockMap = make(map[string][]string)
47 | continue
48 | }
49 |
50 | if before, after, found := strings.Cut(line, "}"); found {
51 | if after != "" || before != "" {
52 | configFatalError(nil, "Nothing may precede or follow '}'. A new line must be used")
53 | }
54 | if blockMap == nil {
55 | configFatalError(nil, "Found a '}' tag without a matching '{' tag.")
56 | }
57 | module, command := modules.GetCommand(currentOption, modules.Config)
58 | if module == nil {
59 | configFatalError(nil, "Unknown configuration block: "+currentOption)
60 | }
61 | modules.ExecuteInit(module, modules.CallbackInfo{
62 | CallbackType: modules.Config,
63 | Command: command,
64 | Config: blockMap,
65 | })
66 | blockMap = nil
67 | continue
68 | }
69 |
70 | if blockMap != nil {
71 | kv := strings.SplitN(line, " ", 2)
72 | if len(kv) != 2 {
73 | configFatalError(nil, "Key without value")
74 | }
75 | if blockMap[kv[0]] == nil {
76 | blockMap[kv[0]] = make([]string, 0)
77 | }
78 | blockMap[kv[0]] = append(blockMap[kv[0]], kv[1])
79 | }
80 | }
81 | _ = file.Close()
82 |
83 | if err := scanner.Err(); err != nil {
84 | configFatalError(err, "")
85 | }
86 |
87 | if modules.ExistsBlockingModule() {
88 | modules.ExecuteComplete()
89 | waitForSignal()
90 | modules.ShutdownAll()
91 | }
92 | }
93 |
94 | func configFatalError(err error, explanation string) {
95 | fmt.Println("Error reading config file:", explanation)
96 | if err != nil {
97 | fmt.Println(err)
98 | }
99 | os.Exit(1)
100 | }
101 |
--------------------------------------------------------------------------------
/go.mod:
--------------------------------------------------------------------------------
1 | module pndpd
2 |
3 | go 1.22.5
4 |
5 | require (
6 | golang.org/x/net v0.27.0
7 | golang.org/x/sys v0.22.0
8 | )
9 |
--------------------------------------------------------------------------------
/go.sum:
--------------------------------------------------------------------------------
1 | golang.org/x/net v0.27.0 h1:5K3Njcw06/l2y9vpGCSdcxWOYHOUk3dVNGDXN+FvAys=
2 | golang.org/x/net v0.27.0/go.mod h1:dDi0PyhWNoiUOrAS8uXv/vnScO4wnHQO4mj9fn/RytE=
3 | golang.org/x/sys v0.22.0 h1:RI27ohtqKCnwULzJLqkv897zojh5/DwS/ENaMzUOaWI=
4 | golang.org/x/sys v0.22.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
5 |
--------------------------------------------------------------------------------
/main.go:
--------------------------------------------------------------------------------
1 | package main
2 |
3 | import (
4 | "fmt"
5 | "os"
6 | "os/signal"
7 | "pndpd/modules"
8 | "syscall"
9 | // Modules
10 | _ "pndpd/modules/example"
11 | _ "pndpd/modules/userInterface"
12 | )
13 |
14 | var Version = "Custom_Build"
15 |
16 | func main() {
17 | fmt.Println("PNDPD Version", Version, "- Kioubit")
18 |
19 | if len(os.Args) <= 2 {
20 | printUsage()
21 | return
22 | }
23 |
24 | switch os.Args[1] {
25 | case "config":
26 | readConfig(os.Args[2])
27 | default:
28 | module, command := modules.GetCommand(os.Args[1], modules.CommandLine)
29 | if module != nil {
30 | modules.ExecuteInit(module, modules.CallbackInfo{
31 | CallbackType: modules.CommandLine,
32 | Command: command,
33 | Arguments: os.Args[2:],
34 | })
35 | if modules.ExistsBlockingModule() {
36 | modules.ExecuteComplete()
37 | waitForSignal()
38 | modules.ShutdownAll()
39 | }
40 | } else {
41 | printUsage()
42 | }
43 | }
44 |
45 | }
46 |
47 | func printUsage() {
48 | fmt.Println("More options and additional documentation in the example config file")
49 | fmt.Println("Usage:")
50 | fmt.Println("\tpndpd config ")
51 | for i := range modules.ModuleList {
52 | for d := range (*modules.ModuleList[i]).Commands {
53 | if (*modules.ModuleList[i]).Commands[d].CommandLineEnabled {
54 | fmt.Println("\t" + (*modules.ModuleList[i]).Commands[d].Description)
55 | }
56 | }
57 | }
58 | }
59 |
60 | // waitForSignal Waits (blocking) for the program to be interrupted by the OS
61 | func waitForSignal() {
62 | var sigCh = make(chan os.Signal, 1)
63 | signal.Notify(sigCh, os.Interrupt, syscall.SIGTERM)
64 | <-sigCh
65 | signal.Stop(sigCh)
66 | close(sigCh)
67 | }
68 |
--------------------------------------------------------------------------------
/modules/example/example.go:
--------------------------------------------------------------------------------
1 | //go:build mod_example
2 | // +build mod_example
3 |
4 | package example
5 |
6 | import (
7 | "fmt"
8 | "pndpd/modules"
9 | )
10 |
11 | // This is an example module
12 | func init() {
13 | commands := []modules.Command{{
14 | CommandText: "pndpd command1",
15 | Description: "This is the usage description for command1",
16 | BlockTerminate: true,
17 | CommandLineEnabled: true,
18 | ConfigEnabled: true,
19 | }, {
20 | CommandText: "pndpd command2",
21 | Description: "This is the usage description for command2",
22 | BlockTerminate: false,
23 | CommandLineEnabled: false,
24 | ConfigEnabled: true,
25 | },
26 | }
27 | modules.RegisterModule("Example", commands, initCallback, completeCallback, shutdownCallback)
28 | }
29 |
30 | func initCallback(callback modules.CallbackInfo) {
31 | if callback.CallbackType == modules.CommandLine {
32 | // The command registered by the module has been run in the commandline
33 | // "arguments" contains the os.Args[] passed to the program after the command registered by this module
34 | fmt.Println("Command: ", callback.Command.CommandText)
35 | fmt.Println(callback.Arguments)
36 |
37 | } else {
38 | // The command registered by the module was found in the config file
39 | // "arguments" contains the lines between the curly braces
40 | fmt.Println("Command: ", callback.Command.CommandText)
41 | fmt.Println(callback.Arguments)
42 | }
43 | fmt.Println()
44 | }
45 |
46 | func completeCallback() {
47 | //Called after the program has passed all options by calls to initCallback()
48 | }
49 |
50 | func shutdownCallback() {
51 | fmt.Println("Terminate all work")
52 | }
53 |
--------------------------------------------------------------------------------
/modules/example/module.go:
--------------------------------------------------------------------------------
1 | package example
2 |
--------------------------------------------------------------------------------
/modules/modules.go:
--------------------------------------------------------------------------------
1 | package modules
2 |
3 | var ModuleList []*Module
4 |
5 | type Module struct {
6 | Name string
7 | Commands []Command
8 | InitCallback func(CallbackInfo)
9 | CompleteCallback func()
10 | ShutdownCallback func()
11 | }
12 |
13 | type Command struct {
14 | CommandText string
15 | Description string
16 | BlockTerminate bool
17 | CommandLineEnabled bool
18 | ConfigEnabled bool
19 | }
20 |
21 | type CallbackType int
22 |
23 | const (
24 | CommandLine CallbackType = 0
25 | Config CallbackType = 1
26 | )
27 |
28 | type CallbackInfo struct {
29 | CallbackType CallbackType
30 | Command Command
31 | Arguments []string
32 | Config map[string][]string
33 | }
34 |
35 | func RegisterModule(name string, commands []Command, initCallback func(CallbackInfo), CompleteCallback func(), shutdownCallback func()) {
36 | ModuleList = append(ModuleList, &Module{
37 | Name: name,
38 | Commands: commands,
39 | InitCallback: initCallback,
40 | CompleteCallback: CompleteCallback,
41 | ShutdownCallback: shutdownCallback,
42 | })
43 | }
44 |
45 | func GetCommand(target string, scope CallbackType) (*Module, Command) {
46 | for i := range ModuleList {
47 | for _, command := range ModuleList[i].Commands {
48 | if command.CommandText == target {
49 | if scope == CommandLine && command.CommandLineEnabled {
50 | return ModuleList[i], command
51 | }
52 | if scope == Config && command.ConfigEnabled {
53 | return ModuleList[i], command
54 | }
55 | return nil, Command{}
56 | }
57 | }
58 | }
59 | return nil, Command{}
60 | }
61 |
62 | var runningModules []*Module
63 |
64 | func ExecuteInit(module *Module, info CallbackInfo) {
65 | if info.Command.BlockTerminate {
66 | found := false
67 | for _, n := range runningModules {
68 | if n == module {
69 | found = true
70 | break
71 | }
72 | }
73 | if !found {
74 | runningModules = append(runningModules, module)
75 | }
76 | }
77 | module.InitCallback(info)
78 | }
79 |
80 | func ExecuteComplete() {
81 | for i := range runningModules {
82 | (*runningModules[i]).CompleteCallback()
83 | }
84 | }
85 |
86 | func ShutdownAll() {
87 | for i := range runningModules {
88 | (*runningModules[i]).ShutdownCallback()
89 | }
90 | }
91 |
92 | func ExistsBlockingModule() bool {
93 | return len(runningModules) != 0
94 | }
95 |
--------------------------------------------------------------------------------
/modules/userInterface/module.go:
--------------------------------------------------------------------------------
1 | package userInterface
2 |
--------------------------------------------------------------------------------
/modules/userInterface/userInterface.go:
--------------------------------------------------------------------------------
1 | //go:build !noUserInterface
2 |
3 | package userInterface
4 |
5 | import (
6 | "fmt"
7 | "os"
8 | "pndpd/modules"
9 | "pndpd/pndp"
10 | "strings"
11 | )
12 |
13 | func init() {
14 | commands := []modules.Command{{
15 | CommandText: "proxy",
16 | Description: "pndpd proxy <[optional] 'auto' to determine filters from the external interface or whitelist of CIDRs separated by a semicolon>",
17 | BlockTerminate: true,
18 | ConfigEnabled: true,
19 | CommandLineEnabled: true,
20 | }, {
21 | CommandText: "responder",
22 | Description: "pndpd responder <[optional] 'auto' to determine filters from the internal interface or whitelist of CIDRs separated by a semicolon>",
23 | BlockTerminate: true,
24 | ConfigEnabled: true,
25 | CommandLineEnabled: true,
26 | }, {
27 | CommandText: "modules",
28 | Description: "pndpd modules available - list available modules",
29 | BlockTerminate: false,
30 | ConfigEnabled: false,
31 | CommandLineEnabled: true,
32 | }}
33 | modules.RegisterModule("Core", commands, initCallback, completeCallback, shutdownCallback)
34 | }
35 |
36 | type configResponder struct {
37 | Iface string
38 | Filter string
39 | autosense string
40 | DontMonitorInterfaces bool
41 | instance *pndp.ResponderObj
42 | }
43 |
44 | type configProxy struct {
45 | Iface1 string
46 | Iface2 string
47 | Filter string
48 | autosense string
49 | DontMonitorInterfaces bool
50 | instance *pndp.ProxyObj
51 | }
52 |
53 | var allResponders []*configResponder
54 | var allProxies []*configProxy
55 |
56 | func initCallback(callback modules.CallbackInfo) {
57 | if callback.CallbackType == modules.CommandLine {
58 | switch callback.Command.CommandText {
59 | case "proxy":
60 | switch len(callback.Arguments) {
61 | case 3:
62 | var filter = callback.Arguments[2]
63 | var autosense = ""
64 | if callback.Arguments[2] == "auto" {
65 | filter = ""
66 | autosense = callback.Arguments[1]
67 | }
68 | allProxies = append(allProxies, &configProxy{
69 | Iface1: callback.Arguments[0],
70 | Iface2: callback.Arguments[1],
71 | Filter: filter,
72 | autosense: autosense,
73 | instance: nil,
74 | })
75 | case 2:
76 | allProxies = append(allProxies, &configProxy{
77 | Iface1: callback.Arguments[0],
78 | Iface2: callback.Arguments[1],
79 | Filter: "",
80 | autosense: "",
81 | instance: nil,
82 | })
83 | default:
84 | showError("Invalid syntax")
85 | }
86 | case "responder":
87 | if len(callback.Arguments) == 2 {
88 | var filter = callback.Arguments[1]
89 | var autosense = ""
90 | if callback.Arguments[1] == "auto" {
91 | filter = ""
92 | autosense = callback.Arguments[0]
93 | }
94 | allResponders = append(allResponders, &configResponder{
95 | Iface: callback.Arguments[0],
96 | Filter: filter,
97 | autosense: autosense,
98 | instance: nil,
99 | })
100 | } else {
101 | allResponders = append(allResponders, &configResponder{
102 | Iface: callback.Arguments[0],
103 | Filter: "",
104 | autosense: "",
105 | instance: nil,
106 | })
107 | }
108 | case "modules":
109 | if modules.ModuleList != nil {
110 | fmt.Print("Available Modules: ")
111 | for i := range modules.ModuleList {
112 | fmt.Print((*modules.ModuleList[i]).Name + " ")
113 | }
114 | fmt.Println()
115 | }
116 |
117 | }
118 |
119 | } else {
120 | switch callback.Command.CommandText {
121 | case "proxy":
122 | obj := configProxy{}
123 | obj.Iface1 = getDefaultConfValue(callback.Config["ext-iface"])
124 | obj.Iface2 = getDefaultConfValue(callback.Config["int-iface"])
125 | obj.autosense = getDefaultConfValue(callback.Config["autosense"])
126 | obj.DontMonitorInterfaces = getDefaultConfValue(callback.Config["monitor-changes"]) == "off"
127 |
128 | filter := ""
129 | for i := range callback.Config["filter"] {
130 | value := callback.Config["filter"][i]
131 | if strings.Contains(value, ";") {
132 | showError("config: the use of semicolons is not allowed in the filter arguments")
133 | }
134 | filter += value + ";"
135 | }
136 | obj.Filter = strings.TrimSuffix(filter, ";")
137 |
138 | if obj.autosense != "" && obj.Filter != "" {
139 | showError("config: cannot have both a filter and autosense enabled on a proxy object")
140 | }
141 | if obj.Iface2 == "" || obj.Iface1 == "" {
142 | showError("config: two interfaces need to be specified in the config file for a proxy object. (ext-iface and int-iface parameters)")
143 | }
144 | allProxies = append(allProxies, &obj)
145 | case "responder":
146 | obj := configResponder{}
147 | obj.Iface = getDefaultConfValue(callback.Config["iface"])
148 | obj.autosense = getDefaultConfValue(callback.Config["autosense"])
149 | obj.DontMonitorInterfaces = getDefaultConfValue(callback.Config["monitor-changes"]) == "off"
150 | filter := ""
151 | for i := range callback.Config["filter"] {
152 | value := callback.Config["filter"][i]
153 | if strings.Contains(value, ";") {
154 | showError("config: the use of semicolons is not allowed in the filter arguments")
155 | }
156 | filter += value + ";"
157 | }
158 | obj.Filter = strings.TrimSuffix(filter, ";")
159 |
160 | if obj.autosense != "" && obj.Filter != "" {
161 | showError("config: cannot have both a filter and autosense enabled on a responder object")
162 | }
163 | if obj.Iface == "" {
164 | showError("config: interface not specified in the responder object. (iface parameter)")
165 | }
166 | allResponders = append(allResponders, &obj)
167 | }
168 | }
169 | }
170 |
171 | func getDefaultConfValue(in []string) string {
172 | if in == nil {
173 | return ""
174 | }
175 | if len(in) == 0 {
176 | return ""
177 | }
178 | return in[0]
179 | }
180 |
181 | func completeCallback() {
182 | for _, n := range allProxies {
183 | o := pndp.NewProxy(n.Iface1, n.Iface2, pndp.ParseFilter(n.Filter), n.autosense, !n.DontMonitorInterfaces)
184 | n.instance = o
185 | o.Start()
186 | }
187 | for _, n := range allResponders {
188 | o := pndp.NewResponder(n.Iface, pndp.ParseFilter(n.Filter), n.autosense, !n.DontMonitorInterfaces)
189 | n.instance = o
190 | o.Start()
191 | }
192 | }
193 |
194 | func shutdownCallback() {
195 | for _, n := range allProxies {
196 | n.instance.Stop()
197 | }
198 |
199 | for _, n := range allResponders {
200 | n.instance.Stop()
201 | }
202 | }
203 |
204 | func showError(error string) {
205 | fmt.Println("Error:", error)
206 | fmt.Println("Exiting due to error")
207 | os.Exit(1)
208 | }
209 |
--------------------------------------------------------------------------------
/pndp/NDPRequest.go:
--------------------------------------------------------------------------------
1 | package pndp
2 |
3 | type ndpType int
4 |
5 | const (
6 | ndpAdv ndpType = 0
7 | ndpSol ndpType = 1
8 | )
9 |
10 | type ndpRequest struct {
11 | requestType ndpType
12 | srcIP []byte
13 | answeringForIP []byte
14 | dstIP []byte
15 | sourceIface string
16 | payload []byte
17 | }
18 |
19 | type ndpQuestion struct {
20 | targetIP []byte
21 | askedBy []byte
22 | }
23 |
--------------------------------------------------------------------------------
/pndp/flow.go:
--------------------------------------------------------------------------------
1 | package pndp
2 |
3 | import (
4 | "fmt"
5 | "net"
6 | "os"
7 | "strings"
8 | "sync"
9 | "time"
10 | )
11 |
12 | type ResponderObj struct {
13 | stopChan chan struct{}
14 | stopWG *sync.WaitGroup
15 | iface string
16 | filter []*net.IPNet
17 | autosense string
18 | monitorInterfaces bool
19 | }
20 | type ProxyObj struct {
21 | stopChan chan struct{}
22 | stopWG *sync.WaitGroup
23 | iface1 string
24 | iface2 string
25 | filter []*net.IPNet
26 | autosense string
27 | monitorInterfaces bool
28 | }
29 |
30 | // NewResponder
31 | //
32 | // iface - The interface to listen to and respond from
33 | //
34 | // filter - Optional (can be nil) list of IPv6 addresses in CIDR notation to whitelist. Must be IPV6. The ParseFilter function verifies that.
35 | //
36 | // With the optional "autosenseInterface" argument, the whitelist is configured based on the addresses assigned to the interface specified.
37 | // This works even if the IP addresses change frequently.
38 | //
39 | // Start() must be called on the object to actually start responding
40 | func NewResponder(iface string, filter []*net.IPNet, autosenseInterface string, monitorInterfaces bool) *ResponderObj {
41 | if filter == nil && autosenseInterface == "" {
42 | fmt.Println("WARNING: You should use a whitelist for the responder unless you really know what you are doing")
43 | }
44 | checkIsValidNetworkInterfaceFatal(iface, autosenseInterface)
45 |
46 | var s sync.WaitGroup
47 | return &ResponderObj{
48 | stopChan: make(chan struct{}),
49 | stopWG: &s,
50 | iface: iface,
51 | filter: filter,
52 | autosense: autosenseInterface,
53 | monitorInterfaces: monitorInterfaces,
54 | }
55 | }
56 | func (obj *ResponderObj) Start() {
57 | go obj.start()
58 | }
59 | func (obj *ResponderObj) start() {
60 | obj.stopWG.Add(1)
61 |
62 | startInterfaceMon()
63 |
64 | addInterfaceToMon(obj.iface, obj.monitorInterfaces)
65 | addInterfaceToMon(obj.autosense, true)
66 |
67 | requests := make(chan *ndpRequest, 100)
68 | defer func() {
69 | close(requests)
70 | obj.stopWG.Done()
71 | }()
72 | go respond(obj.iface, requests, ndpAdv, nil, obj.filter, obj.autosense, obj.stopWG, obj.stopChan)
73 | go listen(obj.iface, requests, ndpSol, obj.stopWG, obj.stopChan)
74 | fmt.Printf("Started responder instance on interface %s", obj.iface)
75 | fmt.Println()
76 | <-obj.stopChan
77 |
78 | removeInterfaceFromMon(obj.iface)
79 | removeInterfaceFromMon(obj.autosense)
80 | stopInterfaceMon()
81 | }
82 |
83 | // Stop a running Responder instance
84 | // Returns false on error
85 | func (obj *ResponderObj) Stop() bool {
86 | close(obj.stopChan)
87 | fmt.Println("Shutting down responder instance..")
88 | if wgWaitTimout(obj.stopWG, 10*time.Second) {
89 | fmt.Println("Done")
90 | return true
91 | } else {
92 | fmt.Println("Error shutting down instance")
93 | return false
94 | }
95 | }
96 |
97 | // NewProxy Proxy NDP between interfaces iface1 and iface2 with an optional filter (whitelist)
98 | //
99 | // filter - Optional (can be nil) list of IPv6 addresses in CIDR notation to whitelist. Must be IPV6. The ParseFilter function verifies that.
100 | //
101 | // With the optional "autosenseInterface" argument, the whitelist is configured based on the addresses assigned to the interface specified.
102 | // This works even if the IP addresses change frequently.
103 | //
104 | // Start() must be called on the object to actually start proxying
105 | func NewProxy(iface1 string, iface2 string, filter []*net.IPNet, autosenseInterface string, monitorInterfaces bool) *ProxyObj {
106 |
107 | checkIsValidNetworkInterfaceFatal(iface1, iface2, autosenseInterface)
108 |
109 | var s sync.WaitGroup
110 | return &ProxyObj{
111 | stopChan: make(chan struct{}),
112 | stopWG: &s,
113 | iface1: iface1,
114 | iface2: iface2,
115 | filter: filter,
116 | autosense: autosenseInterface,
117 | monitorInterfaces: monitorInterfaces,
118 | }
119 | }
120 |
121 | func (obj *ProxyObj) Start() {
122 | go obj.start()
123 | }
124 | func (obj *ProxyObj) start() {
125 | obj.stopWG.Add(1)
126 | defer func() {
127 | obj.stopWG.Done()
128 | }()
129 |
130 | startInterfaceMon()
131 | addInterfaceToMon(obj.iface1, obj.monitorInterfaces)
132 | addInterfaceToMon(obj.iface2, obj.monitorInterfaces)
133 | addInterfaceToMon(obj.autosense, true)
134 |
135 | out_iface1_sol_questions_iface2_adv := make(chan ndpQuestion, 100)
136 | defer close(out_iface1_sol_questions_iface2_adv)
137 | out_iface2_sol_questions_iface1_adv := make(chan ndpQuestion, 100)
138 | defer close(out_iface2_sol_questions_iface1_adv)
139 |
140 | req_iface1_sol_iface2 := make(chan *ndpRequest, 100)
141 | defer close(req_iface1_sol_iface2)
142 | go listen(obj.iface1, req_iface1_sol_iface2, ndpSol, obj.stopWG, obj.stopChan)
143 | go respond(obj.iface2, req_iface1_sol_iface2, ndpSol, out_iface2_sol_questions_iface1_adv, obj.filter, obj.autosense, obj.stopWG, obj.stopChan)
144 |
145 | req_iface2_sol_iface1 := make(chan *ndpRequest, 100)
146 | defer close(req_iface2_sol_iface1)
147 | go listen(obj.iface2, req_iface2_sol_iface1, ndpSol, obj.stopWG, obj.stopChan)
148 | go respond(obj.iface1, req_iface2_sol_iface1, ndpSol, out_iface1_sol_questions_iface2_adv, nil, "", obj.stopWG, obj.stopChan)
149 |
150 | req_iface1_adv_iface2 := make(chan *ndpRequest, 100)
151 | defer close(req_iface1_adv_iface2)
152 | go listen(obj.iface1, req_iface1_adv_iface2, ndpAdv, obj.stopWG, obj.stopChan)
153 | go respond(obj.iface2, req_iface1_adv_iface2, ndpAdv, out_iface1_sol_questions_iface2_adv, nil, "", obj.stopWG, obj.stopChan)
154 |
155 | req_iface2_adv_iface1 := make(chan *ndpRequest, 100)
156 | defer close(req_iface2_adv_iface1)
157 | go listen(obj.iface2, req_iface2_adv_iface1, ndpAdv, obj.stopWG, obj.stopChan)
158 | go respond(obj.iface1, req_iface2_adv_iface1, ndpAdv, out_iface2_sol_questions_iface1_adv, nil, "", obj.stopWG, obj.stopChan)
159 |
160 | fmt.Printf("Started Proxy instance on interfaces %s and %s (if enabled, the whitelist is applied on %s)", obj.iface1, obj.iface2, obj.iface2)
161 | fmt.Println()
162 | <-obj.stopChan
163 |
164 | removeInterfaceFromMon(obj.iface1)
165 | removeInterfaceFromMon(obj.iface2)
166 | removeInterfaceFromMon(obj.autosense)
167 | stopInterfaceMon()
168 | }
169 |
170 | // Stop a running Proxy instance
171 | // Returns false on error
172 | func (obj *ProxyObj) Stop() bool {
173 | close(obj.stopChan)
174 | fmt.Println("Shutting down proxy instance..")
175 | if wgWaitTimout(obj.stopWG, 10*time.Second) {
176 | fmt.Println("Done")
177 | return true
178 | } else {
179 | fmt.Println("Error shutting down instance")
180 | return false
181 | }
182 | }
183 |
184 | // ParseFilter Helper Function to Parse a string of CIDRs separated by a semicolon as a Whitelist
185 | func ParseFilter(f string) []*net.IPNet {
186 | if f == "" {
187 | return nil
188 | }
189 | s := strings.Split(f, ";")
190 | result := make([]*net.IPNet, len(s))
191 | for i, n := range s {
192 | _, cidr, err := net.ParseCIDR(n)
193 | if err != nil {
194 | showFatalError("filter:", err.Error())
195 | }
196 | result[i] = cidr
197 | }
198 | return result
199 | }
200 |
201 | func wgWaitTimout(wg *sync.WaitGroup, timeout time.Duration) bool {
202 | t := make(chan struct{})
203 | go func() {
204 | defer close(t)
205 | wg.Wait()
206 | }()
207 | select {
208 | case <-t:
209 | return true
210 | case <-time.After(timeout):
211 | return false
212 | }
213 | }
214 |
215 | func isValidNetworkInterface(iface string) bool {
216 | if iface == "" {
217 | return true
218 | }
219 | if _, err := net.InterfaceByName(iface); err != nil {
220 | return false
221 | }
222 | return true
223 | }
224 |
225 | func checkIsValidNetworkInterfaceFatal(iface ...string) {
226 | for i := range iface {
227 | if !isValidNetworkInterface(iface[i]) {
228 | showFatalError(fmt.Sprintf("No such network interface \"%s\"", iface[i]))
229 | }
230 | }
231 | }
232 |
233 | func showFatalError(error ...string) {
234 | fmt.Print("Error: ")
235 | for _, err := range error {
236 | fmt.Print(err + " ")
237 | }
238 | fmt.Println()
239 | fmt.Println("Exiting due to error")
240 | os.Exit(1)
241 | }
242 |
--------------------------------------------------------------------------------
/pndp/interface.go:
--------------------------------------------------------------------------------
1 | package pndp
2 |
3 | import (
4 | "net"
5 | "syscall"
6 | "unsafe"
7 |
8 | "golang.org/x/net/bpf"
9 | "golang.org/x/sys/unix"
10 | )
11 |
12 | // bpfFilter represents a classic BPF filter program that can be applied to a socket
13 | type bpfFilter []bpf.Instruction
14 |
15 | // ApplyTo applies the current filter onto the provided file descriptor
16 | func (filter bpfFilter) ApplyTo(fd int) (err error) {
17 | var assembled []bpf.RawInstruction
18 | if assembled, err = bpf.Assemble(filter); err != nil {
19 | return err
20 | }
21 |
22 | var program = unix.SockFprog{
23 | Len: uint16(len(assembled)),
24 | Filter: (*unix.SockFilter)(unsafe.Pointer(&assembled[0])),
25 | }
26 | var b = (*[unix.SizeofSockFprog]byte)(unsafe.Pointer(&program))[:unix.SizeofSockFprog]
27 |
28 | if _, _, errno := syscall.Syscall6(syscall.SYS_SETSOCKOPT,
29 | uintptr(fd), uintptr(syscall.SOL_SOCKET), uintptr(syscall.SO_ATTACH_FILTER),
30 | uintptr(unsafe.Pointer(&b[0])), uintptr(len(b)), 0); errno != 0 {
31 | return errno
32 | }
33 |
34 | return nil
35 | }
36 |
37 | type iflags struct {
38 | name [syscall.IFNAMSIZ]byte
39 | flags uint16
40 | }
41 |
42 | func setPromisc(fd int, iface string, enable bool, withInterfaceFlags bool) {
43 |
44 | // -------------------------- Interface flags --------------------------
45 | if withInterfaceFlags {
46 | tFD, err := syscall.Socket(syscall.AF_INET6, syscall.SOCK_DGRAM, 0)
47 | if err != nil {
48 | showFatalError(err.Error())
49 | }
50 |
51 | var ifl iflags
52 | copy(ifl.name[:], iface)
53 | _, _, ep := syscall.Syscall(syscall.SYS_IOCTL, uintptr(tFD), syscall.SIOCGIFFLAGS, uintptr(unsafe.Pointer(&ifl)))
54 | if ep != 0 {
55 | showFatalError(ep.Error())
56 | }
57 |
58 | if enable {
59 | ifl.flags |= uint16(syscall.IFF_PROMISC)
60 | } else {
61 | ifl.flags &^= uint16(syscall.IFF_PROMISC)
62 | }
63 |
64 | _, _, ep = syscall.Syscall(syscall.SYS_IOCTL, uintptr(tFD), syscall.SIOCSIFFLAGS, uintptr(unsafe.Pointer(&ifl)))
65 | if ep != 0 {
66 | showFatalError(ep.Error())
67 | }
68 |
69 | _ = syscall.Close(tFD)
70 | }
71 | // ---------------------------------------------------------------------
72 |
73 | // -------------------------- Socket Options ---------------------------
74 | iFace, err := net.InterfaceByName(iface)
75 | if err != nil {
76 | showFatalError(err.Error())
77 | return
78 | }
79 |
80 | mReq := unix.PacketMreq{
81 | Ifindex: int32(iFace.Index),
82 | Type: unix.PACKET_MR_PROMISC,
83 | }
84 |
85 | var opt int
86 | if enable {
87 | opt = unix.PACKET_ADD_MEMBERSHIP
88 | } else {
89 | opt = unix.PACKET_DROP_MEMBERSHIP
90 | }
91 |
92 | err = unix.SetsockoptPacketMreq(fd, unix.SOL_PACKET, opt, &mReq)
93 | if err != nil {
94 | showFatalError(err.Error())
95 | }
96 | // ---------------------------------------------------------------------
97 | }
98 |
99 | func selectSourceIP(iface *net.Interface) (gua []byte, ula []byte) {
100 | gua = emptyIpv6
101 | ula = emptyIpv6
102 | interfaceAddresses, err := iface.Addrs()
103 | if err != nil {
104 | return gua, ula
105 | }
106 |
107 | var haveUla = false
108 | var haveGua = false
109 | for _, n := range interfaceAddresses {
110 | if haveGua && haveUla {
111 | break
112 | }
113 | testIP, _, err := net.ParseCIDR(n.String())
114 | if err != nil {
115 | break
116 | }
117 | if isIpv6(testIP.String()) {
118 | if testIP.IsGlobalUnicast() {
119 | if !ulaSpace.Contains(testIP) {
120 | haveGua = true
121 | gua = testIP
122 | } else {
123 | haveUla = true
124 | ula = testIP
125 | }
126 | } else if testIP.IsLinkLocalUnicast() {
127 | if !haveUla {
128 | ula = testIP
129 | }
130 | if !haveGua {
131 | gua = testIP
132 | }
133 | }
134 | }
135 | }
136 | return gua, ula
137 | }
138 |
139 | func getInterfaceNetworkList(iface *net.Interface) []*net.IPNet {
140 | filter := make([]*net.IPNet, 0)
141 | autoifaceaddrs, err := iface.Addrs()
142 | if err != nil {
143 | return filter
144 | }
145 | for _, l := range autoifaceaddrs {
146 | testIP, anet, err := net.ParseCIDR(l.String())
147 | if err != nil {
148 | break
149 | }
150 | if isIpv6(testIP.String()) {
151 | filter = append(filter, anet)
152 | }
153 | }
154 | return filter
155 | }
156 |
--------------------------------------------------------------------------------
/pndp/interfaceMon.go:
--------------------------------------------------------------------------------
1 | package pndp
2 |
3 | import (
4 | "net"
5 | "sync"
6 | )
7 |
8 | var (
9 | interfaceMonSync sync.Mutex
10 | interfaceMonRunning = false
11 | startCount = 0
12 | wg sync.WaitGroup
13 | s chan interface{}
14 | u chan *interfaceAddressUpdate
15 | )
16 |
17 | func startInterfaceMon() {
18 | interfaceMonSync.Lock()
19 | defer interfaceMonSync.Unlock()
20 | if !interfaceMonRunning {
21 | interfaceMonRunning = true
22 | u = make(chan *interfaceAddressUpdate, 10)
23 | s = make(chan interface{})
24 | err := getInterfaceUpdates(u, s)
25 | if err != nil {
26 | showFatalError(err.Error())
27 | }
28 | go getUpdates()
29 | }
30 | startCount++
31 | }
32 |
33 | func stopInterfaceMon() {
34 | interfaceMonSync.Lock()
35 | defer interfaceMonSync.Unlock()
36 | startCount--
37 | if interfaceMonRunning && startCount <= 0 {
38 | if s != nil {
39 | close(s)
40 | wg.Wait()
41 | interfaceMonRunning = false
42 | }
43 | }
44 | }
45 |
46 | func getUpdates() {
47 | wg.Add(1)
48 | for {
49 | update := <-u
50 | if update == nil {
51 | //channel closed
52 | wg.Done()
53 | return
54 | }
55 | if update.NetworkFamily != IPv6 {
56 | continue
57 | }
58 | iface, err := net.InterfaceByIndex(update.InterfaceIndex)
59 | if err != nil {
60 | continue
61 | }
62 |
63 | srcIP, srcIPUla := selectSourceIP(iface)
64 | monMutex.Lock()
65 |
66 | for i := range monInterfaceList {
67 | if monInterfaceList[i].iface.Name == iface.Name {
68 | oldMonIface := monInterfaceList[i]
69 | oldMonIface.sourceIP = srcIP
70 | oldMonIface.sourceIPULA = srcIPUla
71 | if oldMonIface.autosense {
72 | oldMonIface.networks = getInterfaceNetworkList(iface)
73 | }
74 | break
75 | }
76 | }
77 | monMutex.Unlock()
78 | }
79 | }
80 |
81 | type monInterface struct {
82 | addCount int
83 | sourceIP []byte
84 | sourceIPULA []byte
85 | networks []*net.IPNet
86 | iface *net.Interface
87 | autosense bool
88 | }
89 |
90 | var (
91 | monInterfaceList = make([]*monInterface, 0)
92 | monMutex sync.RWMutex
93 | )
94 |
95 | func addInterfaceToMon(iface string, autosense bool) {
96 | if iface == "" {
97 | return
98 | }
99 | monMutex.Lock()
100 | defer monMutex.Unlock()
101 |
102 | niface, err := net.InterfaceByName(iface)
103 | if err != nil {
104 | showFatalError(err.Error())
105 | return
106 | }
107 |
108 | for i := range monInterfaceList {
109 | if monInterfaceList[i].iface.Name == niface.Name {
110 | oldMonIface := monInterfaceList[i]
111 | if autosense {
112 | oldMonIface.autosense = true
113 | }
114 | oldMonIface.addCount++
115 | return
116 | }
117 | }
118 | newMonIface := &monInterface{
119 | addCount: 1,
120 | autosense: autosense,
121 | iface: niface,
122 | }
123 | newMonIface.sourceIP, newMonIface.sourceIPULA = selectSourceIP(niface)
124 | newMonIface.networks = getInterfaceNetworkList(niface)
125 |
126 | monInterfaceList = append(monInterfaceList, newMonIface)
127 | }
128 |
129 | func removeInterfaceFromMon(iface string) {
130 | if iface == "" {
131 | return
132 | }
133 | monMutex.Lock()
134 | defer monMutex.Unlock()
135 | niface, err := net.InterfaceByName(iface)
136 | if err != nil {
137 | showFatalError(err.Error())
138 | return
139 | }
140 | for i := range monInterfaceList {
141 | if monInterfaceList[i].iface.Name == niface.Name {
142 | oldMonIface := monInterfaceList[i]
143 | oldMonIface.addCount--
144 | if oldMonIface.addCount <= 0 {
145 | monInterfaceList[i] = monInterfaceList[len(monInterfaceList)-1]
146 | monInterfaceList = monInterfaceList[:len(monInterfaceList)-1]
147 | }
148 | return
149 | }
150 | }
151 | }
152 |
153 | func getInterfaceInfo(iface *net.Interface) *monInterface {
154 | ifaceName := iface.Name
155 | monMutex.RLock()
156 | defer monMutex.RUnlock()
157 | for i := range monInterfaceList {
158 | if monInterfaceList[i].iface.Name == ifaceName {
159 | return monInterfaceList[i]
160 | }
161 | }
162 | return nil
163 | }
164 |
--------------------------------------------------------------------------------
/pndp/listener.go:
--------------------------------------------------------------------------------
1 | package pndp
2 |
3 | import (
4 | "bytes"
5 | "errors"
6 | "golang.org/x/net/bpf"
7 | "log/slog"
8 | "net"
9 | "os"
10 | "sync"
11 | "syscall"
12 | )
13 |
14 | func listen(iface string, responder chan *ndpRequest, requestType ndpType, stopWG *sync.WaitGroup, stopChan chan struct{}) {
15 | stopWG.Add(1)
16 | defer stopWG.Done()
17 |
18 | niface, err := net.InterfaceByName(iface)
19 | if err != nil {
20 | showFatalError(err.Error())
21 | }
22 |
23 | fd, err := syscall.Socket(syscall.AF_PACKET, syscall.SOCK_RAW|syscall.SOCK_CLOEXEC, htons(syscall.ETH_P_IPV6))
24 | if err != nil {
25 | showFatalError("Failed setting up listener on interface", iface)
26 | }
27 |
28 | slog.Debug("Obtained fd", "fd", fd)
29 | err = syscall.Bind(fd, &syscall.SockaddrLinklayer{
30 | Protocol: htons16(syscall.ETH_P_IPV6),
31 | Ifindex: niface.Index,
32 | })
33 | if err != nil {
34 | showFatalError(err.Error())
35 | }
36 | slog.Debug("Bound to interface", "fd", fd, "interface", iface)
37 |
38 | setPromisc(fd, iface, true, false)
39 |
40 | var protocolNo uint32
41 | if requestType == ndpSol {
42 | //Neighbor Solicitation
43 | protocolNo = 0x87
44 | } else {
45 | //Neighbor Advertisement
46 | protocolNo = 0x88
47 | }
48 | var f bpfFilter = []bpf.Instruction{
49 | // Load "EtherType" field from the ethernet header.
50 | bpf.LoadAbsolute{Off: 12, Size: 2},
51 | // Jump to the drop packet instruction if EtherType is not IPv6.
52 | bpf.JumpIf{Cond: bpf.JumpNotEqual, Val: 0x86dd, SkipTrue: 5},
53 | // Load "Next Header" field from IPV6 header.
54 | bpf.LoadAbsolute{Off: 20, Size: 1},
55 | // Jump to the drop packet instruction if Next Header is not ICMPv6.
56 | bpf.JumpIf{Cond: bpf.JumpNotEqual, Val: 0x3a, SkipTrue: 3},
57 | // Load "Type" field from ICMPv6 header.
58 | bpf.LoadAbsolute{Off: 54, Size: 1},
59 | // Jump to the drop packet instruction if Type is not Neighbor Solicitation / Advertisement.
60 | bpf.JumpIf{Cond: bpf.JumpNotEqual, Val: protocolNo, SkipTrue: 1},
61 | // Verdict is: send up to 86 bytes of the packet to userspace.
62 | bpf.RetConstant{Val: 86},
63 | // Verdict is: "ignore packet."
64 | bpf.RetConstant{Val: 0},
65 | }
66 |
67 | err = f.ApplyTo(fd)
68 | if err != nil {
69 | showFatalError(err.Error())
70 | }
71 |
72 | err = syscall.SetNonblock(fd, true)
73 | if err != nil {
74 | slog.Warn("Failed setting nonblock", "fd", fd)
75 | }
76 |
77 | fdN := os.NewFile(uintptr(fd), "")
78 | go func() {
79 | <-stopChan
80 | _ = fdN.Close()
81 | }()
82 |
83 | for {
84 | buf := make([]byte, 86)
85 | numRead, err := fdN.Read(buf)
86 | if err != nil {
87 | if errors.Is(err, os.ErrClosed) {
88 | return
89 | }
90 | showFatalError(err.Error())
91 | }
92 |
93 | pLogger := slog.Default().With("packet", hexValue{buf[:numRead]})
94 |
95 | if numRead < 78 {
96 | pLogger.Debug("Dropping packet since it does not meet the minimum length requirement")
97 | continue
98 | }
99 |
100 | if bytes.Equal(buf[6:12], niface.HardwareAddr) {
101 | pLogger.Debug("Dropping packet from ourselves")
102 | continue
103 | }
104 |
105 | if requestType == ndpAdv {
106 | if buf[58] == 0x0 {
107 | pLogger.Debug("Dropping advertisement packet without any NDP flags set")
108 | continue
109 | }
110 | }
111 |
112 | pLogger.Debug("Got packet", "interface", iface, "type", requestType,
113 | "source MAC", macValue{buf[6:12]},
114 | "source IP", ipValue{buf[22:38]},
115 | "destination IP", ipValue{buf[38:54]},
116 | "requested IP", ipValue{buf[62:78]},
117 | )
118 |
119 | responder <- &ndpRequest{
120 | requestType: requestType,
121 | srcIP: buf[22:38],
122 | dstIP: buf[38:54],
123 | answeringForIP: buf[62:78],
124 | payload: buf[54:numRead],
125 | sourceIface: iface,
126 | }
127 | }
128 | }
129 |
--------------------------------------------------------------------------------
/pndp/netlink.go:
--------------------------------------------------------------------------------
1 | package pndp
2 |
3 | import (
4 | "fmt"
5 | "syscall"
6 | "unsafe"
7 |
8 | "golang.org/x/sys/unix"
9 | )
10 |
11 | type netlinkSocket struct {
12 | fd int
13 | lsa unix.SockaddrNetlink
14 | }
15 |
16 | type interfaceAddressUpdate struct {
17 | InterfaceIndex int
18 | Event addressUpdateInfo
19 | NetworkFamily networkFamily
20 | Flags byte
21 | Scope byte
22 | }
23 |
24 | type networkFamily int
25 | type addressUpdateInfo int
26 |
27 | const (
28 | IPv4 networkFamily = 4
29 | IPv6 networkFamily = 6
30 | AddressDelete addressUpdateInfo = 0
31 | AddressAdd addressUpdateInfo = 1
32 | )
33 |
34 | func newNetlinkSocket(protocol int, multicastGroups ...uint) (*netlinkSocket, error) {
35 | fd, err := unix.Socket(unix.AF_NETLINK, unix.SOCK_RAW, protocol)
36 | if err != nil {
37 | return nil, err
38 | }
39 |
40 | socket := &netlinkSocket{}
41 | socket.fd = fd
42 | socket.lsa.Family = unix.AF_NETLINK
43 |
44 | for _, g := range multicastGroups {
45 | socket.lsa.Groups |= 1 << (g - 1)
46 | }
47 |
48 | err = unix.Bind(fd, &socket.lsa)
49 | if err != nil {
50 | _ = unix.Close(fd)
51 | return nil, err
52 | }
53 | return socket, nil
54 | }
55 |
56 | func (socket *netlinkSocket) receiveMessage() ([]syscall.NetlinkMessage, *unix.SockaddrNetlink, error) {
57 | fd := socket.fd
58 | if fd < 0 {
59 | return nil, nil, fmt.Errorf("socket is closed")
60 | }
61 |
62 | var buf [7000]byte
63 | n, from, err := unix.Recvfrom(fd, buf[:], 0)
64 | if err != nil {
65 | return nil, nil, err
66 | }
67 | if n < unix.NLMSG_HDRLEN {
68 | return nil, nil, fmt.Errorf("received a message not meeting the minimum message threshold")
69 | }
70 | read := make([]byte, n)
71 | copy(read, buf[:n])
72 |
73 | fromAddr, ok := from.(*unix.SockaddrNetlink)
74 | if !ok {
75 | return nil, nil, fmt.Errorf("unable to convert to SockaddrNetlink")
76 | }
77 |
78 | nl, err := syscall.ParseNetlinkMessage(read)
79 | if err != nil {
80 | return nil, nil, err
81 | }
82 | return nl, fromAddr, nil
83 | }
84 |
85 | func (socket *netlinkSocket) Close() {
86 | _ = unix.Close(socket.fd)
87 | socket.fd = -1
88 | }
89 |
90 | func getInterfaceUpdates(updateChannel chan *interfaceAddressUpdate, stopChannel chan interface{}) error {
91 | // Note: UpdateChannel should be buffered
92 |
93 | socket, err := newNetlinkSocket(unix.NETLINK_ROUTE, unix.RTNLGRP_IPV4_IFADDR, unix.RTNLGRP_IPV6_IFADDR)
94 | if err != nil {
95 | return err
96 | }
97 |
98 | if stopChannel != nil {
99 | go func() {
100 | <-stopChannel
101 | socket.Close()
102 | close(updateChannel)
103 | }()
104 | }
105 | go func() {
106 | for {
107 | messages, from, err := socket.receiveMessage()
108 | if err != nil {
109 | //Error receiving
110 | return
111 | }
112 | const kernelPid = 0
113 | if from.Pid != kernelPid {
114 | continue
115 | }
116 | var event addressUpdateInfo
117 | for i := range messages {
118 | switch messages[i].Header.Type {
119 | case unix.NLMSG_DONE:
120 | continue
121 | case unix.NLMSG_ERROR:
122 | continue
123 | case unix.RTM_NEWADDR:
124 | event = AddressAdd
125 | case unix.RTM_DELADDR:
126 | event = AddressDelete
127 | default:
128 | continue
129 | }
130 |
131 | t := messages[i].Data[:unix.SizeofIfAddrmsg]
132 | ifAddrMsgPointer := unsafe.Pointer(&t[0])
133 | ifAddrMsg := (*unix.IfAddrmsg)(ifAddrMsgPointer)
134 |
135 | var networkFamily networkFamily
136 | switch int(ifAddrMsg.Family) {
137 | case unix.AF_INET:
138 | networkFamily = IPv4
139 | case unix.AF_INET6:
140 | networkFamily = IPv6
141 | default:
142 | continue
143 | }
144 |
145 | update := &interfaceAddressUpdate{}
146 | update.Event = event
147 | update.InterfaceIndex = int(ifAddrMsg.Index)
148 | update.Flags = ifAddrMsg.Flags
149 | update.Scope = ifAddrMsg.Scope
150 | update.NetworkFamily = networkFamily
151 | updateChannel <- update
152 | }
153 | }
154 | }()
155 | return nil
156 | }
157 |
--------------------------------------------------------------------------------
/pndp/packet.go:
--------------------------------------------------------------------------------
1 | package pndp
2 |
3 | import (
4 | "bytes"
5 | "encoding/binary"
6 | "errors"
7 | "log/slog"
8 | "net/netip"
9 | )
10 |
11 | var emptyIpv6 = []byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
12 | var allNodesMulticastIPv6 = []byte{0xFF, 0x01, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x01}
13 |
14 | type payload interface {
15 | constructPacket() ([]byte, int)
16 | }
17 |
18 | type ipv6Header struct {
19 | protocol byte
20 | srcIP []byte
21 | dstIP []byte
22 | payloadLen []byte
23 | payload []byte
24 | }
25 |
26 | func newIpv6Header(srcIp []byte, dstIp []byte) (*ipv6Header, error) {
27 | if len(dstIp) != 16 || len(srcIp) != 16 {
28 | return nil, errors.New("malformed IP")
29 | }
30 | return &ipv6Header{dstIP: dstIp, srcIP: srcIp, protocol: 0x3a}, nil
31 | }
32 |
33 | func (h *ipv6Header) addPayload(payload payload) {
34 | bPayload, checksumPos := payload.constructPacket()
35 | bPayloadLen := make([]byte, 2)
36 | binary.BigEndian.PutUint16(bPayloadLen, uint16(len(bPayload)))
37 | h.payloadLen = bPayloadLen
38 |
39 | if checksumPos > 0 {
40 | bChecksum := make([]byte, 2)
41 | binary.BigEndian.PutUint16(bChecksum, calculateChecksum(h, bPayload))
42 | bPayload[checksumPos] = bChecksum[0]
43 | bPayload[checksumPos+1] = bChecksum[1]
44 | }
45 |
46 | h.payload = bPayload
47 | }
48 |
49 | func (h *ipv6Header) constructPacket() []byte {
50 | header := []byte{
51 | 0x60, // v6
52 | 0, // qos
53 | 0, // qos
54 | 0, // qos
55 | h.payloadLen[0], // payload Length
56 | h.payloadLen[1], // payload Length
57 | h.protocol, // Protocol next header
58 | 0xff, // Hop limit
59 | }
60 | final := append(header, h.srcIP...)
61 | final = append(final, h.dstIP...)
62 | final = append(final, h.payload...)
63 | return final
64 | }
65 |
66 | type ndpPayload struct {
67 | packetType ndpType
68 | answeringForIP []byte
69 | mac []byte
70 | }
71 |
72 | func newNdpPacket(answeringForIP []byte, mac []byte, packetType ndpType) (*ndpPayload, error) {
73 | if len(answeringForIP) != 16 || len(mac) != 6 {
74 | return nil, errors.New("malformed IP")
75 | }
76 | return &ndpPayload{
77 | packetType: packetType,
78 | answeringForIP: answeringForIP,
79 | mac: mac,
80 | }, nil
81 | }
82 |
83 | func (p *ndpPayload) constructPacket() ([]byte, int) {
84 | var protocol byte
85 | var flags byte
86 | var linkType byte
87 | if p.packetType == ndpSol {
88 | protocol = 0x87
89 | flags = 0x0
90 | linkType = 0x01
91 | } else {
92 | protocol = 0x88
93 | flags = 0x60
94 | linkType = 0x02
95 | }
96 | header := []byte{
97 | protocol, // Type: ndpType
98 | 0x0, // Code
99 | 0x0, // Checksum filled in later
100 | 0x0, // Checksum filled in later
101 | flags, // Flags (Solicited,Override)
102 | 0x0, // Reserved
103 | 0x0, // Reserved
104 | 0x0, // Reserved
105 | }
106 | final := append(header, p.answeringForIP...)
107 |
108 | secondHeader := []byte{
109 | linkType, // Type
110 | 0x01, // Length: 1 (8 bytes)
111 | }
112 | final = append(final, secondHeader...)
113 |
114 | final = append(final, p.mac...)
115 | return final, 2
116 | }
117 |
118 | func calculateChecksum(h *ipv6Header, payload []byte) uint16 {
119 | if len(payload) == 0 {
120 | return 0x0000
121 | }
122 |
123 | buf := checksumAddition(h.srcIP, 0)
124 | buf = checksumAddition(h.dstIP, buf)
125 | buf = checksumAddition([]byte{0x00, h.protocol}, buf)
126 | buf = checksumAddition(h.payloadLen, buf)
127 | buf = checksumAddition(payload, buf)
128 | return uint16(buf) ^ 0xFFFF
129 | }
130 |
131 | func checksumAddition(b []byte, buf uint16) uint16 {
132 | var sum = uint32(buf)
133 | cv := len(b) - 1
134 | for i := 0; i < cv; i += 2 {
135 | sum += uint32(uint16(b[i])<<8 | uint16(b[i+1]))
136 | }
137 | if cv&1 == 0 {
138 | sum += uint32(uint16(b[cv])<<8 | uint16(0x00))
139 | }
140 |
141 | for sum>>16 > 0x0 {
142 | sum = (sum & 0xffff) + (sum >> 16)
143 | }
144 | return uint16(sum)
145 | }
146 |
147 | func checkPacketChecksum(v6 *ipv6Header, payload []byte) bool {
148 | packetsum := make([]byte, 2)
149 | copy(packetsum, payload[2:4])
150 |
151 | bPayloadLen := make([]byte, 2)
152 | binary.BigEndian.PutUint16(bPayloadLen, uint16(len(payload)))
153 | v6.payloadLen = bPayloadLen
154 |
155 | payload[2] = 0x0
156 | payload[3] = 0x0
157 |
158 | bChecksum := make([]byte, 2)
159 | binary.BigEndian.PutUint16(bChecksum, calculateChecksum(v6, payload))
160 | if bytes.Equal(packetsum, bChecksum) {
161 | return true
162 | } else {
163 | slog.Debug("Received packet checksum validation failed", "payload", hexValue{payload},
164 | "v6SrcIP", hexValue{v6.srcIP},
165 | "v6DstIP", hexValue{v6.dstIP},
166 | )
167 | return false
168 | }
169 | }
170 |
171 | func isIpv6(ip string) bool {
172 | testIp, err := netip.ParseAddr(ip)
173 | if err != nil {
174 | return false
175 | }
176 | return testIp.Is6()
177 | }
178 |
--------------------------------------------------------------------------------
/pndp/packet_test.go:
--------------------------------------------------------------------------------
1 | package pndp
2 |
3 | import (
4 | "bytes"
5 | "encoding/binary"
6 | "encoding/hex"
7 | "strings"
8 | "testing"
9 | )
10 |
11 | func TestCalculateChecksum(t *testing.T) {
12 | //fd00::251d:bbbb:bbbb:bbbb → ff02::1:ff00:99 ICMPv6 Neighbor Solicitation for fd00::99 from ad:ad:ad:ad:ad:ad
13 |
14 | type testCase struct {
15 | payloadHexString string
16 | want []byte
17 | }
18 |
19 | cases := []testCase{
20 | {"87 00 1D 12 00 00 00 00 FD 00 00 00 00 00 00 00 00 00 00 00 00 00 00 99 01 01 AD AD AD AD AD AD", //32 (Even)
21 | []byte{0x1D, 0x12}},
22 | {"87 00 1D 12 00 00 00 00 FD 00 00 00 00 00 00 00 00 00 00 00 00 00 00 99 01 01 AD AD AD AD AD", //31 (Not even)
23 | []byte{0x1D, 0xC0}},
24 | }
25 |
26 | testSrcIP := []byte{0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x1D, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB}
27 | testDstIP := []byte{0xFF, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0x00, 0x00, 0x99}
28 | testHeader, _ := newIpv6Header(testSrcIP, testDstIP)
29 |
30 | for _, tc := range cases {
31 | payloadBytes, err := hex.DecodeString(strings.Join(strings.Fields(tc.payloadHexString), ""))
32 | if err != nil {
33 | t.Errorf("%s", err)
34 | }
35 |
36 | bPayloadLen := make([]byte, 2)
37 | binary.BigEndian.PutUint16(bPayloadLen, uint16(len(payloadBytes)))
38 | testHeader.payloadLen = bPayloadLen
39 |
40 | // Clear existing checksum as it should be zero for calculation
41 | payloadBytes[2] = 0x0
42 | payloadBytes[3] = 0x0
43 |
44 | got := calculateChecksum(testHeader, payloadBytes)
45 |
46 | bChecksum := make([]byte, 2)
47 | binary.BigEndian.PutUint16(bChecksum, got)
48 | if !bytes.Equal(tc.want, bChecksum) {
49 | t.Errorf("Expected '%x', but got '%x'", tc.want, bChecksum)
50 | }
51 | }
52 | }
53 |
54 | func TestCheckPacketChecksum(t *testing.T) {
55 | type testCase struct {
56 | payloadHexString string
57 | want bool
58 | }
59 |
60 | cases := []testCase{
61 | {"87 00 1D 12 00 00 00 00 FD 00 00 00 00 00 00 00 00 00 00 00 00 00 00 99 01 01 AD AD AD AD AD AD", //32 (Even)
62 | true},
63 | {"87 00 1D 12 00 00 00 00 FD 00 00 00 00 00 00 00 00 00 00 00 00 00 00 99 01 01 AD AD AD AD AD", //31 (Not even)
64 | false},
65 | }
66 |
67 | testSrcIP := []byte{0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x1D, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB}
68 | testDstIP := []byte{0xFF, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0x00, 0x00, 0x99}
69 | testHeader, _ := newIpv6Header(testSrcIP, testDstIP)
70 |
71 | for _, tc := range cases {
72 | payloadBytes, err := hex.DecodeString(strings.Join(strings.Fields(tc.payloadHexString), ""))
73 | if err != nil {
74 | t.Errorf("%s", err)
75 | }
76 | got := checkPacketChecksum(testHeader, payloadBytes)
77 | if tc.want != got {
78 | t.Errorf("Excpected valid: '%t', but got valid: '%t' with payload '%x'", tc.want, got, payloadBytes)
79 | }
80 |
81 | }
82 | }
83 |
84 | func TestIsIpv6(t *testing.T) {
85 | type testCase struct {
86 | ip string
87 | want bool
88 | }
89 | cases := []testCase{
90 | {"0.0.0.0", false},
91 | {"fd", false},
92 | {"fd::", true},
93 | {"fd00::", true},
94 | }
95 |
96 | for _, tc := range cases {
97 | if isIpv6(tc.ip) != tc.want {
98 | t.Errorf("Expected '%t', but got '%t' for %s", tc.want, !tc.want, tc.ip)
99 | }
100 | }
101 |
102 | }
103 |
--------------------------------------------------------------------------------
/pndp/responder.go:
--------------------------------------------------------------------------------
1 | package pndp
2 |
3 | import (
4 | "bytes"
5 | "log/slog"
6 | "net"
7 | "sync"
8 | "syscall"
9 | )
10 |
11 | func respond(iface string, requests chan *ndpRequest, respondType ndpType, ndpQuestionChan chan ndpQuestion, filter []*net.IPNet, autoSense string, stopWG *sync.WaitGroup, stopChan chan struct{}) {
12 | stopWG.Add(1)
13 | defer stopWG.Done()
14 |
15 | var autoiface *net.Interface
16 | if autoSense != "" {
17 | var err error
18 | autoiface, err = net.InterfaceByName(autoSense)
19 | if err != nil {
20 | showFatalError(err.Error())
21 | }
22 | }
23 |
24 | var ndpQuestionsList = make([]ndpQuestion, 0, 40)
25 | var _, linkLocalSpace, _ = net.ParseCIDR("fe80::/10")
26 |
27 | fd, err := syscall.Socket(syscall.AF_INET6, syscall.SOCK_RAW|syscall.SOCK_CLOEXEC, syscall.IPPROTO_RAW)
28 | if err != nil {
29 | showFatalError(err.Error())
30 | }
31 | defer func(fd int) {
32 | _ = syscall.Close(fd)
33 | }(fd)
34 | slog.Debug("Obtained fd", "fd", fd)
35 |
36 | err = syscall.BindToDevice(fd, iface)
37 | if err != nil {
38 | showFatalError(err.Error())
39 | }
40 | slog.Debug("Bound to interface", "fd", fd, "interface", iface)
41 |
42 | respondIface, err := net.InterfaceByName(iface)
43 | if err != nil {
44 | showFatalError(err.Error())
45 | }
46 |
47 | for {
48 | var req *ndpRequest
49 | if (ndpQuestionChan == nil && respondType == ndpAdv) || (ndpQuestionChan != nil && respondType == ndpSol) {
50 | select {
51 | case <-stopChan:
52 | return
53 | case req = <-requests:
54 | }
55 | } else {
56 | // This is if ndpQuestionChan != nil && respondType == ndp_ADV
57 | select {
58 | case <-stopChan:
59 | return
60 | case q := <-ndpQuestionChan:
61 | ndpQuestionsList = append(ndpQuestionsList, q)
62 | ndpQuestionsList = cleanupQuestionList(ndpQuestionsList)
63 | continue
64 | case req = <-requests:
65 | }
66 | }
67 |
68 | v6Header, err := newIpv6Header(req.srcIP, req.dstIP)
69 | if err != nil {
70 | continue
71 | }
72 | if !checkPacketChecksum(v6Header, req.payload) {
73 | continue
74 | }
75 |
76 | if linkLocalSpace.Contains(req.answeringForIP) {
77 | slog.Debug("Dropping packet asking for a link-local IP")
78 | continue
79 | }
80 |
81 | // Auto-sense
82 | if autoSense != "" {
83 | filter = getInterfaceInfo(autoiface).networks
84 | }
85 |
86 | if filter != nil {
87 | ok := false
88 | for _, i := range filter {
89 | if i.Contains(req.answeringForIP) {
90 | slog.Debug("Responding for whitelisted IP", "ip", ipValue{req.answeringForIP})
91 | ok = true
92 | break
93 | }
94 | }
95 | if !ok {
96 | continue
97 | }
98 | }
99 |
100 | intInfo := getInterfaceInfo(respondIface)
101 | var selectedSelfSourceIPGua = intInfo.sourceIP
102 | var selectedSelfSourceIPUla = intInfo.sourceIPULA
103 | var selectedSelfSourceIP = selectedSelfSourceIPGua
104 | if ulaSpace.Contains(req.answeringForIP) {
105 | selectedSelfSourceIP = selectedSelfSourceIPUla
106 | }
107 |
108 | if req.sourceIface == iface {
109 | slog.Debug("Sending packet", "type", respondType, "dest", ipValue{req.dstIP}, "interface", respondIface.Name)
110 | sendNDPPacket(fd, req.dstIP, req.srcIP, req.answeringForIP, respondIface.HardwareAddr, respondType)
111 | } else {
112 | if respondType == ndpAdv {
113 | if !bytes.Equal(req.dstIP, allNodesMulticastIPv6) { // Skip in case of unsolicited advertisement
114 | success := false
115 | req.dstIP, success = getAddressFromQuestionList(req.answeringForIP, &ndpQuestionsList)
116 | if !success {
117 | slog.Debug("Nobody has asked for this IP", "ip", ipValue{req.answeringForIP})
118 | continue
119 | }
120 | }
121 | } else {
122 | if bytes.Equal(req.srcIP, emptyIpv6) {
123 | // Duplicate Address detection is in progress
124 | selectedSelfSourceIP = emptyIpv6
125 | } else {
126 | ndpQuestionChan <- ndpQuestion{
127 | targetIP: req.answeringForIP,
128 | askedBy: req.srcIP,
129 | }
130 | }
131 | }
132 | slog.Debug("Sending packet", "type", respondType, "dest", ipValue{req.dstIP}, "interface", respondIface.Name)
133 |
134 | sendNDPPacket(fd, selectedSelfSourceIP, req.dstIP, req.answeringForIP, respondIface.HardwareAddr, respondType)
135 | }
136 | }
137 | }
138 |
139 | func sendNDPPacket(fd int, ownIP []byte, dstIP []byte, ndpTargetIP []byte, ndpTargetMac []byte, ndpType ndpType) {
140 | v6, err := newIpv6Header(ownIP, dstIP)
141 | if err != nil {
142 | return
143 | }
144 | NDPa, err := newNdpPacket(ndpTargetIP, ndpTargetMac, ndpType)
145 | if err != nil {
146 | return
147 | }
148 | v6.addPayload(NDPa)
149 | packet := v6.constructPacket()
150 |
151 | var t [16]byte
152 | copy(t[:], dstIP)
153 |
154 | err = syscall.Sendto(fd, packet, 0, &syscall.SockaddrInet6{
155 | Addr: t,
156 | })
157 | if err != nil {
158 | slog.Error("Error sending packet", "error", err)
159 | }
160 | }
161 |
162 | func getAddressFromQuestionList(targetIP []byte, ndpQuestionsList *[]ndpQuestion) ([]byte, bool) {
163 | for i := range *ndpQuestionsList {
164 | if bytes.Equal((*ndpQuestionsList)[i].targetIP, targetIP) {
165 | result := (*ndpQuestionsList)[i].askedBy
166 | *ndpQuestionsList = removeFromQuestionList(*ndpQuestionsList, i)
167 | return result, true
168 | }
169 | }
170 | return nil, false
171 | }
172 | func removeFromQuestionList(s []ndpQuestion, i int) []ndpQuestion {
173 | // Remove while keeping the order
174 | return append(s[:i], s[i+1:]...)
175 | }
176 |
177 | func cleanupQuestionList(s []ndpQuestion) []ndpQuestion {
178 | toRemove := len(s) - 40
179 | if toRemove <= 0 {
180 | return s
181 | }
182 | return s[toRemove:]
183 | }
184 |
--------------------------------------------------------------------------------
/pndp/util.go:
--------------------------------------------------------------------------------
1 | package pndp
2 |
3 | import (
4 | "fmt"
5 | "log/slog"
6 | "net"
7 | "net/netip"
8 | "os"
9 | )
10 |
11 | func EnableDebugLog() {
12 | slog.SetDefault(slog.New(slog.NewTextHandler(os.Stdout, &slog.HandlerOptions{Level: slog.LevelDebug, AddSource: true})))
13 | }
14 |
15 | type hexValue struct {
16 | arg []byte
17 | }
18 |
19 | func (v hexValue) LogValue() slog.Value {
20 | return slog.StringValue(fmt.Sprintf("%X", v.arg))
21 | }
22 |
23 | type ipValue struct {
24 | arg []byte
25 | }
26 |
27 | func (v ipValue) LogValue() slog.Value {
28 | if len(v.arg) != 16 {
29 | return slog.StringValue(fmt.Sprintf("%X", v.arg))
30 | }
31 | return slog.StringValue(netip.AddrFrom16([16]byte(v.arg)).String())
32 | }
33 |
34 | type macValue struct {
35 | arg []byte
36 | }
37 |
38 | func (v macValue) LogValue() slog.Value {
39 | if len(v.arg) != 6 {
40 | return slog.StringValue(fmt.Sprintf("%X", v.arg))
41 | }
42 | return slog.StringValue(fmt.Sprintf("%X:%X:%X:%X:%X:%X", v.arg[0], v.arg[1], v.arg[2], v.arg[3], v.arg[4], v.arg[5]))
43 | }
44 |
45 | // Htons Convert a uint16 to host byte order (big endian)
46 | func htons(v uint16) int { return int(htons16(v)) }
47 | func htons16(v uint16) uint16 { return (v << 8) | (v >> 8) }
48 |
49 | var _, ulaSpace, _ = net.ParseCIDR("fc00::/7")
50 |
--------------------------------------------------------------------------------
/pndp_test.sh:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 | set -euxo
3 |
4 | make
5 |
6 | ip netns add pndpd-p # Provider
7 | ip netns exec pndpd-p sysctl -w net.ipv6.conf.all.forwarding=1
8 | ip netns add pndpd-c # Client
9 | ip netns exec pndpd-c sysctl -w net.ipv6.conf.all.forwarding=1
10 | ip netns add pndpd-i # Inner client
11 | ip netns exec pndpd-i sysctl -w net.ipv6.conf.all.forwarding=1
12 |
13 | # Provider bridge
14 | ip -netns pndpd-p link add br0 type bridge
15 | ip -netns pndpd-p addr add fd00::/62 dev br0
16 | ip -netns pndpd-p addr add 2001:db8::/62 dev br0
17 | ip -netns pndpd-p link set dev br0 address 00:00:00:00:00:01 # Predictable link-local
18 | ip -netns pndpd-p link set up dev br0
19 |
20 | # Client 0 link to provider bridge
21 | ip -netns pndpd-p link add veth-c0 type veth peer name veth-p
22 | ip -netns pndpd-p link set up veth-c0
23 | ip -netns pndpd-p link set veth-c0 master br0
24 |
25 | ip -netns pndpd-p link set veth-p netns pndpd-c
26 | ip -netns pndpd-c addr add fd00:0:0:1::/128 dev veth-p
27 | ip -netns pndpd-c addr add 2001:db8:0:1::/128 dev veth-p
28 | ip -netns pndpd-c link set up dev veth-p
29 | ip -netns pndpd-c route add default via fe80::200:ff:fe00:1 dev veth-p
30 |
31 | # Bridge on client 0
32 | ip -netns pndpd-c link add br0 type bridge
33 | ip -netns pndpd-c addr add fd00:0:0:1::/64 dev br0
34 | ip -netns pndpd-c addr add 2001:db8:0:1::/64 dev br0
35 | ip -netns pndpd-c link set dev br0 address 00:00:00:00:00:02
36 | ip -netns pndpd-c link set up dev br0
37 |
38 | # Inner client link to client 0 bridge
39 | ip -netns pndpd-c link add veth-i0 type veth peer name veth-c
40 | ip -netns pndpd-c link set up veth-i0
41 | ip -netns pndpd-c link set veth-i0 master br0
42 |
43 | ip -netns pndpd-c link set veth-c netns pndpd-i
44 | ip -netns pndpd-i addr add fd00:0:0:1::100/64 dev veth-c
45 | ip -netns pndpd-i addr add 2001:db8:0:1::100/64 dev veth-c
46 | ip -netns pndpd-i link set up dev veth-c
47 | ip -netns pndpd-i route add default via fd00:0:0:1:: dev veth-c
48 |
49 | sleep 2
50 | ip netns exec pndpd-c bin/pndpd proxy veth-p br0 auto &
51 | PID=$!
52 | sleep 2
53 |
54 | # Perform tests
55 | ip netns exec pndpd-p ping -c 5 -w 10 fd00:0:0:1::100
56 | ip netns exec pndpd-p ping -c 5 -w 10 2001:db8:0:1::100
57 |
58 | kill -n 2 "$PID"
59 | wait
60 | echo "Tests successful"
61 |
62 | # Teardown
63 | ip netns delete pndpd-p
64 | ip netns delete pndpd-c
65 | ip netns delete pndpd-i
--------------------------------------------------------------------------------
/pndpd.conf:
--------------------------------------------------------------------------------
1 | // Example config file for PNDPD
2 |
3 | // Proxy example with autoconfigured allow-list
4 | // The allow-list of IP addresses to proxy is configured based
5 | // on the networks assigned to the interface specified via the autosense parameter.
6 | // This works even if the IP addresses change frequently.
7 | proxy {
8 | ext-iface eth0
9 | int-iface eth1
10 | autosense eth1 // If eth1 has fd01::1/64 assigned to it, then fd01::/64 will be configured as an allow-list
11 | // Disable monitor-changes only if the IP addresses assigned to the specified interfaces never change (with the exception of the autosense interface)
12 | // monitor-changes on
13 | }
14 |
15 | // Proxy example with a static allow-list
16 | // Create an NDP proxy for proxying NDP between the external ext-iface ("eth0") and the internal int-iface ("eth1")
17 | // Note that you can remove the filter lines to disable address checking completely (not recommended)
18 | proxy {
19 | ext-iface eth0
20 | int-iface eth1
21 | filter fd01::/64
22 | filter fd02::/64
23 | // Disable monitor-changes only if the IP addresses assigned to the specified interfaces never change
24 | // monitor-changes on
25 | }
26 |
27 |
28 | // Responder example with autoconfigured allow-list (Not recommended - prefer using proxy mode)
29 | // Create an NDP responder that listens and responds on interface "eth0"
30 | // The allow-list of IP addresses to proxy is configured based
31 | // on the networks assigned to the interface specified via the autosense parameter.
32 | // This works even if the IP addresses change frequently.
33 | responder {
34 | iface eth0
35 | autosense eth0 // If eth0 has fd01::1/64 assigned to it, then fd01::/64 will be configured as an allow-list
36 | // Disable monitor-changes only if the IP addresses assigned to the specified interfaces never change (with the exception of the autosense interface)
37 | // monitor-changes on
38 | }
39 |
40 | // Responder example with a static allow-list (Not recommended - prefer using proxy mode)
41 | // Create an NDP responder that listens and responds on interface "eth0"
42 | // Note that you can remove the filter lines to disable address checking completely (not recommended)
43 | responder {
44 | iface eth0
45 | filter fd01::/64
46 | filter fd02::/64
47 | // Disable monitor-changes only if the IP addresses assigned to the specified interfaces never change
48 | // monitor-changes on
49 | }
50 |
51 | // Enable or disable debug output
52 | // If enabled, this option can fill up system logfiles very quickly
53 | // debug off
54 |
--------------------------------------------------------------------------------
/pndpd.service:
--------------------------------------------------------------------------------
1 | [Unit]
2 | Description=Proxy NDP Daemon
3 | Wants=network-online.target
4 | After=network.target network-online.target
5 |
6 | [Service]
7 | Type=simple
8 | Restart=on-failure
9 | RestartSec=5s
10 | ExecStart=/usr/local/bin/pndpd config /etc/pndpd/pndpd.conf
11 |
12 | DynamicUser=yes
13 | AmbientCapabilities=CAP_NET_RAW CAP_NET_ADMIN
14 | CapabilityBoundingSet=CAP_NET_RAW CAP_NET_ADMIN
15 | ProtectHome=yes
16 |
17 | [Install]
18 | WantedBy=multi-user.target
--------------------------------------------------------------------------------