]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - factor/factor.c
26aeeba755c069abaaddae26665d221f2aeed40f
1 /* $NetBSD: factor.c,v 1.29 2018/02/06 16:53:27 christos Exp $ */
4 * Copyright (c) 1989, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 #include <sys/cdefs.h>
37 __COPYRIGHT("@(#) Copyright (c) 1989, 1993\
38 The Regents of the University of California. All rights reserved.");
43 static char sccsid
[] = "@(#)factor.c 8.4 (Berkeley) 5/4/95";
45 __RCSID("$NetBSD: factor.c,v 1.29 2018/02/06 16:53:27 christos Exp $");
50 * factor - factor a number into primes
52 * By Landon Curt Noll, http://www.isthe.com/chongo/index.html /\oo/\
55 * factor [-h] [number] ...
57 * By Default, the form of the output is:
59 * number: factor1 factor1 factor2 factor3 factor3 factor3 ...
61 * where factor1 <= factor2 <= factor3 <= ...
63 * If the -h flag is specified, the output is in "human-readable" format.
64 * Duplicate factors are printed in the form of x^n.
66 * If no number args are given, the list of numbers are read from stdin.
79 #include <openssl/bn.h>
82 typedef u_long BN_ULONG
;
83 static int BN_dec2bn(BIGNUM
**a
, const char *str
);
84 #define BN_new() ((BIGNUM *)calloc(sizeof(BIGNUM), 1))
85 #define BN_is_zero(v) (*(v) == 0)
86 #define BN_is_one(v) (*(v) == 1)
87 #define BN_mod_word(a, b) (*(a) % (b))
93 * prime[i] is the (i-1)th prime.
95 * We are able to sieve 2^32-1 because this byte table yields all primes
96 * up to 65537 and 65537^2 > 2^32-1.
99 #if 0 /* debugging: limit table use to stress the "pollard" code */
100 #define pr_limit &prime[0]
103 #define PRIME_CHECKS 5
106 static BN_CTX
*ctx
; /* just use a global context */
109 static void pr_fact(BIGNUM
*, int); /* print factors of a value */
110 static void BN_print_dec_fp(FILE *, const BIGNUM
*);
111 static void usage(void) __dead
;
113 static void pollard_rho(BIGNUM
*); /* print factors for big numbers */
115 static char *BN_bn2dec(const BIGNUM
*);
116 static BN_ULONG
BN_div_word(BIGNUM
*, BN_ULONG
);
122 BN_dec2bn(BIGNUM
**a
, const char *str
)
127 **a
= strtoul(str
, &p
, 10);
130 return (*p
== '\n' || *p
== '\0');
135 main(int argc
, char *argv
[])
139 char *p
, buf
[LINE_MAX
]; /* > max number of digits. */
146 errx(1, "can't initialise bignum");
149 while ((ch
= getopt(argc
, argv
, "h")) != -1)
161 /* No args supplied, read numbers from stdin. */
164 if (fgets(buf
, sizeof(buf
), stdin
) == NULL
) {
169 for (p
= buf
; isblank((unsigned char)*p
); ++p
);
170 if (*p
== '\n' || *p
== '\0')
173 errx(1, "negative numbers aren't permitted.");
174 if (BN_dec2bn(&val
, buf
) == 0)
175 errx(1, "%s: illegal numeric format.", argv
[0]);
178 /* Factor the arguments. */
180 for (; *argv
!= NULL
; ++argv
) {
181 if (argv
[0][0] == '-')
182 errx(1, "numbers <= 1 aren't permitted.");
183 if (BN_dec2bn(&val
, argv
[0]) == 0)
184 errx(1, "%s: illegal numeric format.", argv
[0]);
191 * pr_fact - print the factors of a number
193 * If the number is 0 or 1, then print the number and return.
194 * If the number is < 0, print -1, negate the number and continue
197 * Print the factors of the number, from the lowest to the highest.
198 * By default, a factor will be printed numtiple times if it divides
199 * the value multiple times.
201 * If hflag is specified, duplicate factors are printed in "human-
202 * readable" form of x^n.
204 * Factors are printed with leading tabs.
207 pr_fact(BIGNUM
*val
, int hflag
)
209 const uint64_t *fact
; /* The factor found. */
212 /* Firewall - catch 0 and 1. */
213 if (BN_is_zero(val
) || BN_is_one(val
))
214 errx(1, "numbers <= 1 aren't permitted.");
218 BN_print_dec_fp(stdout
, val
);
220 for (fact
= &prime
[0]; !BN_is_one(val
); ++fact
) {
221 /* Look for the smallest factor. */
222 while (fact
<= pr_limit
) {
223 if (BN_mod_word(val
, (BN_ULONG
)*fact
) == 0)
228 /* Watch for primes larger than the table. */
229 if (fact
> pr_limit
) {
234 BN_set_word(bnfact
, (BN_ULONG
)*(fact
- 1));
235 BN_sqr(bnfact
, bnfact
, ctx
);
236 if (BN_cmp(bnfact
, val
) > 0
237 || BN_is_prime_ex(val
, PRIME_CHECKS
, NULL
, NULL
)
240 BN_print_dec_fp(stdout
, val
);
244 printf(" %s", BN_bn2dec(val
));
249 /* Divide factor out until none are left. */
254 printf(" %" PRIu64
, *fact
);
255 BN_div_word(val
, (BN_ULONG
)*fact
);
256 } while (BN_mod_word(val
, (BN_ULONG
)*fact
) == 0);
259 printf(" %" PRIu64
, *fact
);
264 /* Let the user know we're doing something. */
271 * Sigh.. No _decimal_ output to file functions in BN.
274 BN_print_dec_fp(FILE *fp
, const BIGNUM
*num
)
278 buf
= BN_bn2dec(num
);
280 return; /* XXX do anything here? */
281 fprintf(fp
, "%s", buf
);
288 fprintf(stderr
, "usage: factor [-h] [value ...]\n");
297 pollard_rho(BIGNUM
*val
)
299 BIGNUM
*x
, *y
, *tmp
, *num
;
301 unsigned int steps_taken
, steps_limit
;
317 BN_mod(x
, tmp
, val
, ctx
);
319 if (BN_is_zero(tmp
)) {
326 BN_gcd(tmp
, tmp
, val
, ctx
);
328 if (!BN_is_one(tmp
)) {
329 if (BN_is_prime_ex(tmp
, PRIME_CHECKS
, NULL
, NULL
) == 1)
332 BN_print_dec_fp(stdout
, tmp
);
335 printf(" (recurse for ");
336 BN_print_dec_fp(stdout
, tmp
);
339 pollard_rho(BN_dup(tmp
));
346 BN_div(num
, NULL
, val
, tmp
, ctx
);
349 if (BN_is_prime_ex(num
, PRIME_CHECKS
, NULL
, NULL
) == 1)
352 BN_print_dec_fp(stdout
, num
);
360 if (steps_taken
== steps_limit
) {
361 BN_copy(y
, x
); /* teleport the turtle */
364 if (steps_limit
== 0) {
366 printf(" (overflow)");
376 BN_bn2dec(const BIGNUM
*val
)
383 snprintf(buf
, 100, "%ld", (long)*val
);
388 BN_div_word(BIGNUM
*a
, BN_ULONG b
)